diff --git a/.env b/.env index b5a9e83..6225554 100644 --- a/.env +++ b/.env @@ -1,5 +1,5 @@ -POSTGRES_DB=pmb -POSTGRES_USER=pmb -POSTGRES_PASSWORD=pmb -POSTGRES_HOST=172.17.0.1 -DEBUG=True \ No newline at end of file +POSTGRES_DB=pmb_play +# NEW_PMB=True +# POSTGRES_HOST=172.17.0.1 +DEBUG=True +POSTGRES_HOST=127.0.0.1 \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..6ac86e6 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,48 @@ +name: Test +on: + push: +jobs: + test: + name: Test Application + runs-on: ubuntu-latest + env: + POSTGRES_DB: github_actions + services: + postgres: + image: postgres:13 + env: + POSTGRES_USER: postgres + POSTGRES_PASSWORD: postgres + POSTGRES_DB: github_actions + ports: + - 5432:5432 + # needed because the postgres container does not provide a healthcheck + options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.11 + uses: actions/setup-python@v4 + with: + python-version: "3.11" + - uses: actions/cache@v3 + with: + path: ${{ env.pythonLocation }} + key: ${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }} + - name: Install dependencies + run: | + pip install --upgrade --upgrade-strategy eager -r requirements_dev.txt + - name: Run migrations + run: | + export NEW_PMB=TRUE + python manage.py migrate + unset NEW_PMB + - name: Run tests + run: coverage run manage.py test -v 3 + - name: Create Coverage Report + run: coverage xml + - name: "Upload coverage to Codecov" + uses: codecov/codecov-action@v3 + with: + token: ${{secrets.CODECOV_TOKEN}} + file: ./coverage.xml + fail_ci_if_error: false \ No newline at end of file diff --git a/.gitignore b/.gitignore index 398e674..a1cc8c3 100644 --- a/.gitignore +++ b/.gitignore @@ -167,3 +167,4 @@ tmp/ pmb_dump.sql .secret play.ipynb +pmb_play_dump.sql diff --git a/README.md b/README.md index a87656f..f390798 100644 --- a/README.md +++ b/README.md @@ -1,6 +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) - - +[![Test](https://github.com/arthur-schnitzler/pmb-service/actions/workflows/test.yml/badge.svg)](https://github.com/arthur-schnitzler/pmb-service/actions/workflows/test.yml) # PMB-SERVICE lightweight APIS-PMB instance to generate TEI/XML dumps @@ -12,4 +11,9 @@ maybe in future also with PMB CRUD included ### process gnd-beacon -`python manage.py process_beacon --beacon=https://thun-korrespondenz.acdh.oeaw.ac.at/beacon.txt --domain=thun-korrespondenz` \ No newline at end of file +`python manage.py process_beacon --beacon=https://thun-korrespondenz.acdh.oeaw.ac.at/beacon.txt --domain=thun-korrespondenz` + + +## set up new instance + +in order to avoid errors on a new instance you'll need to set an environment variable `PMB_NEW=whatever`. After you run the inital `python manage.py migrate` you should `unset PMB_NEW` \ No newline at end of file diff --git a/apis_core/.vscode/settings.json b/apis_core/.vscode/settings.json deleted file mode 100644 index 7a73a41..0000000 --- a/apis_core/.vscode/settings.json +++ /dev/null @@ -1,2 +0,0 @@ -{ -} \ No newline at end of file diff --git a/apis_core/api_routers.py b/apis_core/api_routers.py index 8c5e82f..a93e4d0 100644 --- a/apis_core/api_routers.py +++ b/apis_core/api_routers.py @@ -196,7 +196,6 @@ def generic_serializer_creation_factory(): select_related.append(f.name) class TemplateSerializer(serializers.HyperlinkedModelSerializer): - id = serializers.ReadOnlyField() url = serializers.HyperlinkedIdentityField( view_name=f"apis:apis_api:{entity_str.lower()}-detail" @@ -207,7 +206,6 @@ class TemplateSerializer(serializers.HyperlinkedModelSerializer): _app_label = app_label class Meta: - model = entity exclude = exclude_lst_fin @@ -269,7 +267,6 @@ def __init__(self, *args, **kwargs): ) = f"{entity_str.title().replace(' ', '')}Serializer" class TemplateSerializerRetrieve(TemplateSerializer): - if entity_str.lower() == "text": text = serializers.SerializerMethodField( method_name="txt_serializer_add_text" @@ -447,14 +444,12 @@ def __init__(self, *args, **kwargs): filter_fields[f1[0]] = f1[1] class MetaFilter(object): - model = entity fields = filter_fields filterset_dict["Meta"] = MetaFilter class TemplateViewSet(viewsets.ModelViewSet): - _select_related = select_related _prefetch_rel = prefetch_rel pagination_class = CustomPagination diff --git a/apis_core/apis_entities/admin.py b/apis_core/apis_entities/admin.py deleted file mode 100644 index b28b04f..0000000 --- a/apis_core/apis_entities/admin.py +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/apis_core/apis_entities/api_mappings/__init__.py b/apis_core/apis_entities/api_mappings/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/apis_core/apis_entities/api_mappings/cidoc_mapping.py b/apis_core/apis_entities/api_mappings/cidoc_mapping.py deleted file mode 100644 index 0ae7797..0000000 --- a/apis_core/apis_entities/api_mappings/cidoc_mapping.py +++ /dev/null @@ -1,463 +0,0 @@ -from django.conf import settings -from rdflib import RDF, RDFS, XSD, BNode, Literal, URIRef, OWL - -try: - from webpage.metadata import PROJECT_METADATA -except ImportError: - try: - from webpage.utils import PROJECT_METADATA - except ImportError: - PROJECT_METADATA = getattr(settings, "PROJECT_DEFAULT_MD") - -base_uri = getattr(settings, "APIS_BASE_URI", "http://apis.info") -if base_uri.endswith("/"): - base_uri = base_uri[:-1] -lang = getattr(settings, "LANGUAGE_CODE", "de") - - -def get_skos_url(): - set_skos = getattr(settings, "APIS_SKOSMOS") - base_uri = set_skos.get("url") - if base_uri.endswith("/"): - base_uri = base_uri[:-1] - title = PROJECT_METADATA.get("title", "TITLE") - v_title = set_skos.get("vocabs-name", False) - if not v_title: - v_title = f"{title.lower()}thesaurus/" - uri_1 = f"{base_uri}/{v_title}" - return uri_1 - - -def m_h_find_map_function(rel, ent_type): - r1 = [ - (k.split("_")[0], k.split("_")[1], k, cd_mp[k]) - for k in cd_mp.keys() - if k.startswith(ent_type) - ] - res = [] - for rr in r1: - if "*" not in rr[1]: - if f"{ent_type}_{rel}" == rr[2]: - return rr[3] - elif len(rr[1]) > 1: - if rr[1].startswith("*") and rel.endswith(rr[1][1:]): - res.append((1, rr[3])) - elif rr[1].endswith("*") and rel.startswith(rr[1][:-1]): - res.append((1, rr[3])) - else: - res.append((2, rr[3])) - if len(res) > 0: - res.sort(key=lambda tup: tup[0]) - return res[0][1] - else: - return None - - -def m_add_uris(g, ns, obj, uris): - for u in uris: - b_uri = URIRef(u["uri"]) - if obj != b_uri: - g.add((obj, OWL.sameAs, b_uri)) - g.add((b_uri, RDF.type, ns["cidoc"].E42_Identifier)) - return g - - -def m_add_time_span(g, ns, event, date, date_written, id_ev): - time_span = URIRef(f"{base_uri}/appellation/{event}/date/{id_ev}") - g.set((time_span, RDF.type, ns["cidoc"]["E52_Time-Span"])) - g.set( - ( - time_span, - ns["cidoc"].P82a_begin_of_the_begin, - Literal(date, datatype=XSD.date), - ) - ) - g.set( - (time_span, ns["cidoc"].P82b_end_of_the_end, Literal(date, datatype=XSD.date)) - ) - g.set((time_span, RDFS.label, Literal(f"{date_written}"))) - return g, time_span - - -def m_place_of_birth(g, p, ns, data): - if (None, ns["cidoc"].P98_brought_into_life, p) in g: - b_birth = g.value(None, ns["cidoc"].P98_brought_into_life, p, any=False) - else: - b_birth = URIRef(f"{base_uri}/entity/{data['id']}/birth") - """URI for person specific birth event""" - g.set((b_birth, RDF.type, ns["cidoc"].E67_Birth)) - g.set((b_birth, ns["cidoc"].P98_brought_into_life, p)) - g, place_of_birth = m_place(g, ns, data["target"]) - g.set((b_birth, ns["cidoc"].P7_took_place_at, place_of_birth)) - - return g - - -def m_place_of_death(g, p, ns, data): - if (None, ns["cidoc"].P100_was_death_of, p) in g: - b_death = g.value(None, ns["cidoc"].P100_was_death_of, p, any=False) - else: - b_death = URIRef(f"{base_uri}/entity/{data['id']}/death") - """URI for person specific death event""" - g.set((b_death, RDF.type, ns["cidoc"].E69_Death)) - g.set((b_death, ns["cidoc"].P100_was_death_of, p)) - g, place_of_death = m_place(g, ns, data["target"]) - g.set((b_death, ns["cidoc"].P7_took_place_at, place_of_death)) - - return g - - -def m_institutions_rel(g, p, ns, data, drill_down=False): - b_joining = URIRef(f"{base_uri}/events/joined/{data['id']}") - g.add((b_joining, RDF.type, ns["cidoc"].E85_Joining)) - g.add((b_joining, ns["cidoc"].P143_joined, p)) - b_pc_joining = URIRef(f"{base_uri}/events/joined_pc/{data['id']}") - g.add((b_pc_joining, RDF.type, ns["cidoc"].PC144_joined_with)) - g.add((b_pc_joining, ns["cidoc"].P01_has_domain, b_joining)) - inst_uri = URIRef(f"{base_uri}/entity/{data['target']['id']}") - join_type = URIRef(f"{get_skos_url()}/{data['relation_type']['id']}") - g.add((join_type, RDF.type, ns["cidoc"].E55_Type)) - g.add((join_type, RDFS.label, Literal(data["relation_type"]["label"]))) - g.add((b_pc_joining, ns["cidoc"]["P144.1_kind_of_member"], join_type)) - if (inst_uri, RDF.type, ns["cidoc"].E74_Group) not in g: - g, inst_uri = m_institution(g, ns, data["target"]) - if data["start_date"] is not None: - g, start_date_node = m_add_time_span( - g, ns, "joined", data["start_date"], data["start_date_written"], data["id"] - ) - g.set((b_joining, ns["cidoc"]["P4_has_time-span"], start_date_node)) - if data["end_date"] is not None: - b_leaving = URIRef(f"{base_uri}/events/left/{data['id']}") - g.add((b_leaving, RDF.type, ns["cidoc"].E86_Leaving)) - g.add((b_leaving, ns["cidoc"].P145_seperated, p)) - g.add((b_leaving, ns["cidoc"].P146_seperated_from, inst_uri)) - g, end_date_node = m_add_time_span( - g, ns, "left", data["end_date"], data["end_date_written"], data["id"] - ) - g.set((b_leaving, ns["cidoc"]["P4_has_time-span"], end_date_node)) - g.add((b_pc_joining, ns["cidoc"].P02_has_range, inst_uri)) - return g - - -cd_mp = { - "places_place of birth": m_place_of_birth, - "places_geboren in": m_place_of_birth, - "places_place of death": m_place_of_death, - "places_gestorben in": m_place_of_death, - "institutions_*": m_institutions_rel, -} - - -def m_place(g, ns, data, drill_down=False): - place_uri = URIRef("{}/entity/{}".format(base_uri, data["id"])) - """URI for location""" - if (place_uri, RDF.type, ns["cidoc"].E53_Place) in g and not drill_down: - return g, place_uri - else: - g.set((place_uri, RDF.type, ns["cidoc"].E53_Place)) - b_place_app1 = URIRef(f"{base_uri}/appellation/place/{data['id']}") - """URI for location appellation""" - g.set((place_uri, ns["cidoc"].P1_is_identified_by, b_place_app1)) - g.set((b_place_app1, RDF.type, ns["cidoc"].E41_Appellation)) - g.set( - ( - b_place_app1, - RDFS.label, - Literal(data["name"], lang=lang), - ) - ) - g.set((place_uri, RDFS.label, Literal(data["name"], lang=lang))) - if data["lng"] is not None: - g.set( - ( - place_uri, - ns["cidoc"].P168_place_is_defined_by, - Literal( - f"Point( {data['lng']} {data['lat']} )", - datatype="geo:wktLiteral", - ), - ) - ) - g = m_add_uris(g, ns, place_uri, data["uris"]) - if drill_down: - for ent_1 in data["relations"]: - for p in data["relations"][ent_1]: - rel_map = m_h_find_map_function(p["relation_type"]["label"], ent_1) - if rel_map is not None: - g = rel_map(g, place_uri, ns, p) - return g, place_uri - - -def m_work(g, ns, data, drill_down=False): - k_uri = URIRef(data["url"]) - if (k_uri, RDF.type, ns["cidoc"].E73_Information_Object) in g and not drill_down: - return g, k_uri - else: - k_label_string = f"{data['name']}".strip() - g.set((k_uri, RDF.type, ns["cidoc"].E73_Information_Object)) - g.set((k_uri, RDFS.label, Literal(k_label_string, lang=lang))) - b_app = BNode() - g.set((k_uri, ns["cidoc"].P1_is_identified_by, b_app)) - g.set((b_app, RDF.type, ns["cidoc"].E41_Appellation)) - g.set((b_app, RDFS.label, Literal(k_label_string, lang=lang))) - g = m_add_uris(g, ns, k_uri, data["uris"]) - return g, k_uri - - -def m_person(g, ns, data, drill_down=False): - k_uri = URIRef(data["url"]) - if (k_uri, RDF.type, ns["cidoc"].E21_Person) in g and not drill_down: - return g, k_uri - else: - g.set((k_uri, RDF.type, ns["cidoc"].E21_Person)) - apisid_stmt = URIRef(f"{base_uri}/entity/{data['id']}/apisid") - """URI for APIS ID""" - oblid_stmt = URIRef(f"{base_uri}/entity/{data['id']}/oblid") - """URI for OEBL ID""" - pnappell_stmt = URIRef( - f"{base_uri}/pnappellation#{data['id']}/{data['name'].replace(' ', '_')}" - ) - """URI for preferred name""" - lname_stmt = URIRef( - f"{base_uri}/appellationsn#{data['id']}/{data['name'].replace(' ', '_')}" - ) - """URI for surname""" - fname_stmt = URIRef( - f"{base_uri}/appellationfn#{data['id']}/{data['name'].replace(' ', '_')}" - ) - """URI for last name""" - gender_stmt = URIRef(f"{get_skos_url()}/gender/{data['gender']}") - """replace URI with valid acdh.vocabs-URI and use namespace""" - g.set((pnappell_stmt, ns["cidoc"].P2_has_type, ns["cidoc"].E55_Type)) - g.set((k_uri, ns["cidoc"].P1_is_identified_by, apisid_stmt)) - g.add((k_uri, ns["cidoc"].P1_is_identified_by, pnappell_stmt)) - g.set((apisid_stmt, RDF.type, ns["cidoc"].E42_Identifier)) - g.set( - ( - apisid_stmt, - RDFS.label, - Literal( - "is identified by APIS Identifier as {}".format(data["id"]), - lang=lang, - ), - ) - ) - g.set( - ( - apisid_stmt, - RDF.value, - Literal(data["id"]), - ) - ) - g.add((k_uri, ns["cidoc"].P1_is_identified_by, oblid_stmt)) - g.set((oblid_stmt, RDF.type, ns["cidoc"].E42_Identifier)) - g.set( - ( - oblid_stmt, - RDFS.label, - Literal("is identified by ÖBL Identifier as XXXX", lang=lang), - # Literal("is identified by ÖBL Identifier as {}".format(data['orig_id']), lang=lang), - ) - ) - g.set( - ( - oblid_stmt, - RDF.value, - Literal("XXXX"), - # Literal(data['orig_id']), - ) - ) - g.set( - ( - pnappell_stmt, - ns["cidoc"]["P2_has_type"], - URIRef(f"{get_skos_url()}/name/preferrred_name"), - ) - ) - """replace URI with valid acdh.vocabs-URI and use namespace""" - g.set( - ( - pnappell_stmt, - RDFS.label, - Literal( - f"Preferred name is {data['first_name']} {data['name']}", lang=lang - ), - ) - ) - g.set((pnappell_stmt, ns["cidoc"]["P106_is_composed_of"], lname_stmt)) - g.add((pnappell_stmt, ns["cidoc"]["P106_is_composed_of"], fname_stmt)) - g.set( - ( - lname_stmt, - ns["cidoc"]["P2_has_type"], - URIRef(f"{get_skos_url()}/name/surname"), - ) - ) - """replace with valid acdh.vocabs-URI and use namespace""" - g.set( - (lname_stmt, RDFS.label, Literal(f"Surname is {data['name']}", lang=lang)) - ) - g.add((lname_stmt, RDF.value, Literal(data["name"]))) - g.add( - ( - fname_stmt, - ns["cidoc"]["P2_has_type"], - URIRef(f"{get_skos_url()}/name/forename"), - ) - ) - """replace with valid acdh.vocabs-URI and use namespace""" - g.set( - ( - fname_stmt, - RDFS.label, - Literal(f"Forename is {data['first_name']}", lang=lang), - ) - ) - g.add((fname_stmt, RDF.value, Literal(data["first_name"]))) - g.set( - ( - k_uri, - RDFS.label, - Literal( - f"Person known as {data['first_name']} {data['name']}", lang=lang - ), - ) - ) - # import alternative names: if data["alternate_name"] is not None: - # g.setusw. - if data["gender"] != "": - """Statement for known gender""" - g.set(((k_uri, ns["cidoc"]["P2_has_type"], gender_stmt))) - g.add((gender_stmt, RDF.type, ns["cidoc"].E55_Type)) - g.add((gender_stmt, RDF.value, Literal(data["gender"]))) - g.add( - ( - gender_stmt, - RDFS.label, - Literal( - "Person was documented as {}".format(data["gender"]), lang=lang - ), - ) - ) - if data["gender"] == "": - """Statement for unknown gender""" - g.add( - ( - ( - k_uri, - ns["cidoc"]["P2_has_type"], - URIRef(f"{get_skos_url()}/gender/unknown"), - ) - ) - ) - g.add((gender_stmt, RDF.type, ns["cidoc"].E55_Type)) - g.add((gender_stmt, RDF.value, Literal("unknown"))) - g.add( - ( - gender_stmt, - RDFS.label, - Literal("No Gender was documented.", lang=lang), - ) - ) - if data["start_date"] is not None: - if len(data["start_date"]) > 0: - b_birth = URIRef(f"{base_uri}/entity/{data['id']}/birth") - """URI for person specific birth event""" - g.set((b_birth, RDF.type, ns["cidoc"].E67_Birth)) - g.set( - ( - b_birth, - RDFS.label, - Literal( - f"Birth of {data['first_name']} {data['name']}", lang="de" - ), - ) - ) - b_birth_time_span = URIRef( - f"{base_uri}/entity/timestamp/{data['start_date']}" - ) - g.set((b_birth, ns["cidoc"]["P4_has_time-span"], b_birth_time_span)) - g.set((b_birth_time_span, RDF.type, ns["cidoc"]["E52_Time-Span"])) - g.set( - ( - b_birth_time_span, - ns["cidoc"].P82a_begin_of_the_begin, - Literal(data["start_date"], datatype=XSD.date), - ) - ) - g.set( - ( - b_birth_time_span, - ns["cidoc"].P82b_end_of_the_end, - Literal(data["start_date"], datatype=XSD.date), - ) - ) - g.set((b_birth_time_span, RDF.value, Literal(f"{data['start_date']}"))) - g.set((b_birth, ns["cidoc"].P98_brought_into_life, k_uri)) - if data["end_date"] is not None: - if len(data["end_date"]) > 0: - b_death = URIRef(f"{base_uri}/entity/{data['id']}/death") - g.set((b_death, RDF.type, ns["cidoc"].E69_Death)) - g.set( - ( - b_death, - RDFS.label, - Literal( - f"Death of {data['first_name']} {data['name']}", lang="de" - ), - ) - ) - b_death_time_span = URIRef( - f"{base_uri}/entity/timestamp/{data['end_date']}" - ) - g.set((b_death, ns["cidoc"]["P4_has_time-span"], b_death_time_span)) - g.set((b_death_time_span, RDF.type, ns["cidoc"]["E52_Time-Span"])) - g.set( - ( - b_death_time_span, - ns["cidoc"].P82a_begin_of_the_begin, - Literal(data["end_date"], datatype=XSD.date), - ) - ) - g.set( - ( - b_death_time_span, - ns["cidoc"].P82b_end_of_the_end, - Literal(data["end_date"], datatype=XSD.date), - ) - ) - g.set((b_death_time_span, RDF.value, Literal(f"{data['end_date']}"))) - g.set((b_death, ns["cidoc"].P100_was_death_of, k_uri)) - if data["profession"] is not None: - for prof in data["profession"]: - prof_stmt = URIRef( - f"{get_skos_url()}/profession/{prof['name'].replace(' ', '_')}" - ) - g.set((k_uri, ns["cidoc"].P14i_performed, prof_stmt)) - g.set((prof_stmt, RDF.type, ns["frbroo"].F51)) - pref_prof = prof["label"] - g.set((prof_stmt, RDF.value, Literal(pref_prof))) - """adress most specific value or profession e.g. Architekt, Schriftsteller, current datatype is List with Ordered Dict""" - if drill_down: - for ent_1 in data["relations"]: - for p in data["relations"][ent_1]: - rel_map = m_h_find_map_function(p["relation_type"]["label"], ent_1) - if rel_map is not None: - g = rel_map(g, k_uri, ns, p) - g = m_add_uris(g, ns, k_uri, data["uris"]) - return g, k_uri - - -def m_institution(g, ns, data, drill_down=False): - inst_uri = URIRef(f"{base_uri}/entity/{data['id']}") - if (inst_uri, RDF.type, ns["cidoc"].E74_Group) in g: - return g, inst_uri - else: - g.set((inst_uri, RDF.type, ns["cidoc"].E74_Group)) - g.set((inst_uri, RDFS.label, Literal(data["name"], lang=lang))) - if data["kind"] is not None: - uri_type = URIRef(f"{get_skos_url()}/{data['kind']['id']}") - g.set((uri_type, RDF.type, ns["cidoc"].E55_Type)) - g.set((inst_uri, ns["cidoc"].P2_has_type, uri_type)) - g.set((uri_type, RDFS.label, Literal(data["kind"]["label"]))) - return g, inst_uri diff --git a/apis_core/apis_entities/api_renderers.py b/apis_core/apis_entities/api_renderers.py index b81b2fa..786a1b0 100644 --- a/apis_core/apis_entities/api_renderers.py +++ b/apis_core/apis_entities/api_renderers.py @@ -10,7 +10,6 @@ class EntityToTEI(renderers.BaseRenderer): - media_type = "text/xml" format = "tei" diff --git a/apis_core/apis_entities/api_urls.py b/apis_core/apis_entities/api_urls.py deleted file mode 100644 index f28a535..0000000 --- a/apis_core/apis_entities/api_urls.py +++ /dev/null @@ -1,30 +0,0 @@ -from django.urls import path - -from . import api_views - -app_name = "apis_entities" - -urlpatterns = [ - path("savenetworkfiles/", api_views.SaveNetworkFiles.as_view()), - path( - "getorcreateentity/", - api_views.GetOrCreateEntity.as_view(), - name="GetOrCreateEntity", - ), - path( - r"entity//", - api_views.GetEntityGeneric.as_view(), - name="GetEntityGeneric", - ), - path(r"uri/", api_views.uri_resolver, name="UriResolver"), - path( - r"getrelatedplaces/", - api_views.GetRelatedPlaces.as_view(), - name="GetRelatedPlaces", - ), - path( - r"lifepath//", - api_views.LifePathViewset.as_view(), - name="Lifepathviewset", - ), -] diff --git a/apis_core/apis_entities/api_views.py b/apis_core/apis_entities/api_views.py deleted file mode 100644 index 9b88673..0000000 --- a/apis_core/apis_entities/api_views.py +++ /dev/null @@ -1,593 +0,0 @@ -import fnmatch -import os -import re -from datetime import datetime -from io import TextIOWrapper - -import requests -from django.conf import settings -from django.db.models import Q -from django.http import Http404 -from django.shortcuts import redirect -from django.urls import reverse -from django_filters.rest_framework import DjangoFilterBackend -from rest_framework import filters, viewsets -from rest_framework.decorators import api_view -from rest_framework.generics import GenericAPIView -from rest_framework.pagination import PageNumberPagination -from rest_framework.parsers import FileUploadParser -from rest_framework.permissions import DjangoObjectPermissions -from rest_framework.response import Response -from rest_framework.reverse import reverse_lazy -from rest_framework.settings import api_settings -from rest_framework.views import APIView - -from apis_core.apis_metainfo.models import TempEntityClass, Uri -from apis_core.apis_relations.models import ( - PersonPlace, - InstitutionPlace, - AbstractRelation, - PersonInstitution, -) -from apis_core.apis_vocabularies.models import ( - VocabsBaseClass, - PersonPlaceRelation, - InstitutionPlaceRelation, -) -from apis_core.default_settings.NER_settings import autocomp_settings, stb_base -from apis_core.helper_functions.RDFParser import RDFParser -from apis_core.helper_functions.stanbolQueries import find_loc -from .api_renderers import ( - EntityToTEI, -) -from .models import Event, Institution, Person, Place, Work, AbstractEntity -from .serializers import ( - EventSerializer, - GeoJsonSerializer, - InstitutionSerializer, - NetJsonEdgeSerializer, - NetJsonNodeSerializer, - PersonSerializer, - PlaceSerializer, - WorkSerializer, - GeoJsonSerializerTheme, - LifePathSerializer, -) -from .serializers_generic import EntitySerializer - - -# from metainfo.models import TempEntityClass - - -class StandardResultsSetPagination(PageNumberPagination): - page_size = 25 - page_size_query_param = "page_size" - max_page_size = 1000 - - -class GetEntityGeneric(GenericAPIView): - serializer_class = EntitySerializer - queryset = TempEntityClass.objects.all() - renderer_classes = tuple(api_settings.DEFAULT_RENDERER_CLASSES) + (EntityToTEI,) - if getattr(settings, "APIS_RENDERERS", None) is not None: - rend_add = tuple() - for rd in settings.APIS_RENDERERS: - rend_mod = __import__(rd) - for name, cls in rend_mod.__dict__.items(): - rend_add + (cls,) - renderer_classes += rend_add - - def get_object(self, pk, request): - try: - return TempEntityClass.objects_inheritance.get_subclass(pk=pk) - except TempEntityClass.DoesNotExist: - uri2 = Uri.objects.filter(uri=request.build_absolute_uri()) - if uri2.count() == 1: - return TempEntityClass.objects_inheritance.get_subclass( - pk=uri2[0].entity_id - ) - else: - raise Http404 - - def get(self, request, pk): - ent = self.get_object(pk, request) - data_view = request.GET.get("data-view", False) - format_param = request.GET.get("format", False) - requested_format = request.META.get("HTTP_ACCEPT") - if requested_format is not None: - if ( - requested_format.startswith("text/html") - and not data_view - and not format_param - ): - return redirect(ent) - res = EntitySerializer(ent, context={"request": request}) - return Response(res.data) - - -@api_view(["GET"]) -def uri_resolver(request): - uri = request.query_params.get("uri", None) - f = request.query_params.get("target_format", "gui") - if uri is None: - raise Http404 - else: - uri = Uri.objects.get(uri=uri) - if f == "gui": - ent = TempEntityClass.objects_inheritance.get_subclass(pk=uri.entity_id) - c_name = ent.__class__.__name__ - url = reverse( - "apis_core:apis_entities:generic_entities_detail_view", - kwargs={"pk": uri.entity_id, "entity": c_name.lower()}, - ) - else: - url = reverse( - "apis_core:apis_api2:GetEntityGeneric", kwargs={"pk": uri.entity_id} - ) + "?format={}".format(f) - return redirect(url) - - -class InstitutionViewSet(viewsets.ModelViewSet): - """Serialization of the institution class. - In addition to the institution this view includes related texts and \ - the kind of the institution (separated object).""" - - permission_classes = (DjangoObjectPermissions,) - queryset = Institution.objects.all() - serializer_class = InstitutionSerializer - filter_backends = (DjangoFilterBackend, filters.SearchFilter) - depth = 2 - filter_fields = ("name", "kind__name", "collection__name") - search_fields = ("name",) - - -class PersonViewSet(viewsets.ModelViewSet): - """Serialization of the Person class. - In addition to the person this view includes related texts (e.g. biographies), \ - a list of professions (separated objects) and the collection it belongs to.""" - - permission_classes = (DjangoObjectPermissions,) - queryset = Person.objects.all() - serializer_class = PersonSerializer - depth = 2 - filter_backends = (DjangoFilterBackend, filters.SearchFilter) - filter_fields = ( - "name", - "first_name", - "gender", - "profession__name", - "collection__name", - "uri__uri", - ) - search_fields = ("name", "first_name") - - -class PlaceViewSet(viewsets.ModelViewSet): - """Serialization of the Place class. - In addition to the place this view includes related texts (e.g. from the ÖBL database), \ - and the collection it belongs to.""" - - permission_classes = (DjangoObjectPermissions,) - queryset = Place.objects.all() - serializer_class = PlaceSerializer - filter_backends = (DjangoFilterBackend, filters.SearchFilter) - depth = 2 - filter_fields = ("name", "kind__name", "collection__name") - search_fields = ("name",) - # renderer_classes = tuple(api_settings.DEFAULT_RENDERER_CLASSES) + ( - # PaginatedCSVRenderer, - # ) - - -class EventViewSet(viewsets.ModelViewSet): - """Serialization of the event class. - In addition to the event this view includes related texts and - the kind of the event (separated object).""" - - permission_classes = (DjangoObjectPermissions,) - queryset = Event.objects.all() - serializer_class = EventSerializer - filter_backends = (DjangoFilterBackend, filters.SearchFilter) - depth = 2 - filter_fields = ("name", "kind__name", "collection__name") - search_fields = ("name",) - - -class WorkViewSet(viewsets.ModelViewSet): - """Serialization of the work class. - In addition to the work this view includes related texts and - the kind of the work (separated object).""" - - permission_classes = (DjangoObjectPermissions,) - queryset = Work.objects.all() - serializer_class = WorkSerializer - filter_backends = (DjangoFilterBackend, filters.SearchFilter) - depth = 2 - filter_fields = ("name", "kind__name", "collection__name") - search_fields = ("name",) - - -class PlaceGeoJsonViewSet(viewsets.ViewSet): - def list(self, request): - queryset = request.query_params.get("q", None) - diff = re.match(r"^([^\[]*)\[(\d+)\]", queryset) - match_url = re.search(r"geonames[^0-9]+([0-9]+)", queryset) - res = False - if match_url: - for u in autocomp_settings["Place"]: - if "url" in u.keys(): - site = re.search("site/([^/]+)/", u["url"]) - if site: - params = { - "id": "http://sws.geonames.org/{}/".format( - match_url.group(1) - ) - } - headers = {"Content-Type": "application/json"} - w = requests.get( - stb_base + site.group(1) + "/entity", - params=params, - headers=headers, - ) - if w.status_code == 200: - if "representation" in w.json().keys(): - res = [True, w.json()["representation"]] - break - elif diff and queryset: - queryset = diff.group(1) - res = find_loc(queryset.split(","), dec_diff=int(diff.group(2))) - elif queryset: - res = find_loc(queryset.split(",")) - else: - res = False, False - if res[1]: - if type(res[1]) is not list: - res = (res[0], [res[1]]) - serializer = GeoJsonSerializer( - res[1], - many=True, - context={"p_pk": request.query_params.get("p_pk", None)}, - ) - else: - serializer = GeoJsonSerializer( - [], many=True, context={"p_pk": request.query_params.get("p_pk", None)} - ) - return Response(serializer.data) - - -class NetJsonViewSet(viewsets.GenericViewSet): - def get_queryset(self): - rel = self.request.data["select_relation"] - q = AbstractRelation.get_relation_class_of_name("".join(rel.split("-"))) - return q.objects.all() - - def create(self, request): - rel = request.data["select_relation"] - if "select_kind" in request.data.keys(): - kind = request.data["select_kind"] - else: - kind = None - if "annotation_proj" in request.data.keys(): - annotation_proj = request.data["annotation_proj"] - else: - annotation_proj = None - if "ann_include_all" in request.data.keys(): - ann_include_all = True - else: - ann_include_all = False - q = AbstractRelation.get_relation_class_of_name("".join(rel.split("-"))) - rel_match = re.match(r"([A-Z][a-z]+)([A-Z][a-z]+$)", rel) - lst_nodes = [] - rel_a = "related_" + rel.split("-")[0] - rel_b = "related_" + rel.split("-")[1] - q_dict = {} - q_list = None - if rel_a == rel_b: - rel_a += "a" - rel_b += "b" - if "search_source" in request.data.keys(): - source = request.data["search_source"] - if source.startswith("cl:"): - if q_list is not None: - q_list.append( - Q(**{rel_a + "__collection__id": int(source[3:])}) - | Q(**{rel_b + "__collection__id": int(source[3:])}) - ) - else: - q_dict[rel_a + "__collection__id"] = int(source[3:]) - else: - if q_list is not None: - q_list.append( - Q(**{rel_a + "_id": int(source)}) - | Q(**{rel_b + "_id": int(source)}) - ) - else: - q_dict[rel_a + "_id"] = int(source) - elif "search_source-autocomplete" in request.data.keys(): - source = request.data["search_source-autocomplete"] - if q_list is not None: - q_list.append( - Q(**{rel_a + "__name__icontains": source}) - | Q(**{rel_b + "__name__icontains": source}) - ) - else: - q_dict[rel_a + "__name__icontains"] = source - if "search_target" in request.data.keys(): - target = request.data["search_target"] - if target.startswith("cl:"): - if q_list is not None: - q_list.append( - Q(**{rel_b + "__collection__id": int(target[3:])}) - | Q(**{rel_a + "__collection__id": int(target[3:])}) - ) - else: - q_dict[rel_b + "__collection__id"] = int(target[3:]) - else: - if q_list is not None: - q_list.append( - Q(**{rel_a + "_id": int(target)}) - | Q(**{rel_b + "_id": int(target)}) - ) - else: - q_dict[rel_b + "_id"] = target - elif "search_target-autocomplete" in request.data.keys(): - if len(request.data["search_target-autocomplete"]) > 0: - target = request.data["search_target-autocomplete"] - if q_list is not None: - q_list.append( - Q(**{rel_a + "__name__icontains": target}) - | Q(**{rel_b + "__name__icontains": target}) - ) - else: - q_dict[rel_b + "__name__icontains"] = target - if kind: - kind_ids = [int(kind.strip())] - kind_ids_res = [int(kind.strip())] - while len(kind_ids) > 0: - id_a = kind_ids.pop() - ids_b = VocabsBaseClass.objects.filter( - parent_class_id=id_a - ).values_list("pk", flat=True) - kind_ids.extend(ids_b) - kind_ids_res.extend(ids_b) - q_dict["relation_type_id__in"] = kind_ids_res - if "start_date" in request.data.keys(): - if len(request.data["start_date"]) > 0: - start_date_d = datetime.strptime(request.data["start_date"], "%d.%m.%Y") - q_dict["end_date__gte"] = start_date_d - if "end_date" in request.data.keys(): - if len(request.data["end_date"]) > 0: - end_date_d = datetime.strptime(request.data["end_date"], "%d.%m.%Y") - q_dict["start_date__lte"] = end_date_d - if annotation_proj: - annProj_filter = {"ann_proj": annotation_proj} - if not ann_include_all: - annProj_filter["include_all"] = False - sr1 = ( - q.annotation_links.filter_ann_proj(**annProj_filter) - .filter(**q_dict) - .select_related(rel_a, rel_b) - ) - else: - sr1 = q.objects.filter(**q_dict) - if q_list is not None: - sr1 = sr1.filter(q_list[0]) - for node in sr1: - if getattr(node, rel_a) not in lst_nodes: - lst_nodes.append(getattr(node, rel_a)) - if getattr(node, rel_b) not in lst_nodes: - lst_nodes.append(getattr(node, rel_b)) - sr1_1 = NetJsonEdgeSerializer(sr1, many=True) - sr1_2 = NetJsonNodeSerializer(lst_nodes, many=True) - res = {"nodes": sr1_2.data, "edges": sr1_1.data} - return Response(res) - - -class SaveNetworkFiles(APIView): - def post(self, request, format=None): - file_name = request.data["file_name"] - file_name_list = file_name.split(".") - data = request.data["file"] - nmb = False - for file in os.listdir("downloads/"): - if ( - fnmatch.fnmatch(file, file_name_list[0] + "_*." + file_name_list[1]) - or file == file_name - ): - if nmb: - nmb += 1 - else: - nmb = 1 - if nmb: - file_name = file_name_list[0] + "_" + str(nmb) + "." + file_name_list[1] - with open("downloads/" + file_name, "wb") as fw: - data = data.replace('"edges"', '"links"', 1) - fw.write(data.encode("utf-8")) - res = {"test": True, "file_name": "/downloads/" + file_name} - return Response(res) - - -class ResolveAbbreviations(APIView): - parser_classes = (FileUploadParser,) - - def put(self, request, filename, format=None): - file_obj = request.data["file"] - txt = TextIOWrapper(file_obj, encoding="utf8") - return Response(status=204) - - -class GetOrCreateEntity(APIView): - def get(self, request): - entity = request.query_params.get("entity2", None) - uri = request.query_params.get("uri", None) - if uri.startswith("http:"): - ent = RDFParser(uri, entity.title()).get_or_create() - else: - r1 = re.search(r"^[^<]+", uri) - r2 = re.search(r"<([^>]+)>", uri) - q_d = dict() - q_d["name"] = r1 - if r2: - for x in r2.group(1).split(";"): - x2 = x.split("=") - q_d[x2[0].strip()] = x2[1].strip() - if entity == "person": - r1_2 = r1.group(0).split(",") - if len(r1_2) == 2: - q_d["first_name"] = r1_2[1].strip() - q_d["name"] = r1_2[0].strip() - ent = AbstractEntity.get_entity_class_of_name(entity).objects.create(**q_d) - res = { - "id": ent.pk, - "url": reverse_lazy( - "apis:apis_entities:generic_entities_edit_view", - request=request, - kwargs={"pk": ent.pk, "entity": entity}, - ), - } - return Response(res) - - -class GetRelatedPlaces(APIView): - # map_qs = { - # 'institution': Prefetch('personinstitution_set__related_institution__institutionplace_set', queryset=InstitutionPlace.objects.select_related('related_place')) - # } - - def get(self, request): - b_rel = PersonPlaceRelation.objects.get( - name=getattr(settings, "BIRTH_REL_NAME", "") - ) - d_rel = PersonPlaceRelation.objects.get( - name=getattr(settings, "DEATH_REL_NAME", "") - ) - person_pk = request.query_params.get("person_id", None) - pers = Person.objects.get(pk=person_pk) - relation_types = request.query_params.get("relation_types", None) - place_pk = dict() - res = [] - p = ( - PersonPlace.objects.select_related("related_place") - .filter(related_person_id=person_pk, related_place__lat__isnull=False) - .filter_for_user() - ) - for pp in p: - if pp.related_place_id not in place_pk: - res.append( - ( - pp.related_place, - [ - ( - pp.relation_type, - None, - pers.start_date - if b_rel.pk == pp.relation_type_id - else pp.start_date, - pers.end_date - if d_rel.pk == pp.relation_type_id - else pp.end_date, - pp, - ) - ], - ) - ) - place_pk[pp.related_place_id] = len(res) - 1 - else: - res[place_pk[pp.related_place_id]][1].append( - ( - pp.relation_type, - None, - pers.start_date - if b_rel.pk == pp.relation_type_id - else pp.start_date, - pers.end_date - if d_rel.pk == pp.relation_type_id - else pp.end_date, - pp, - ) - ) - for pi in PersonInstitution.objects.filter( - related_person_id=person_pk - ).filter_for_user(): - inst = pi.related_institution - rel_type = getattr( - settings, - "APIS_LOCATED_IN_ATTR", - [ - "situated in", - ], - ) - ipl_rel = InstitutionPlaceRelation.objects.filter( - name__in=rel_type - ).values_list("pk", flat=True) - plc = InstitutionPlace.objects.filter( - relation_type_id__in=ipl_rel, related_institution=inst - ) - if plc.count() == 1: - if plc[0].related_place_id not in place_pk: - res.append( - ( - plc[0].related_place, - [ - ( - pi.relation_type, - pi.related_institution, - pi.start_date, - pi.end_date, - pi, - ) - ], - ) - ) - place_pk[plc[0].related_place_id] = len(res) - 1 - else: - res[place_pk[plc[0].related_place_id]][1].append( - ( - pi.relation_type, - pi.related_institution, - pi.start_date, - pi.end_date, - pi, - ) - ) - res = GeoJsonSerializerTheme(res, many=True) - return Response(res.data) - - -class LifePathViewset(APIView): - def get(self, request, pk): - b_rel = PersonPlaceRelation.objects.get( - name=getattr(settings, "BIRTH_REL_NAME", "") - ) - d_rel = PersonPlaceRelation.objects.get( - name=getattr(settings, "DEATH_REL_NAME", "") - ) - pb_pd = [b_rel.pk, d_rel.pk] - lst_inst = list( - PersonInstitution.objects.filter( - Q(related_person_id=pk), - Q(start_date__isnull=False) | Q(end_date__isnull=False), - ).filter_for_user() - ) - lst_place = list( - PersonPlace.objects.filter( - Q(related_person_id=pk), - Q(start_date__isnull=False) - | Q(end_date__isnull=False) - | Q(relation_type_id__in=pb_pd), - ).filter_for_user() - ) - comb_lst = lst_inst + lst_place - p1 = Person.objects.get(pk=pk) - if p1.start_date: - for e in comb_lst: - if e.relation_type_id == b_rel.pk: - e.start_date = p1.start_date - if p1.end_date: - for e in comb_lst: - if e.relation_type_id == d_rel.pk: - e.start_date = p1.end_date - data = LifePathSerializer(comb_lst, many=True).data - data = [d for d in data if d is not None] - data = sorted(data, key=lambda i: i["year"]) - - return Response(data) diff --git a/apis_core/apis_entities/autocomplete3.py b/apis_core/apis_entities/autocomplete3.py index 54548cb..f48f63e 100644 --- a/apis_core/apis_entities/autocomplete3.py +++ b/apis_core/apis_entities/autocomplete3.py @@ -16,7 +16,6 @@ from apis_core.apis_metainfo.models import Uri, Collection from apis_core.apis_vocabularies.models import VocabsBaseClass -from apis_core.default_settings.NER_settings import autocomp_settings as ac_settings from .models import AbstractEntity @@ -194,159 +193,7 @@ def get(self, request, *args, **kwargs): test_db = False else: test_db = False - if ac_type.title() in ac_settings.keys(): - for y in ac_settings[ac_type.title()]: - ldpath = "" - for d in y["fields"].keys(): - ldpath += "{} = <{}>;\n".format(d, y["fields"][d][0]) - if self.q.startswith("http"): - q = False - match_url_geo = re.search( - r"geonames[^0-9]+([0-9]+)", self.q.strip() - ) - if match_url_geo: - url = "http://sws.geonames.org/{}/".format( - match_url_geo.group(1) - ) - else: - url = self.q.strip() - params = {"id": url, "ldpath": ldpath} - headers = {"Content-Type": "application/json"} - w = requests.get( - y["url"].replace("find", "entity"), - params=params, - headers=headers, - ) - res3 = dict() - ldpath_fields = [y["fields"][d][0] for d in y["fields"].keys()] - print(w.status_code) - if w.status_code == 200: - for x in w.json()["representation"].keys(): - if x in ldpath_fields: - for d in y["fields"].keys(): - if y["fields"][d][0] == x: - res3[d] = w.json()["representation"][x] - res = dict() - res3["id"] = w.json()["id"] - res["results"] = [res3] - else: - continue - else: - - data = { - "limit": page_size, - "ldpath": ldpath, - "offset": offset, - "constraints": [ - { - "type": "text", - "patternType": "wildcard", - "field": "http://www.w3.org/2000/01/rdf-schema#label", - "text": q.split(), - } - ], - } - if q3 and "search fields" in y.keys(): - for fd in q3: - fd = [fd2.strip() for fd2 in fd.split("=")] - if fd[0] in y["search fields"].keys(): - fd3 = y["search fields"][fd[0]] - v = False - if isinstance(fd3[1], dict): - if fd[1] in fd3[1].keys(): - v = fd3[1][fd[1]] - else: - v = fd3[1](fd[1]) - if fd3[2] == "reference" and v: - fd_4 = { - "type": "reference", - "value": v, - "field": fd3[0], - } - data["constraints"].append(fd_4) - elif fd3[2] == "date_exact" and v: - fd_4 = { - "type": "value", - "value": v, - "field": fd3[0], - "datatype": "xsd:dateTime", - } - data["constraints"].append(fd_4) - elif fd3[2] == "date_gt" and v: - fd_4 = { - "type": "range", - "lowerBound": v, - "upperBound": "2100-12-31T23:59:59.999Z", - "field": fd3[0], - "datatype": "xsd:dateTime", - } - data["constraints"].append(fd_4) - elif fd3[2] == "date_lt" and v: - fd_4 = { - "type": "range", - "lowerBound": "1-01-01T23:59:59.999Z", - "upperBound": v, - "field": fd3[0], - "datatype": "xsd:dateTime", - } - data["constraints"].append(fd_4) - else: - choices.append( - {"name": "No additional query setting for Stanbol"} - ) - try: - url2 = y["url"].replace("find", "query") - r = requests.post(url2, data=json.dumps(data), headers=headers) - if r.status_code != 200: - choices.append({"name": "Connection to Stanbol failed"}) - continue - res = r.json() - except Exception as e: - choices.append({"name": "Connection to Stanbol failed"}) - print(e) - continue - if len(res["results"]) < page_size: - test_stanbol_list[y["url"]] = False - else: - test_stanbol_list[y["url"]] = True - for x in res["results"]: - f = dict() - dataclass = "" - name = x["name"][0]["value"] - if ac_settings["score"] in x.keys(): - score = str(x[ac_settings["score"]][0]["value"]) - else: - score = "NA" - id = x[ac_settings["uri"]] - score = score - f["id"] = id - - if id.endswith("/"): - res_id = id.split("/")[-2] - else: - res_id = id.split("/")[-1] - source = y["source"] - if "lat" in x.keys() and "long" in x.keys(): - dataclass = 'data-vis-tooltip="{}" \ - data-lat="{}" data-long="{}"'.format( - ac_type, x["lat"][0]["value"], x["long"][0]["value"] - ) - if "descr" in x.keys(): - descr = x["descr"][0]["value"] - else: - descr = None - f[ - "text" - ] = '{} {}\ - {}-ID: {} info: {}'.format( - dataclass, source, name, source, res_id, descr - ) - choices.append(f) - for k in test_stanbol_list.keys(): - if test_stanbol_list[k]: - test_stanbol = True - else: - test_stanbol = False + test_stanbol = False cust_auto_more = False if q: cust_auto = CustomEntityAutocompletes( diff --git a/apis_core/apis_entities/autocomplete_light_registry.py b/apis_core/apis_entities/autocomplete_light_registry.py deleted file mode 100644 index 31a3289..0000000 --- a/apis_core/apis_entities/autocomplete_light_registry.py +++ /dev/null @@ -1,96 +0,0 @@ -from apis_core.vocabularies.models import ProfessionType, Title -from autocomplete_light import shortcuts as al - -from .models import Person, Place, Institution, Event, Work - - -class TitleAutocomplete(al.AutocompleteModelBase): - search_fields = ["name", "abbreviation"] - model = Title - attrs = { - "data-autocomplete-minimum-characters": 2, - "placeholder": "Start typing to get suggestions", - } - - -al.register(Title, TitleAutocomplete) - - -class ProfessionTypeAutocomplete(al.AutocompleteModelBase): - search_fields = ["name"] - model = ProfessionType - attrs = { - "data-autocomplete-minimum-characters": 2, - "placeholder": "Start typing to get suggestions", - } - - -al.register(ProfessionType, ProfessionTypeAutocomplete) - - -class DB_PersonAutocomplete(al.AutocompleteModelBase): - search_fields = ["name", "first_name"] - model = Person - attrs = { - "data-autocomplete-minimum-characters": 2, - "placeholder": "Start typing to get suggestions", - } - - -al.register(DB_PersonAutocomplete) - - -class DB_PlaceAutocomplete(al.AutocompleteModelBase): - search_fields = [ - "name", - ] - model = Place - attrs = { - "data-autocomplete-minimum-characters": 2, - "placeholder": "Start typing to get suggestions", - } - - -al.register(DB_PlaceAutocomplete) - - -class DB_InstitutionAutocomplete(al.AutocompleteModelBase): - search_fields = [ - "name", - ] - model = Institution - attrs = { - "data-autocomplete-minimum-characters": 2, - "placeholder": "Start typing to get suggestions", - } - - -al.register(DB_InstitutionAutocomplete) - - -class DB_EventAutocomplete(al.AutocompleteModelBase): - search_fields = [ - "name", - ] - model = Event - attrs = { - "data-autocomplete-minimum-characters": 2, - "placeholder": "Start typing to get suggestions", - } - - -al.register(DB_EventAutocomplete) - - -class DB_WorkAutocomplete(al.AutocompleteModelBase): - search_fields = [ - "name", - ] - model = Work - attrs = { - "data-autocomplete-minimum-characters": 2, - "placeholder": "Start typing to get suggestions", - } - - -al.register(DB_WorkAutocomplete) diff --git a/apis_core/apis_entities/fields.py b/apis_core/apis_entities/fields.py index cfa14e6..80b562f 100644 --- a/apis_core/apis_entities/fields.py +++ b/apis_core/apis_entities/fields.py @@ -7,6 +7,7 @@ from dal_select2.widgets import Select2WidgetMixin as DALSelect2WidgetMixin from django import forms + # "Rewrite" select2 widgets from Django Autocomplete Light so # that they don't use Django's admin-provided jQuery, which # causes errors with jQuery provided by us. diff --git a/apis_core/apis_entities/filters.py b/apis_core/apis_entities/filters.py index 35ab0f7..b52fd90 100644 --- a/apis_core/apis_entities/filters.py +++ b/apis_core/apis_entities/filters.py @@ -78,7 +78,6 @@ class Meta: ) def __init__(self, *args, **kwargs): - # call super init foremost to create dictionary of filters which will be processed further below super().__init__(*args, **kwargs) @@ -101,7 +100,6 @@ def eliminate_unused_filters(default_filter_dict): filter_dict_tmp = {} for enabled_filter in enabled_filters: - if ( type(enabled_filter) == str and enabled_filter in default_filter_dict @@ -118,7 +116,6 @@ def eliminate_unused_filters(default_filter_dict): enabled_filter_key = list(enabled_filter.keys())[0] if enabled_filter_key in default_filter_dict: - # get the dictionary which contains potential method or label overrides enabled_filter_settings_dict = enabled_filter[ enabled_filter_key @@ -163,24 +160,19 @@ def construct_lookup(self, value): """ if value.startswith("*") and not value.endswith("*"): - value = value[1:] return "__iendswith", value elif not value.startswith("*") and value.endswith("*"): - value = value[:-1] return "__istartswith", value elif value.startswith('"') and value.endswith('"'): - value = value[1:-1] return "__iexact", value else: - if value.startswith("*") and value.endswith("*"): - value = value[1:-1] return "__icontains", value @@ -236,7 +228,6 @@ def related_entity_name_filter(self, queryset, name, value): # step 2 # iterate over every relation related to the current queryset model (e.g for Person: PersonWork, PersonPerson, etc) for relation_class in queryset.model.get_related_relation_classes(): - # 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() @@ -247,7 +238,6 @@ def related_entity_name_filter(self, queryset, name, value): # 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. if queryset.model == related_entity_classA: - # append filtered relation queryset to list for use later related_relations_to_hit_list.append( # filter the current relation for if the other related entity's pk is in the hit list of tempentity class @@ -261,7 +251,6 @@ def related_entity_name_filter(self, queryset, name, value): # also check the related entity field B (because it can be that both A and B are of the same entity class, e.g. PersonPerson, # or that only A is the other one, e.g. when filtering for Work within PersonWork, then the other related class is Person) if queryset.model == related_entity_classB: - # same procedure as above, just with related class and related name being reversed. related_relations_to_hit_list.append( relation_class.objects.filter( @@ -275,7 +264,6 @@ def related_entity_name_filter(self, queryset, name, value): queryset.model != related_entity_classA and queryset.model != related_entity_classB ): - raise ValueError( "queryset model class has a wrong relation class associated!" ) @@ -323,14 +311,12 @@ def related_relationtype_name_filter(self, queryset, name, value): related_relations_to_hit_list = [] 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_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: - # Only difference to method 'related_entity_name_filter' is that the lookup is done on 'relation_type_id' related_relations_to_hit_list.append( relation_class.objects.filter( @@ -339,7 +325,6 @@ def related_relationtype_name_filter(self, queryset, name, value): ) if queryset.model == related_entity_classB: - # Only difference to method 'related_entity_name_filter' is that the lookup is done on 'relation_type_id' related_relations_to_hit_list.append( relation_class.objects.filter( @@ -351,7 +336,6 @@ def related_relationtype_name_filter(self, queryset, name, value): queryset.model != related_entity_classA and queryset.model != related_entity_classB ): - raise ValueError( "queryset model class has a wrong relation class associated!" ) @@ -404,7 +388,6 @@ class Meta(GenericListFilter.Meta): ) def person_name_filter(self, queryset, name, value): - lookup, value = self.construct_lookup(value) queryset_related_label = queryset.filter(**{"label__label" + lookup: value}) diff --git a/apis_core/apis_entities/fixtures/db.json b/apis_core/apis_entities/fixtures/db.json new file mode 100644 index 0000000..cdddea0 --- /dev/null +++ b/apis_core/apis_entities/fixtures/db.json @@ -0,0 +1 @@ +[{"model": "auth.permission", "fields": {"name": "Can add log entry", "content_type": 1, "codename": "add_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can change log entry", "content_type": 1, "codename": "change_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can delete log entry", "content_type": 1, "codename": "delete_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can view log entry", "content_type": 1, "codename": "view_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can add permission", "content_type": 2, "codename": "add_permission"}}, {"model": "auth.permission", "fields": {"name": "Can change permission", "content_type": 2, "codename": "change_permission"}}, {"model": "auth.permission", "fields": {"name": "Can delete permission", "content_type": 2, "codename": "delete_permission"}}, {"model": "auth.permission", "fields": {"name": "Can view permission", "content_type": 2, "codename": "view_permission"}}, {"model": "auth.permission", "fields": {"name": "Can add group", "content_type": 3, "codename": "add_group"}}, {"model": "auth.permission", "fields": {"name": "Can change group", "content_type": 3, "codename": "change_group"}}, {"model": "auth.permission", "fields": {"name": "Can delete group", "content_type": 3, "codename": "delete_group"}}, {"model": "auth.permission", "fields": {"name": "Can view group", "content_type": 3, "codename": "view_group"}}, {"model": "auth.permission", "fields": {"name": "Can add user", "content_type": 4, "codename": "add_user"}}, {"model": "auth.permission", "fields": {"name": "Can change user", "content_type": 4, "codename": "change_user"}}, {"model": "auth.permission", "fields": {"name": "Can delete user", "content_type": 4, "codename": "delete_user"}}, {"model": "auth.permission", "fields": {"name": "Can view user", "content_type": 4, "codename": "view_user"}}, {"model": "auth.permission", "fields": {"name": "Can add content type", "content_type": 5, "codename": "add_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can change content type", "content_type": 5, "codename": "change_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete content type", "content_type": 5, "codename": "delete_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can view content type", "content_type": 5, "codename": "view_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can add session", "content_type": 6, "codename": "add_session"}}, {"model": "auth.permission", "fields": {"name": "Can change session", "content_type": 6, "codename": "change_session"}}, {"model": "auth.permission", "fields": {"name": "Can delete session", "content_type": 6, "codename": "delete_session"}}, {"model": "auth.permission", "fields": {"name": "Can view session", "content_type": 6, "codename": "view_session"}}, {"model": "auth.permission", "fields": {"name": "Can add person", "content_type": 7, "codename": "add_person"}}, {"model": "auth.permission", "fields": {"name": "Can change person", "content_type": 7, "codename": "change_person"}}, {"model": "auth.permission", "fields": {"name": "Can delete person", "content_type": 7, "codename": "delete_person"}}, {"model": "auth.permission", "fields": {"name": "Can view person", "content_type": 7, "codename": "view_person"}}, {"model": "auth.permission", "fields": {"name": "Can add place", "content_type": 8, "codename": "add_place"}}, {"model": "auth.permission", "fields": {"name": "Can change place", "content_type": 8, "codename": "change_place"}}, {"model": "auth.permission", "fields": {"name": "Can delete place", "content_type": 8, "codename": "delete_place"}}, {"model": "auth.permission", "fields": {"name": "Can view place", "content_type": 8, "codename": "view_place"}}, {"model": "auth.permission", "fields": {"name": "Can add institution", "content_type": 9, "codename": "add_institution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution", "content_type": 9, "codename": "change_institution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution", "content_type": 9, "codename": "delete_institution"}}, {"model": "auth.permission", "fields": {"name": "Can view institution", "content_type": 9, "codename": "view_institution"}}, {"model": "auth.permission", "fields": {"name": "Can add event", "content_type": 10, "codename": "add_event"}}, {"model": "auth.permission", "fields": {"name": "Can change event", "content_type": 10, "codename": "change_event"}}, {"model": "auth.permission", "fields": {"name": "Can delete event", "content_type": 10, "codename": "delete_event"}}, {"model": "auth.permission", "fields": {"name": "Can view event", "content_type": 10, "codename": "view_event"}}, {"model": "auth.permission", "fields": {"name": "Can add work", "content_type": 11, "codename": "add_work"}}, {"model": "auth.permission", "fields": {"name": "Can change work", "content_type": 11, "codename": "change_work"}}, {"model": "auth.permission", "fields": {"name": "Can delete work", "content_type": 11, "codename": "delete_work"}}, {"model": "auth.permission", "fields": {"name": "Can view work", "content_type": 11, "codename": "view_work"}}, {"model": "auth.permission", "fields": {"name": "Can add temp entity class", "content_type": 12, "codename": "add_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can change temp entity class", "content_type": 12, "codename": "change_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete temp entity class", "content_type": 12, "codename": "delete_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can view temp entity class", "content_type": 12, "codename": "view_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can add source", "content_type": 13, "codename": "add_source"}}, {"model": "auth.permission", "fields": {"name": "Can change source", "content_type": 13, "codename": "change_source"}}, {"model": "auth.permission", "fields": {"name": "Can delete source", "content_type": 13, "codename": "delete_source"}}, {"model": "auth.permission", "fields": {"name": "Can view source", "content_type": 13, "codename": "view_source"}}, {"model": "auth.permission", "fields": {"name": "Can add collection", "content_type": 14, "codename": "add_collection"}}, {"model": "auth.permission", "fields": {"name": "Can change collection", "content_type": 14, "codename": "change_collection"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection", "content_type": 14, "codename": "delete_collection"}}, {"model": "auth.permission", "fields": {"name": "Can view collection", "content_type": 14, "codename": "view_collection"}}, {"model": "auth.permission", "fields": {"name": "Can add text", "content_type": 15, "codename": "add_text"}}, {"model": "auth.permission", "fields": {"name": "Can change text", "content_type": 15, "codename": "change_text"}}, {"model": "auth.permission", "fields": {"name": "Can delete text", "content_type": 15, "codename": "delete_text"}}, {"model": "auth.permission", "fields": {"name": "Can view text", "content_type": 15, "codename": "view_text"}}, {"model": "auth.permission", "fields": {"name": "Can add uri", "content_type": 16, "codename": "add_uri"}}, {"model": "auth.permission", "fields": {"name": "Can change uri", "content_type": 16, "codename": "change_uri"}}, {"model": "auth.permission", "fields": {"name": "Can delete uri", "content_type": 16, "codename": "delete_uri"}}, {"model": "auth.permission", "fields": {"name": "Can view uri", "content_type": 16, "codename": "view_uri"}}, {"model": "auth.permission", "fields": {"name": "Can add person person", "content_type": 17, "codename": "add_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can change person person", "content_type": 17, "codename": "change_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person", "content_type": 17, "codename": "delete_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can view person person", "content_type": 17, "codename": "view_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can add person place", "content_type": 18, "codename": "add_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can change person place", "content_type": 18, "codename": "change_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place", "content_type": 18, "codename": "delete_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can view person place", "content_type": 18, "codename": "view_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution", "content_type": 19, "codename": "add_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution", "content_type": 19, "codename": "change_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution", "content_type": 19, "codename": "delete_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can view person institution", "content_type": 19, "codename": "view_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add person event", "content_type": 20, "codename": "add_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can change person event", "content_type": 20, "codename": "change_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete person event", "content_type": 20, "codename": "delete_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can view person event", "content_type": 20, "codename": "view_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can add person work", "content_type": 21, "codename": "add_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can change person work", "content_type": 21, "codename": "change_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work", "content_type": 21, "codename": "delete_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can view person work", "content_type": 21, "codename": "view_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution", "content_type": 22, "codename": "add_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution", "content_type": 22, "codename": "change_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution", "content_type": 22, "codename": "delete_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can view institution institution", "content_type": 22, "codename": "view_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place", "content_type": 23, "codename": "add_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place", "content_type": 23, "codename": "change_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place", "content_type": 23, "codename": "delete_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can view institution place", "content_type": 23, "codename": "view_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event", "content_type": 24, "codename": "add_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event", "content_type": 24, "codename": "change_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event", "content_type": 24, "codename": "delete_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can view institution event", "content_type": 24, "codename": "view_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work", "content_type": 25, "codename": "add_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work", "content_type": 25, "codename": "change_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work", "content_type": 25, "codename": "delete_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can view institution work", "content_type": 25, "codename": "view_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can add place place", "content_type": 26, "codename": "add_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can change place place", "content_type": 26, "codename": "change_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place", "content_type": 26, "codename": "delete_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can view place place", "content_type": 26, "codename": "view_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can add place event", "content_type": 27, "codename": "add_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can change place event", "content_type": 27, "codename": "change_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete place event", "content_type": 27, "codename": "delete_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can view place event", "content_type": 27, "codename": "view_placeevent"}}, {"model": "auth.permission", "fields": {"name": "Can add place work", "content_type": 28, "codename": "add_placework"}}, {"model": "auth.permission", "fields": {"name": "Can change place work", "content_type": 28, "codename": "change_placework"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work", "content_type": 28, "codename": "delete_placework"}}, {"model": "auth.permission", "fields": {"name": "Can view place work", "content_type": 28, "codename": "view_placework"}}, {"model": "auth.permission", "fields": {"name": "Can add event event", "content_type": 29, "codename": "add_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can change event event", "content_type": 29, "codename": "change_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event", "content_type": 29, "codename": "delete_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can view event event", "content_type": 29, "codename": "view_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can add event work", "content_type": 30, "codename": "add_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can change event work", "content_type": 30, "codename": "change_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work", "content_type": 30, "codename": "delete_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can view event work", "content_type": 30, "codename": "view_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can add work work", "content_type": 31, "codename": "add_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can change work work", "content_type": 31, "codename": "change_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete work work", "content_type": 31, "codename": "delete_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can view work work", "content_type": 31, "codename": "view_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can add vocab names", "content_type": 32, "codename": "add_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can change vocab names", "content_type": 32, "codename": "change_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocab names", "content_type": 32, "codename": "delete_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can view vocab names", "content_type": 32, "codename": "view_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs base class", "content_type": 33, "codename": "add_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs base class", "content_type": 33, "codename": "change_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs base class", "content_type": 33, "codename": "delete_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can view vocabs base class", "content_type": 33, "codename": "view_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add relation base class", "content_type": 34, "codename": "add_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change relation base class", "content_type": 34, "codename": "change_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete relation base class", "content_type": 34, "codename": "delete_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can view relation base class", "content_type": 34, "codename": "view_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs uri", "content_type": 35, "codename": "add_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs uri", "content_type": 35, "codename": "change_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs uri", "content_type": 35, "codename": "delete_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can view vocabs uri", "content_type": 35, "codename": "view_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can add work type", "content_type": 36, "codename": "add_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can change work type", "content_type": 36, "codename": "change_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can delete work type", "content_type": 36, "codename": "delete_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can view work type", "content_type": 36, "codename": "view_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can add title", "content_type": 37, "codename": "add_title"}}, {"model": "auth.permission", "fields": {"name": "Can change title", "content_type": 37, "codename": "change_title"}}, {"model": "auth.permission", "fields": {"name": "Can delete title", "content_type": 37, "codename": "delete_title"}}, {"model": "auth.permission", "fields": {"name": "Can view title", "content_type": 37, "codename": "view_title"}}, {"model": "auth.permission", "fields": {"name": "Can add profession type", "content_type": 38, "codename": "add_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change profession type", "content_type": 38, "codename": "change_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete profession type", "content_type": 38, "codename": "delete_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can view profession type", "content_type": 38, "codename": "view_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add place type", "content_type": 39, "codename": "add_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can change place type", "content_type": 39, "codename": "change_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can delete place type", "content_type": 39, "codename": "delete_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can view place type", "content_type": 39, "codename": "view_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can add institution type", "content_type": 40, "codename": "add_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change institution type", "content_type": 40, "codename": "change_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution type", "content_type": 40, "codename": "delete_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can view institution type", "content_type": 40, "codename": "view_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add event type", "content_type": 41, "codename": "add_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can change event type", "content_type": 41, "codename": "change_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can delete event type", "content_type": 41, "codename": "delete_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can view event type", "content_type": 41, "codename": "view_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can add label type", "content_type": 42, "codename": "add_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can change label type", "content_type": 42, "codename": "change_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can delete label type", "content_type": 42, "codename": "delete_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can view label type", "content_type": 42, "codename": "view_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can add collection type", "content_type": 43, "codename": "add_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change collection type", "content_type": 43, "codename": "change_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection type", "content_type": 43, "codename": "delete_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can view collection type", "content_type": 43, "codename": "view_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add text type", "content_type": 44, "codename": "add_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can change text type", "content_type": 44, "codename": "change_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete text type", "content_type": 44, "codename": "delete_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can view text type", "content_type": 44, "codename": "view_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can add person person relation", "content_type": 45, "codename": "add_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person person relation", "content_type": 45, "codename": "change_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person relation", "content_type": 45, "codename": "delete_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view person person relation", "content_type": 45, "codename": "view_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person place relation", "content_type": 46, "codename": "add_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person place relation", "content_type": 46, "codename": "change_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place relation", "content_type": 46, "codename": "delete_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can view person place relation", "content_type": 46, "codename": "view_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution relation", "content_type": 47, "codename": "add_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution relation", "content_type": 47, "codename": "change_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution relation", "content_type": 47, "codename": "delete_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view person institution relation", "content_type": 47, "codename": "view_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person event relation", "content_type": 48, "codename": "add_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person event relation", "content_type": 48, "codename": "change_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person event relation", "content_type": 48, "codename": "delete_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view person event relation", "content_type": 48, "codename": "view_personeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person work relation", "content_type": 49, "codename": "add_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person work relation", "content_type": 49, "codename": "change_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work relation", "content_type": 49, "codename": "delete_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view person work relation", "content_type": 49, "codename": "view_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event relation", "content_type": 50, "codename": "add_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event relation", "content_type": 50, "codename": "change_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event relation", "content_type": 50, "codename": "delete_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view institution event relation", "content_type": 50, "codename": "view_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place relation", "content_type": 51, "codename": "add_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place relation", "content_type": 51, "codename": "change_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place relation", "content_type": 51, "codename": "delete_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can view institution place relation", "content_type": 51, "codename": "view_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution relation", "content_type": 52, "codename": "add_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution relation", "content_type": 52, "codename": "change_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution relation", "content_type": 52, "codename": "delete_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view institution institution relation", "content_type": 52, "codename": "view_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work relation", "content_type": 53, "codename": "add_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work relation", "content_type": 53, "codename": "change_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work relation", "content_type": 53, "codename": "delete_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view institution work relation", "content_type": 53, "codename": "view_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place place relation", "content_type": 54, "codename": "add_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place place relation", "content_type": 54, "codename": "change_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place relation", "content_type": 54, "codename": "delete_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can view place place relation", "content_type": 54, "codename": "view_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place event relation", "content_type": 55, "codename": "add_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place event relation", "content_type": 55, "codename": "change_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place event relation", "content_type": 55, "codename": "delete_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view place event relation", "content_type": 55, "codename": "view_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place work relation", "content_type": 56, "codename": "add_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place work relation", "content_type": 56, "codename": "change_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work relation", "content_type": 56, "codename": "delete_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view place work relation", "content_type": 56, "codename": "view_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add event event relation", "content_type": 57, "codename": "add_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event event relation", "content_type": 57, "codename": "change_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event relation", "content_type": 57, "codename": "delete_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view event event relation", "content_type": 57, "codename": "view_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add event work relation", "content_type": 58, "codename": "add_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event work relation", "content_type": 58, "codename": "change_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work relation", "content_type": 58, "codename": "delete_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view event work relation", "content_type": 58, "codename": "view_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add work work relation", "content_type": 59, "codename": "add_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change work work relation", "content_type": 59, "codename": "change_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete work work relation", "content_type": 59, "codename": "delete_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view work work relation", "content_type": 59, "codename": "view_workworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add label", "content_type": 60, "codename": "add_label"}}, {"model": "auth.permission", "fields": {"name": "Can change label", "content_type": 60, "codename": "change_label"}}, {"model": "auth.permission", "fields": {"name": "Can delete label", "content_type": 60, "codename": "delete_label"}}, {"model": "auth.permission", "fields": {"name": "Can view label", "content_type": 60, "codename": "view_label"}}, {"model": "auth.permission", "fields": {"name": "Can add event", "content_type": 7, "codename": "add_event"}}, {"model": "auth.permission", "fields": {"name": "Can change event", "content_type": 7, "codename": "change_event"}}, {"model": "auth.permission", "fields": {"name": "Can delete event", "content_type": 7, "codename": "delete_event"}}, {"model": "auth.permission", "fields": {"name": "Can view event", "content_type": 7, "codename": "view_event"}}, {"model": "auth.permission", "fields": {"name": "Can add institution", "content_type": 8, "codename": "add_institution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution", "content_type": 8, "codename": "change_institution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution", "content_type": 8, "codename": "delete_institution"}}, {"model": "auth.permission", "fields": {"name": "Can view institution", "content_type": 8, "codename": "view_institution"}}, {"model": "auth.permission", "fields": {"name": "Can add person", "content_type": 9, "codename": "add_person"}}, {"model": "auth.permission", "fields": {"name": "Can change person", "content_type": 9, "codename": "change_person"}}, {"model": "auth.permission", "fields": {"name": "Can delete person", "content_type": 9, "codename": "delete_person"}}, {"model": "auth.permission", "fields": {"name": "Can view person", "content_type": 9, "codename": "view_person"}}, {"model": "auth.permission", "fields": {"name": "Can add place", "content_type": 10, "codename": "add_place"}}, {"model": "auth.permission", "fields": {"name": "Can change place", "content_type": 10, "codename": "change_place"}}, {"model": "auth.permission", "fields": {"name": "Can delete place", "content_type": 10, "codename": "delete_place"}}, {"model": "auth.permission", "fields": {"name": "Can view place", "content_type": 10, "codename": "view_place"}}, {"model": "auth.permission", "fields": {"name": "Can add collection", "content_type": 12, "codename": "add_collection"}}, {"model": "auth.permission", "fields": {"name": "Can change collection", "content_type": 12, "codename": "change_collection"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection", "content_type": 12, "codename": "delete_collection"}}, {"model": "auth.permission", "fields": {"name": "Can view collection", "content_type": 12, "codename": "view_collection"}}, {"model": "auth.permission", "fields": {"name": "Can add temp entity class", "content_type": 14, "codename": "add_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can change temp entity class", "content_type": 14, "codename": "change_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete temp entity class", "content_type": 14, "codename": "delete_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can view temp entity class", "content_type": 14, "codename": "view_tempentityclass"}}, {"model": "auth.permission", "fields": {"name": "Can add event work", "content_type": 17, "codename": "add_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can change event work", "content_type": 17, "codename": "change_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work", "content_type": 17, "codename": "delete_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can view event work", "content_type": 17, "codename": "view_eventwork"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event", "content_type": 18, "codename": "add_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event", "content_type": 18, "codename": "change_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event", "content_type": 18, "codename": "delete_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can view institution event", "content_type": 18, "codename": "view_institutionevent"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution", "content_type": 19, "codename": "add_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution", "content_type": 19, "codename": "change_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution", "content_type": 19, "codename": "delete_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can view institution institution", "content_type": 19, "codename": "view_institutioninstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place", "content_type": 20, "codename": "add_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place", "content_type": 20, "codename": "change_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place", "content_type": 20, "codename": "delete_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can view institution place", "content_type": 20, "codename": "view_institutionplace"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work", "content_type": 21, "codename": "add_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work", "content_type": 21, "codename": "change_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work", "content_type": 21, "codename": "delete_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can view institution work", "content_type": 21, "codename": "view_institutionwork"}}, {"model": "auth.permission", "fields": {"name": "Can add person event", "content_type": 22, "codename": "add_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can change person event", "content_type": 22, "codename": "change_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete person event", "content_type": 22, "codename": "delete_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can view person event", "content_type": 22, "codename": "view_personevent"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution", "content_type": 23, "codename": "add_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution", "content_type": 23, "codename": "change_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution", "content_type": 23, "codename": "delete_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can view person institution", "content_type": 23, "codename": "view_personinstitution"}}, {"model": "auth.permission", "fields": {"name": "Can add person person", "content_type": 24, "codename": "add_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can change person person", "content_type": 24, "codename": "change_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person", "content_type": 24, "codename": "delete_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can view person person", "content_type": 24, "codename": "view_personperson"}}, {"model": "auth.permission", "fields": {"name": "Can add person place", "content_type": 25, "codename": "add_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can change person place", "content_type": 25, "codename": "change_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place", "content_type": 25, "codename": "delete_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can view person place", "content_type": 25, "codename": "view_personplace"}}, {"model": "auth.permission", "fields": {"name": "Can add person work", "content_type": 26, "codename": "add_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can change person work", "content_type": 26, "codename": "change_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work", "content_type": 26, "codename": "delete_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can view person work", "content_type": 26, "codename": "view_personwork"}}, {"model": "auth.permission", "fields": {"name": "Can add place place", "content_type": 28, "codename": "add_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can change place place", "content_type": 28, "codename": "change_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place", "content_type": 28, "codename": "delete_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can view place place", "content_type": 28, "codename": "view_placeplace"}}, {"model": "auth.permission", "fields": {"name": "Can add place work", "content_type": 29, "codename": "add_placework"}}, {"model": "auth.permission", "fields": {"name": "Can change place work", "content_type": 29, "codename": "change_placework"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work", "content_type": 29, "codename": "delete_placework"}}, {"model": "auth.permission", "fields": {"name": "Can view place work", "content_type": 29, "codename": "view_placework"}}, {"model": "auth.permission", "fields": {"name": "Can add work work", "content_type": 30, "codename": "add_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can change work work", "content_type": 30, "codename": "change_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can delete work work", "content_type": 30, "codename": "delete_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can view work work", "content_type": 30, "codename": "view_workwork"}}, {"model": "auth.permission", "fields": {"name": "Can add event event", "content_type": 31, "codename": "add_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can change event event", "content_type": 31, "codename": "change_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event", "content_type": 31, "codename": "delete_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can view event event", "content_type": 31, "codename": "view_eventevent"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs base class", "content_type": 32, "codename": "add_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs base class", "content_type": 32, "codename": "change_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs base class", "content_type": 32, "codename": "delete_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can view vocabs base class", "content_type": 32, "codename": "view_vocabsbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add vocab names", "content_type": 33, "codename": "add_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can change vocab names", "content_type": 33, "codename": "change_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocab names", "content_type": 33, "codename": "delete_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can view vocab names", "content_type": 33, "codename": "view_vocabnames"}}, {"model": "auth.permission", "fields": {"name": "Can add collection type", "content_type": 34, "codename": "add_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change collection type", "content_type": 34, "codename": "change_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete collection type", "content_type": 34, "codename": "delete_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can view collection type", "content_type": 34, "codename": "view_collectiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add event type", "content_type": 35, "codename": "add_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can change event type", "content_type": 35, "codename": "change_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can delete event type", "content_type": 35, "codename": "delete_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can view event type", "content_type": 35, "codename": "view_eventtype"}}, {"model": "auth.permission", "fields": {"name": "Can add institution type", "content_type": 36, "codename": "add_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change institution type", "content_type": 36, "codename": "change_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution type", "content_type": 36, "codename": "delete_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can view institution type", "content_type": 36, "codename": "view_institutiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add label type", "content_type": 37, "codename": "add_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can change label type", "content_type": 37, "codename": "change_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can delete label type", "content_type": 37, "codename": "delete_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can view label type", "content_type": 37, "codename": "view_labeltype"}}, {"model": "auth.permission", "fields": {"name": "Can add place type", "content_type": 38, "codename": "add_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can change place type", "content_type": 38, "codename": "change_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can delete place type", "content_type": 38, "codename": "delete_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can view place type", "content_type": 38, "codename": "view_placetype"}}, {"model": "auth.permission", "fields": {"name": "Can add profession type", "content_type": 39, "codename": "add_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can change profession type", "content_type": 39, "codename": "change_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can delete profession type", "content_type": 39, "codename": "delete_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can view profession type", "content_type": 39, "codename": "view_professiontype"}}, {"model": "auth.permission", "fields": {"name": "Can add relation base class", "content_type": 40, "codename": "add_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can change relation base class", "content_type": 40, "codename": "change_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can delete relation base class", "content_type": 40, "codename": "delete_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can view relation base class", "content_type": 40, "codename": "view_relationbaseclass"}}, {"model": "auth.permission", "fields": {"name": "Can add title", "content_type": 41, "codename": "add_title"}}, {"model": "auth.permission", "fields": {"name": "Can change title", "content_type": 41, "codename": "change_title"}}, {"model": "auth.permission", "fields": {"name": "Can delete title", "content_type": 41, "codename": "delete_title"}}, {"model": "auth.permission", "fields": {"name": "Can view title", "content_type": 41, "codename": "view_title"}}, {"model": "auth.permission", "fields": {"name": "Can add work type", "content_type": 42, "codename": "add_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can change work type", "content_type": 42, "codename": "change_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can delete work type", "content_type": 42, "codename": "delete_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can view work type", "content_type": 42, "codename": "view_worktype"}}, {"model": "auth.permission", "fields": {"name": "Can add vocabs uri", "content_type": 43, "codename": "add_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can change vocabs uri", "content_type": 43, "codename": "change_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can delete vocabs uri", "content_type": 43, "codename": "delete_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can view vocabs uri", "content_type": 43, "codename": "view_vocabsuri"}}, {"model": "auth.permission", "fields": {"name": "Can add event work relation", "content_type": 44, "codename": "add_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event work relation", "content_type": 44, "codename": "change_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event work relation", "content_type": 44, "codename": "delete_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view event work relation", "content_type": 44, "codename": "view_eventworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution event relation", "content_type": 45, "codename": "add_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution event relation", "content_type": 45, "codename": "change_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution event relation", "content_type": 45, "codename": "delete_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view institution event relation", "content_type": 45, "codename": "view_institutioneventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution place relation", "content_type": 46, "codename": "add_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution place relation", "content_type": 46, "codename": "change_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution place relation", "content_type": 46, "codename": "delete_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can view institution place relation", "content_type": 46, "codename": "view_institutionplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution work relation", "content_type": 47, "codename": "add_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution work relation", "content_type": 47, "codename": "change_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution work relation", "content_type": 47, "codename": "delete_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view institution work relation", "content_type": 47, "codename": "view_institutionworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person institution relation", "content_type": 49, "codename": "add_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person institution relation", "content_type": 49, "codename": "change_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person institution relation", "content_type": 49, "codename": "delete_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view person institution relation", "content_type": 49, "codename": "view_personinstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person place relation", "content_type": 50, "codename": "add_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person place relation", "content_type": 50, "codename": "change_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person place relation", "content_type": 50, "codename": "delete_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can view person place relation", "content_type": 50, "codename": "view_personplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person work relation", "content_type": 51, "codename": "add_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person work relation", "content_type": 51, "codename": "change_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person work relation", "content_type": 51, "codename": "delete_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view person work relation", "content_type": 51, "codename": "view_personworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place event relation", "content_type": 52, "codename": "add_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place event relation", "content_type": 52, "codename": "change_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place event relation", "content_type": 52, "codename": "delete_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view place event relation", "content_type": 52, "codename": "view_placeeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place work relation", "content_type": 53, "codename": "add_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place work relation", "content_type": 53, "codename": "change_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place work relation", "content_type": 53, "codename": "delete_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view place work relation", "content_type": 53, "codename": "view_placeworkrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add text type", "content_type": 54, "codename": "add_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can change text type", "content_type": 54, "codename": "change_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete text type", "content_type": 54, "codename": "delete_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can view text type", "content_type": 54, "codename": "view_texttype"}}, {"model": "auth.permission", "fields": {"name": "Can add event event relation", "content_type": 55, "codename": "add_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change event event relation", "content_type": 55, "codename": "change_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete event event relation", "content_type": 55, "codename": "delete_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view event event relation", "content_type": 55, "codename": "view_eventeventrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add institution institution relation", "content_type": 56, "codename": "add_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change institution institution relation", "content_type": 56, "codename": "change_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete institution institution relation", "content_type": 56, "codename": "delete_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view institution institution relation", "content_type": 56, "codename": "view_institutioninstitutionrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add person person relation", "content_type": 57, "codename": "add_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can change person person relation", "content_type": 57, "codename": "change_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete person person relation", "content_type": 57, "codename": "delete_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can view person person relation", "content_type": 57, "codename": "view_personpersonrelation"}}, {"model": "auth.permission", "fields": {"name": "Can add place place relation", "content_type": 58, "codename": "add_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can change place place relation", "content_type": 58, "codename": "change_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can delete place place relation", "content_type": 58, "codename": "delete_placeplacerelation"}}, {"model": "auth.permission", "fields": {"name": "Can view place place relation", "content_type": 58, "codename": "view_placeplacerelation"}}, {"model": "auth.user", "fields": {"password": "pbkdf2_sha256$720000$IWNZ5Y2W2Zz9yENbpzfIHu$E5Ur7xbrMms6H2KoyOyRyXhPqo4yiBbTPUUxCJEzhe4=", "last_login": "2023-12-20T10:58:11.096Z", "is_superuser": true, "username": "pandorfer", "first_name": "", "last_name": "", "email": "", "is_staff": true, "is_active": true, "date_joined": "2023-12-19T10:14:40.758Z", "groups": [], "user_permissions": []}}, {"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": "apis_entities", "model": "person"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_entities", "model": "place"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_entities", "model": "institution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_entities", "model": "event"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_entities", "model": "work"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_metainfo", "model": "tempentityclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_metainfo", "model": "source"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_metainfo", "model": "collection"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_metainfo", "model": "text"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_metainfo", "model": "uri"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "personperson"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "personplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "personinstitution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "personevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "personwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "institutioninstitution"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "institutionplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "institutionevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "institutionwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "placeplace"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "placeevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "placework"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "eventevent"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "eventwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_relations", "model": "workwork"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "vocabnames"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "vocabsbaseclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "relationbaseclass"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "vocabsuri"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "worktype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "title"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "professiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "placetype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "institutiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "eventtype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "labeltype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "collectiontype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "texttype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "personpersonrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "personplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "personinstitutionrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "personeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "personworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "institutioneventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "institutionplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "institutioninstitutionrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "institutionworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "placeplacerelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "placeeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "placeworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "eventeventrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "eventworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_vocabularies", "model": "workworkrelation"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "apis_labels", "model": "label"}}, {"model": "sessions.session", "pk": "0r47u6gbqtuzoyzuj1a9o26bvat2y8l6", "fields": {"session_data": ".eJxVjDsOwjAQBe_iGlnxL15T0nMGy17v4gBypDipEHeHSCmgfTPzXiKmba1x67TEqYiz0OL0u-WED2o7KPfUbrPEua3LlOWuyIN2eZ0LPS-H-3dQU6_fGtlD1kDOOTty8CqZMAAEJCRmT1lzHhKDDRzAoNGKoShniRyb0aF4fwDzyzhi:1rFuHD:uhdaex6PwSNgp8ZLMMQI1VFgJnPok_oLn94z-hBO9Vc", "expire_date": "2024-01-03T10:58:11.100Z"}}, {"model": "sessions.session", "pk": "20erqvizxm1pt2eak7vpfdrnloo0gxlv", "fields": {"session_data": ".eJxVjDsOwjAQBe_iGlnxL15T0nMGy17v4gBypDipEHeHSCmgfTPzXiKmba1x67TEqYizUOL0u-WED2o7KPfUbrPEua3LlOWuyIN2eZ0LPS-H-3dQU6_fGtlD1kDOOTty8CqZMAAEJCRmT1lzHhKDDRzAoNGKoShniRyb0aF4fwDzMjhh:1rFX7k:EkON2AGONGBQLDw-_9rri38OqC_yB-TwwEs_q5FyZGs", "expire_date": "2024-01-02T10:14:52.111Z"}}, {"model": "apis_entities.person", "pk": 1, "fields": {"tempentityclass_ptr": 1, "first_name": "Arthur", "gender": null, "profession": [3380], "title": []}}, {"model": "apis_entities.person", "pk": 5, "fields": {"tempentityclass_ptr": 5, "first_name": "Olga", "gender": "female", "profession": [3455], "title": []}}, {"model": "apis_entities.place", "pk": 2, "fields": {"tempentityclass_ptr": 2, "kind": 14, "lat": 46.123, "lng": 16.2256}}, {"model": "apis_entities.institution", "pk": 11, "fields": {"tempentityclass_ptr": 11, "kind": 1012}}, {"model": "apis_entities.event", "pk": 9, "fields": {"tempentityclass_ptr": 9, "kind": 1200}}, {"model": "apis_entities.work", "pk": 7, "fields": {"tempentityclass_ptr": 7, "kind": 1054}}, {"model": "apis_metainfo.tempentityclass", "pk": 1, "fields": {"name": "Schnitzler", "review": false, "start_date": "1891-05-05", "start_start_date": null, "start_end_date": null, "end_date": "1931-07-07", "end_start_date": null, "end_end_date": null, "start_date_written": "1891-05-05", "end_date_written": "1931-07-07", "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": [1]}}, {"model": "apis_metainfo.tempentityclass", "pk": 2, "fields": {"name": "Wien", "review": false, "start_date": null, "start_start_date": null, "start_end_date": null, "end_date": null, "end_start_date": null, "end_end_date": null, "start_date_written": null, "end_date_written": null, "status": "distinct", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": [1]}}, {"model": "apis_metainfo.tempentityclass", "pk": 3, "fields": {"name": "", "review": false, "start_date": "1891-05-05", "start_start_date": null, "start_end_date": null, "end_date": "1891-05-05", "end_start_date": null, "end_end_date": null, "start_date_written": "1891-05-05", "end_date_written": "1891-05-05", "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": []}}, {"model": "apis_metainfo.tempentityclass", "pk": 4, "fields": {"name": "", "review": false, "start_date": "1931-07-07", "start_start_date": null, "start_end_date": null, "end_date": "1931-07-07", "end_start_date": null, "end_end_date": null, "start_date_written": "1931-07-07", "end_date_written": "1931-07-07", "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": []}}, {"model": "apis_metainfo.tempentityclass", "pk": 5, "fields": {"name": "Schnitzler", "review": false, "start_date": "1900-12-12", "start_start_date": null, "start_end_date": null, "end_date": "1960-08-08", "end_start_date": null, "end_end_date": null, "start_date_written": "1900-12-12", "end_date_written": "1960-08-08", "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": [1]}}, {"model": "apis_metainfo.tempentityclass", "pk": 6, "fields": {"name": "", "review": false, "start_date": "1911-07-02", "start_start_date": "1911-01-01", "start_end_date": "1911-12-31", "end_date": "1931-07-02", "end_start_date": "1931-01-01", "end_end_date": "1931-12-31", "start_date_written": "1911", "end_date_written": "1931", "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": []}}, {"model": "apis_metainfo.tempentityclass", "pk": 7, "fields": {"name": "Spaziergang", "review": false, "start_date": "1893-12-06", "start_start_date": null, "start_end_date": null, "end_date": null, "end_start_date": null, "end_end_date": null, "start_date_written": "06.12.1893", "end_date_written": null, "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": [1]}}, {"model": "apis_metainfo.tempentityclass", "pk": 8, "fields": {"name": "", "review": false, "start_date": "1893-12-06", "start_start_date": null, "start_end_date": null, "end_date": null, "end_start_date": null, "end_end_date": null, "start_date_written": "06.12.1893", "end_date_written": null, "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": []}}, {"model": "apis_metainfo.tempentityclass", "pk": 9, "fields": {"name": "Aufführung von König Chilperich, 31.1.1896", "review": false, "start_date": "1896-01-31", "start_start_date": null, "start_end_date": null, "end_date": "1896-01-31", "end_start_date": null, "end_end_date": null, "start_date_written": "31.1.1896", "end_date_written": "31.1.1896", "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": [1]}}, {"model": "apis_metainfo.tempentityclass", "pk": 10, "fields": {"name": "", "review": false, "start_date": "1896-01-31", "start_start_date": null, "start_end_date": null, "end_date": "1896-01-31", "end_start_date": null, "end_end_date": null, "start_date_written": "31.1.1896", "end_date_written": "31.1.1896", "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": []}}, {"model": "apis_metainfo.tempentityclass", "pk": 11, "fields": {"name": "Theater unter den Linden", "review": false, "start_date": null, "start_start_date": null, "start_end_date": null, "end_date": null, "end_start_date": null, "end_end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": [1]}}, {"model": "apis_metainfo.tempentityclass", "pk": 12, "fields": {"name": "", "review": false, "start_date": "1896-01-31", "start_start_date": null, "start_end_date": null, "end_date": "1896-01-31", "end_start_date": null, "end_end_date": null, "start_date_written": "31.1.1896", "end_date_written": "31.1.1896", "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": []}}, {"model": "apis_metainfo.tempentityclass", "pk": 13, "fields": {"name": "", "review": false, "start_date": null, "start_start_date": null, "start_end_date": null, "end_date": null, "end_start_date": null, "end_end_date": null, "start_date_written": null, "end_date_written": null, "status": "", "source": null, "references": "", "notes": "", "published": false, "text": [], "collection": []}}, {"model": "apis_metainfo.collection", "pk": 1, "fields": {"name": "manually created entity", "description": "", "collection_type": null, "parent_class": null, "published": false, "groups_allowed": []}}, {"model": "apis_metainfo.uri", "pk": 4, "fields": {"uri": "https://pmb.hansi4ever/entity/1/", "domain": "apis default", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "apis_metainfo.uri", "pk": 5, "fields": {"uri": "https://pmb.hansi4ever/entity/5/", "domain": "apis default", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "apis_metainfo.uri", "pk": 6, "fields": {"uri": "https://pmb.hansi4ever/entity/2/", "domain": "apis default", "rdf_link": "", "entity": null, "loaded": false, "loaded_time": null}}, {"model": "apis_metainfo.uri", "pk": 8, "fields": {"uri": "https://pmb.hansi4ever/entity/1000/", "domain": "apis default", "rdf_link": "", "entity": 1, "loaded": false, "loaded_time": null}}, {"model": "apis_metainfo.uri", "pk": 9, "fields": {"uri": "https://pmb.hansi4ever/entity/2000/", "domain": "apis default", "rdf_link": "", "entity": 2, "loaded": false, "loaded_time": null}}, {"model": "apis_metainfo.uri", "pk": 10, "fields": {"uri": "https://sws.geonames.org/2761369/", "domain": "", "rdf_link": "", "entity": 2, "loaded": false, "loaded_time": null}}, {"model": "apis_metainfo.uri", "pk": 11, "fields": {"uri": "https://pmb.hansi4ever/entity/5000/", "domain": "apis default", "rdf_link": "", "entity": 5, "loaded": false, "loaded_time": null}}, {"model": "apis_metainfo.uri", "pk": 12, "fields": {"uri": "https://pmb.hansi4ever/entity/7/", "domain": "apis default", "rdf_link": "", "entity": 7, "loaded": false, "loaded_time": null}}, {"model": "apis_metainfo.uri", "pk": 13, "fields": {"uri": "https://pmb.hansi4ever/entity/9/", "domain": "apis default", "rdf_link": "", "entity": 9, "loaded": false, "loaded_time": null}}, {"model": "apis_metainfo.uri", "pk": 14, "fields": {"uri": "https://pmb.hansi4ever/entity/11/", "domain": "apis default", "rdf_link": "", "entity": 11, "loaded": false, "loaded_time": null}}, {"model": "apis_relations.personperson", "pk": 6, "fields": {"tempentityclass_ptr": 6, "related_persona": 5, "related_personb": 1, "relation_type": 1114}}, {"model": "apis_relations.personplace", "pk": 3, "fields": {"tempentityclass_ptr": 3, "related_person": 1, "related_place": 2, "relation_type": 88}}, {"model": "apis_relations.personplace", "pk": 4, "fields": {"tempentityclass_ptr": 4, "related_person": 1, "related_place": 2, "relation_type": 89}}, {"model": "apis_relations.personevent", "pk": 10, "fields": {"tempentityclass_ptr": 10, "related_person": 1, "related_event": 9, "relation_type": 1370}}, {"model": "apis_relations.personwork", "pk": 8, "fields": {"tempentityclass_ptr": 8, "related_person": 1, "related_work": 7, "relation_type": 1049}}, {"model": "apis_relations.institutionplace", "pk": 13, "fields": {"tempentityclass_ptr": 13, "related_institution": 11, "related_place": 2, "relation_type": 970}}, {"model": "apis_relations.institutionevent", "pk": 12, "fields": {"tempentityclass_ptr": 12, "related_institution": 11, "related_event": 9, "relation_type": 1351}}, {"model": "apis_vocabularies.vocabnames", "pk": 1, "fields": {"name": "PlacePlaceRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 2, "fields": {"name": "PlaceType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 3, "fields": {"name": "LabelType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 4, "fields": {"name": "PersonPlaceRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 5, "fields": {"name": "ProfessionType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 6, "fields": {"name": "InstitutionPlaceRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 7, "fields": {"name": "InstitutionType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 8, "fields": {"name": "PersonWorkRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 9, "fields": {"name": "WorkType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 10, "fields": {"name": "PersonPersonRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 11, "fields": {"name": "WorkWorkRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 12, "fields": {"name": "InstitutionWorkRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 13, "fields": {"name": "PersonInstitutionRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 14, "fields": {"name": "InstitutionInstitutionRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 15, "fields": {"name": "PlaceWorkRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 16, "fields": {"name": "URI"}}, {"model": "apis_vocabularies.vocabnames", "pk": 17, "fields": {"name": "EventType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 18, "fields": {"name": "EventWorkRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 19, "fields": {"name": "PlaceEventRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 20, "fields": {"name": "CollectionType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 21, "fields": {"name": "PersonEventRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 22, "fields": {"name": "Title"}}, {"model": "apis_vocabularies.vocabnames", "pk": 23, "fields": {"name": "InstitutionEventRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 25, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 26, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 27, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 28, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 29, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 30, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 31, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 32, "fields": {"name": "VocabNames object (5)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 33, "fields": {"name": "EventEventRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 35, "fields": {"name": "Novellette"}}, {"model": "apis_vocabularies.vocabnames", "pk": 36, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 37, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 38, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 39, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 40, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2, "fields": {"name": "Kabarett (K.KBR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3, "fields": {"name": "Konservatorium (K.KON)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 4, "fields": {"name": "Theater (K.THE)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 5, "fields": {"name": "Veranstaltungsgebäude (K.VSB)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 6, "fields": {"name": "Gallerie (K.GLR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 7, "fields": {"name": "Bierhaus (K.BIR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 8, "fields": {"name": "Museum (K.MUS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 9, "fields": {"name": "Grünanlage (K.GRN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 10, "fields": {"name": "Oper (K.OPR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 11, "fields": {"name": "Namensvariante", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 12, "fields": {"name": "Hotel (K.HTL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 13, "fields": {"name": "Teil eines Landes (A.LNDX)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 14, "fields": {"name": "Besiedelter Ort (A.BSO)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 15, "fields": {"name": "Universität (K.UNI)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 16, "fields": {"name": "Ministerium (K.MIN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 17, "fields": {"name": "Gastgewerbegebäude (K.GGW)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 18, "fields": {"name": "Teil eines besiedelten Ortes (A.BSOX)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 19, "fields": {"name": "Park (K.PRK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 20, "fields": {"name": "Kaffeehaus (K.KAF)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 21, "fields": {"name": "Platz (K.PLT)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 22, "fields": {"name": "Lokal (K.LKL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 23, "fields": {"name": "Krankenhaus (K.KKH)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 24, "fields": {"name": "Gebäude (K.GBD)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 25, "fields": {"name": "Bezirk (A.BZK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 26, "fields": {"name": "Straße (K.STR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 27, "fields": {"name": "Sanatorium (K.SAN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 28, "fields": {"name": "Berg (N.BRG)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 29, "fields": {"name": "Geschäft (K.GES)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 30, "fields": {"name": "Freizeiteinrichtung (K.FRZ)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 31, "fields": {"name": "Gebirge (N.GBR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 32, "fields": {"name": "Bahnhofsgebäude (K.BHF)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 33, "fields": {"name": "Kirche (K.KRC)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 34, "fields": {"name": "Kloster (K.KLS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 35, "fields": {"name": "Schule (K.SCH)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 36, "fields": {"name": "Wohngebäude (K.WHS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 37, "fields": {"name": "Brücke (K.BRK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 38, "fields": {"name": "Land (A.LND)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 39, "fields": {"name": "Wanderweg (K.WND)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 40, "fields": {"name": "eingemeindeter Ort (A.VOO)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 41, "fields": {"name": "Schloss (K.SLS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 42, "fields": {"name": "Beherbergungsgebäude (K.BHB)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 43, "fields": {"name": "Halbinsel (N.HIN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 44, "fields": {"name": "See (N.SEE)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 45, "fields": {"name": "Konzertsaal (K.KNZ)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 46, "fields": {"name": "Kino (K.KNO)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 47, "fields": {"name": "Region", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 48, "fields": {"name": "Sakralbau (K.SAK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 49, "fields": {"name": "Kontinent (A.KNT)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 50, "fields": {"name": "Fluss (N.FLS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 51, "fields": {"name": "Friedhof (K.FRH)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 52, "fields": {"name": "Zoo (K.ZOO)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 53, "fields": {"name": "Buchhandlung (K.BHL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 54, "fields": {"name": "Regierungsgebäude (K.RGB)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 55, "fields": {"name": "Monument (K.MON)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 56, "fields": {"name": "Vergnügungspark (K.VGN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 57, "fields": {"name": "Insel (N.INS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 58, "fields": {"name": "Bank (K.BNK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 59, "fields": {"name": "Verwaltungsgebäude (K.VWL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 60, "fields": {"name": "Landschaftlicher-Punkt", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 61, "fields": {"name": "Landschaftlicher-Punkt", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 62, "fields": {"name": "Ausflugsziel", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 63, "fields": {"name": "Redaktionsgebäude (K.RDK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 64, "fields": {"name": "Bürogebäude (K.BUR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 65, "fields": {"name": "Meer (N.MER)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 66, "fields": {"name": "Vereinsgebäude (K.VRN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 67, "fields": {"name": "Fleischerei (K.FLS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 68, "fields": {"name": "Pass (N.PAS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 69, "fields": {"name": "Fabrik (K.FAB)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 70, "fields": {"name": "Ausbildungsstätte (K.ABS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 71, "fields": {"name": "Bucht (N.BCT)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 72, "fields": {"name": "Schwimmbad (K.BAD)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 73, "fields": {"name": "Infrastrukturgebäude (K.INF)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 74, "fields": {"name": "Teil eines Kontinents (A.KNTX)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 75, "fields": {"name": "Forschungseinrichtung (K.FRS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 76, "fields": {"name": "Bibliothek (K.BIB)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 77, "fields": {"name": "Kap (N.KAP)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 78, "fields": {"name": "Volksbildungsanstalt (K.VBA)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 81, "fields": {"name": "Markt (K.MRK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 82, "fields": {"name": "Kunsthochschule (K.KHS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 83, "fields": {"name": "Botschaft (K.BTS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 84, "fields": {"name": "Hafen (K.HFN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 85, "fields": {"name": "Hotel (K.HTL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 87, "fields": {"name": "no type provided", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 88, "fields": {"name": "geboren in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 89, "fields": {"name": "gestorben in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 90, "fields": {"name": "Schriftsteller/Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 92, "fields": {"name": "Person_Geburtsname-Vorname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 93, "fields": {"name": "Person_Ehename_Nachname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 94, "fields": {"name": "Notar/Notarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 95, "fields": {"name": "Politiker/Politikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 96, "fields": {"name": "Person_Geburtsname_Nachname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 97, "fields": {"name": "Mediziner/Medizinerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 99, "fields": {"name": "Journalist/Journalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 100, "fields": {"name": "Kritiker/Kritikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 102, "fields": {"name": "Rechtswissenschaftler/Rechtswissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 103, "fields": {"name": "Theaterleiter/Theaterleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 104, "fields": {"name": "Regisseur/Regisseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 105, "fields": {"name": "Schauspieler/Schauspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 106, "fields": {"name": "Rechtsanwalt/Rechtsanwältin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 107, "fields": {"name": "Sänger/Sängerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 109, "fields": {"name": "König/Königin", "description": "", "parent_class": 327, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 110, "fields": {"name": "Maler/Malerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 111, "fields": {"name": "Veranstalter/Veranstalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 112, "fields": {"name": "Agent/Agentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 113, "fields": {"name": "Ministerialbeamter/Ministerialbeamte", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 114, "fields": {"name": "Zensor/Zensorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 115, "fields": {"name": "Dramaturg/Dramaturgin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 116, "fields": {"name": "Übersetzer/Übersetzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 117, "fields": {"name": "Chefredakteur/Chefredakteurin", "description": "", "parent_class": 173, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 119, "fields": {"name": "Herausgeber/Herausgeberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 120, "fields": {"name": "Internist/Internistin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 121, "fields": {"name": "Kardiologe/Kardiologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 124, "fields": {"name": "Person_Rufname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 126, "fields": {"name": "Oberingenieur/Oberingenieurin", "description": "", "parent_class": 458, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 127, "fields": {"name": "Theaterkritiker/Theaterkritikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 128, "fields": {"name": "Privatbeamter/Privatbeamtin", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 129, "fields": {"name": "Komponist/Komponistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 130, "fields": {"name": "Musikpädagoge/Musikpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 131, "fields": {"name": "Dirigent/Dirigentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 132, "fields": {"name": "Laryngologe/Laryngologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 134, "fields": {"name": "Historiker/Historikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 136, "fields": {"name": "Grafiker/Grafikerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 140, "fields": {"name": "Radierer/Radiererin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 142, "fields": {"name": "Theatersekretär/Theatersekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 144, "fields": {"name": "Verleger/Verlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 145, "fields": {"name": "Fotograf/Fotografin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 148, "fields": {"name": "Gesangspädagoge/Gesangspädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 149, "fields": {"name": "Person_Geschieden", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 150, "fields": {"name": "Bildhauer/Bildhauerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 151, "fields": {"name": "Baurat/Baurätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 152, "fields": {"name": "Industrieller/Industrielle", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 153, "fields": {"name": "Großgrundbesitzer/Großgrundbesitzerin", "description": "", "parent_class": 695, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 154, "fields": {"name": "Philosoph/Philosophin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 155, "fields": {"name": "Händler/Händlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 157, "fields": {"name": "Hotelier/Hotelière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 158, "fields": {"name": "Musikwissenschaftler/Musikwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 159, "fields": {"name": "Veranstaltungsorganisator/Veranstaltungsorganisatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 160, "fields": {"name": "Richter/Richterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 161, "fields": {"name": "Druckereibesitzer/Druckereibesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 162, "fields": {"name": "Privatgelehrte/Privatgelehrte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 163, "fields": {"name": "Privatier/Privatière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 164, "fields": {"name": "Ethnologe/Ethnologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 167, "fields": {"name": "Kaiser/Kaiserin", "description": "", "parent_class": 327, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 168, "fields": {"name": "Erzherzog/Erzherzogin", "description": "", "parent_class": 726, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 169, "fields": {"name": "Kronprinz/Kronprinzessin", "description": "", "parent_class": 537, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 170, "fields": {"name": "Soziologe/Soziologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 171, "fields": {"name": "Mäzen/Mäzenin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 172, "fields": {"name": "Person_Pseudonym", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 173, "fields": {"name": "Redakteur/Redakteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 174, "fields": {"name": "Sprachlehrer/Sprachlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 175, "fields": {"name": "Kaufmann/Kauffrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 176, "fields": {"name": "Konzert- und Theateragent/Konzert- und Theateragentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 178, "fields": {"name": "Ohrenarzt/Ohrenärztin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 180, "fields": {"name": "Kreismarschall/Kreismarschallin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 181, "fields": {"name": "Pianist/Pianistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 184, "fields": {"name": "Bühnenbildner/Bühnenbildnerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 185, "fields": {"name": "Architekt/Architektin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 186, "fields": {"name": "Obersthofmeister/Obersthofmeisterin", "description": "", "parent_class": 755, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 188, "fields": {"name": "Kunstschriftsteller/Kunstschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 189, "fields": {"name": "Sammler/Sammlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 190, "fields": {"name": "Tänzer/Tänzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 192, "fields": {"name": "Mimiker/Mimikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 193, "fields": {"name": "Ballettmeister/Ballettmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 194, "fields": {"name": "Choreograf/Choreografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 195, "fields": {"name": "Kulturphilosoph/Kulturphilosophin", "description": "", "parent_class": 154, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 196, "fields": {"name": "Chemiker/Chemikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 197, "fields": {"name": "Polyhistor/Polyhistorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 198, "fields": {"name": "Gutsbesitzer/Gutsbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 199, "fields": {"name": "Theateragent/Theateragentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 200, "fields": {"name": "Kunstagent/Kunstagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 201, "fields": {"name": "Musikkritiker/Musikkritikerin", "description": "", "parent_class": 100, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 202, "fields": {"name": "Konsularbeamter/Konsularbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 203, "fields": {"name": "Filmcutter/Filmcutterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 204, "fields": {"name": "Philologe/Philologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 205, "fields": {"name": "Unterrichtsminister/Unterrichtsministerin", "description": "", "parent_class": 338, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 206, "fields": {"name": "Modist/Modistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 207, "fields": {"name": "Theatermanager/Theatermanagerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 208, "fields": {"name": "Hotelbesitzer/Hotelbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 210, "fields": {"name": "Gymnasialdirektor/Gymnasialdirektorin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 211, "fields": {"name": "Kanzler/Kanzlerin", "description": "", "parent_class": 95, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 212, "fields": {"name": "Kirchenrechtler/Kirchenrechtlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 213, "fields": {"name": "Lexikograf/Lexikografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 215, "fields": {"name": "Kabarettist/Kabarettistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 216, "fields": {"name": "Patentanwalt/Patentanwältin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 223, "fields": {"name": "Urologe/Urologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 224, "fields": {"name": "Musikverleger/Musikverlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 225, "fields": {"name": "Vereinspräsident/Vereinspräsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 228, "fields": {"name": "Abenteurer/Abenteurerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 229, "fields": {"name": "Botschaftsangestellter/Botschaftsangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 231, "fields": {"name": "Anatom/Anatomin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 232, "fields": {"name": "Psychoanalytiker/Psychoanalytikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 234, "fields": {"name": "Theaterdekorateur/Theaterdekorateurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 235, "fields": {"name": "Bankangestellter/Bankangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 237, "fields": {"name": "Publizist/Publizistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 239, "fields": {"name": "Germanist/Germanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 240, "fields": {"name": "Lehrer/Lehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 241, "fields": {"name": "Zoologe/Zoologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 242, "fields": {"name": "Rezitator/Rezitatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 244, "fields": {"name": "Rassentheoretiker/Rassentheoretikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 246, "fields": {"name": "Museumsleiter/Museumsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 247, "fields": {"name": "Bibliothekar/Bibliothekarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 248, "fields": {"name": "Geistlicher/Geistliche", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 250, "fields": {"name": "Galerist/Galeristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 251, "fields": {"name": "Kunstkritiker/Kunstkritikerin", "description": "", "parent_class": 100, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 253, "fields": {"name": "Großherzog/Großherzogin", "description": "", "parent_class": 726, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 255, "fields": {"name": "Musikjournalist/Musikjournalistin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 256, "fields": {"name": "Generalintendant/Generalintendantin", "description": "", "parent_class": 280, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 259, "fields": {"name": "Theologe/Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 260, "fields": {"name": "Gymnasiallehrer/Gymnasiallehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 261, "fields": {"name": "Indologe/Indologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 263, "fields": {"name": "Geograf/Geografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 264, "fields": {"name": "Bischof/Bischöfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 266, "fields": {"name": "Archäologe/Archäologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 267, "fields": {"name": "Diplomat/Diplomatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 270, "fields": {"name": "Tanzpädagoge/Tanzpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 272, "fields": {"name": "Erfinder/Erfinderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 273, "fields": {"name": "Altphilologe/Altphilologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 274, "fields": {"name": "Literaturwissenschaftler/Literaturwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 275, "fields": {"name": "Philosophiehistoriker/Philosophiehistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 276, "fields": {"name": "Verlagsdirektor/Verlagsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 277, "fields": {"name": "Zionist/Zionistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 279, "fields": {"name": "Botaniker/Botanikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 280, "fields": {"name": "Theaterintendant/Theaterintendantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 281, "fields": {"name": "Verlagslektor/Verlagslektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 282, "fields": {"name": "Kapellmeister/Kapellmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 283, "fields": {"name": "Ordenspriester/Ordenspriesterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 284, "fields": {"name": "Jesuit/Jesuitin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 285, "fields": {"name": "Kulturförderer/Kulturfördererin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 286, "fields": {"name": "Nationalökonom/Nationalökonomin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 287, "fields": {"name": "Kaufmännischer Theaterleiter/Kaufmännische Theaterleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 290, "fields": {"name": "Büroangestellter/Büroangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 291, "fields": {"name": "Büropraktikant/Büropraktikantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 292, "fields": {"name": "Gelehrter/Gelehrte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 293, "fields": {"name": "Mathematiker/Mathematikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 294, "fields": {"name": "Pädagoge/Pädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 295, "fields": {"name": "Bühnenleiter/Bühnenleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 296, "fields": {"name": "Erzieher/Erzieherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 297, "fields": {"name": "männliche Hofdame/Hofdame", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 298, "fields": {"name": "Burschenschaftler/Burschenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 300, "fields": {"name": "Fabrikant/Fabrikantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 302, "fields": {"name": "Mystiker/Mystikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 304, "fields": {"name": "Dauphin/Dauphine", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 305, "fields": {"name": "Schuster/Schusterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 307, "fields": {"name": "Weinhändler/Weinhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 309, "fields": {"name": "Landwirt/Landwirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 310, "fields": {"name": "Angestellter/Angestellte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 311, "fields": {"name": "Ministerialrat/Ministerialrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 313, "fields": {"name": "Verlagsleiter/Verlagsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 314, "fields": {"name": "Grafologe/Grafologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 315, "fields": {"name": "Kardinal/Kardinälin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 316, "fields": {"name": "Heiliger/Heilige", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 317, "fields": {"name": "Epigrammatiker/Epigrammatikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 318, "fields": {"name": "Hochstapler/Hochstaplerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 321, "fields": {"name": "Musikarrangeur/Musikarrangeurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 322, "fields": {"name": "Kunsthändler/Kunsthändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 323, "fields": {"name": "Prediger/Predigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 324, "fields": {"name": "Ökonom/Ökonomin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 325, "fields": {"name": "Poltiker/Poltikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 326, "fields": {"name": "Linguist/Linguistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 327, "fields": {"name": "Regent/Regentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 328, "fields": {"name": "Museumsdirektor/Museumsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 329, "fields": {"name": "Priester/Priesterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 331, "fields": {"name": "Zeichner/Zeichnerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 332, "fields": {"name": "Karikaturist/Karikaturistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 333, "fields": {"name": "Verwaltungsdirektor/Verwaltungsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 334, "fields": {"name": "Frauenrechtler/Frauenrechtlerin", "description": "", "parent_class": 1425, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 335, "fields": {"name": "Alpinist/Alpinistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 336, "fields": {"name": "Kapitän/Kapitänin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 337, "fields": {"name": "Person_Adoptierter-Nachname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 338, "fields": {"name": "Minister/Ministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 339, "fields": {"name": "Betrüger/Betrügerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 340, "fields": {"name": "Kultusminister/Kultusministerin", "description": "", "parent_class": 338, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 341, "fields": {"name": "Gewerkschafter/Gewerkschafterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 343, "fields": {"name": "männliche Salonnière/Salonnière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 344, "fields": {"name": "Musiker/Musikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 345, "fields": {"name": "Keramiker/Keramikerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 346, "fields": {"name": "Filmproduzent/Filmproduzentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 348, "fields": {"name": "Volksbildner/Volksbildnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 350, "fields": {"name": "Fürst/Fürstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 351, "fields": {"name": "Dandy/Dandy", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 352, "fields": {"name": "Autokrat/Autokratin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 353, "fields": {"name": "Forscher/Forscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 354, "fields": {"name": "Seefahrer/Seefahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 356, "fields": {"name": "Pilot/Pilotin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 358, "fields": {"name": "Orientalist/Orientalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 359, "fields": {"name": "Nationalheiliger/Nationalheilige", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 360, "fields": {"name": "Tyrann/Tyrannin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 361, "fields": {"name": "Künstler/Künstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 362, "fields": {"name": "Revolutionär/Revolutionärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 363, "fields": {"name": "Geisteswissenschaftler/Geisteswissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 364, "fields": {"name": "Chirurg/Chirurgin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 365, "fields": {"name": "Sanatoriumsleiter/Sanatoriumsleiterin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 366, "fields": {"name": "Wanderprediger/Wanderpredigerin", "description": "", "parent_class": 323, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 367, "fields": {"name": "Sekretär/Sekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 368, "fields": {"name": "Innenarchitekt/Innenarchitektin", "description": "", "parent_class": 185, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 369, "fields": {"name": "Thronprätendent/Thronprätendentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 370, "fields": {"name": "Dichter/Dichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 372, "fields": {"name": "Missionar/Missionarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 373, "fields": {"name": "Sexualforscher/Sexualforscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 374, "fields": {"name": "Theateransager/Theateransagerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 375, "fields": {"name": "Buchhändler/Buchhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 376, "fields": {"name": "Veterinärmediziner/Veterinärmedizinerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 378, "fields": {"name": "Typograf/Typografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 379, "fields": {"name": "Münzmeister/Münzmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 380, "fields": {"name": "Geschichtsschreiber/Geschichtsschreiberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 381, "fields": {"name": "Kalif/Kalifin", "description": "", "parent_class": 327, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 382, "fields": {"name": "Kurator/Kuratorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 385, "fields": {"name": "Pazifist/Pazifistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 386, "fields": {"name": "Psychiater/Psychiaterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 387, "fields": {"name": "Neurologe/Neurologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 388, "fields": {"name": "Gynäkologe/Gynäkologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 390, "fields": {"name": "Polarforscher/Polarforscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 391, "fields": {"name": "Drehbuchautor/Drehbuchautorin", "description": "", "parent_class": 1316, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 393, "fields": {"name": "Rabbiner/Rabbinerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 395, "fields": {"name": "Filmtheoretiker/Filmtheoretikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 396, "fields": {"name": "Filmschauspieler/Filmschauspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 398, "fields": {"name": "Psychologe/Psychologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 399, "fields": {"name": "Archivar/Archivarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 400, "fields": {"name": "Ornithologe/Ornithologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 401, "fields": {"name": "Theater- und Filmregisseur/Theater- und Filmregisseurin", "description": "", "parent_class": 104, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 404, "fields": {"name": "Literaturhistoriker/Literaturhistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 406, "fields": {"name": "Fiakerfahrer/Fiakerfahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 409, "fields": {"name": "Naturforscher/Naturforscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 410, "fields": {"name": "Fagottist/Fagottistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 411, "fields": {"name": "Violinist/Violinistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 413, "fields": {"name": "Cellist/Cellistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 414, "fields": {"name": "Goldschmied/Goldschmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 415, "fields": {"name": "Illustrator/Illustratorin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 416, "fields": {"name": "Romanist/Romanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 417, "fields": {"name": "Pädiater/Pädiaterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 419, "fields": {"name": "Geologe/Geologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 420, "fields": {"name": "Paläontologe/Paläontologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 421, "fields": {"name": "Flötist/Flötistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 422, "fields": {"name": "Lithograf/Lithografin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 424, "fields": {"name": "KIavierpädagoge/KIavierpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 425, "fields": {"name": "Flugtechniker/Flugtechnikerin", "description": "", "parent_class": 429, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 426, "fields": {"name": "Dermatologe/Dermatologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 428, "fields": {"name": "Orthopäde/Orthopädin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 429, "fields": {"name": "Techniker/Technikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 430, "fields": {"name": "Dolmetscher/Dolmetscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 431, "fields": {"name": "Direktor/Direktorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 433, "fields": {"name": "Schauspiellehrer/Schauspiellehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 434, "fields": {"name": "Pharmakologe/Pharmakologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 436, "fields": {"name": "Physiker/Physikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 437, "fields": {"name": "Amtsleiter/Amtsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 438, "fields": {"name": "Anthropologe/Anthropologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 440, "fields": {"name": "Kunstsammler/Kunstsammlerin", "description": "", "parent_class": 189, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 441, "fields": {"name": "Sexualwissenschaftler/Sexualwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 442, "fields": {"name": "Kupferstecher/Kupferstecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 443, "fields": {"name": "Kunstgewerbler/Kunstgewerblerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 445, "fields": {"name": "Psychotherapeut/Psychotherapeutin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 446, "fields": {"name": "Theatermaler/Theatermalerin", "description": "", "parent_class": 110, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 447, "fields": {"name": "Ballettchef/Ballettchefin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 448, "fields": {"name": "Biologe/Biologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 449, "fields": {"name": "Bratschist/Bratschistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 450, "fields": {"name": "Hygieniker/Hygienikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 451, "fields": {"name": "Zahnarzt/Zahnärztin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 453, "fields": {"name": "Bakteriologe/Bakteriologin", "description": "", "parent_class": 448, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 454, "fields": {"name": "Kameramann/Kamerafrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 457, "fields": {"name": "Korrepetitor/Korrepetitorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 458, "fields": {"name": "Ingenieur/Ingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 460, "fields": {"name": "Dokumentarfilmer/Dokumentarfilmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 461, "fields": {"name": "Souffleur/Souffleuse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 463, "fields": {"name": "Mineraloge/Mineralogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 464, "fields": {"name": "Klavierpädagoge/Klavierpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 465, "fields": {"name": "Bankdirektor/Bankdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 467, "fields": {"name": "Artist/Artistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 468, "fields": {"name": "Zirkusdirektor/Zirkusdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 469, "fields": {"name": "Zeitungseigentümer/Zeitungseigentümerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 472, "fields": {"name": "Generaldirektor/Generaldirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 473, "fields": {"name": "Marinebeamter/Marinebeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 474, "fields": {"name": "Kulturfunktionär/Kulturfunktionärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 477, "fields": {"name": "Administrator/Administratorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 478, "fields": {"name": "Immunologe/Immunologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 479, "fields": {"name": "Versicherungsangestellte/Versicherungsangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 481, "fields": {"name": "Vortragslehrer/Vortragslehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 482, "fields": {"name": "Organist/Organistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 484, "fields": {"name": "Puppenkünstler/Puppenkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 485, "fields": {"name": "Admiral/Admiralin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 486, "fields": {"name": "Militärarzt/Militärärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 487, "fields": {"name": "Gerichtspräsident/Gerichtspräsidentin", "description": "", "parent_class": 160, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 488, "fields": {"name": "Religionslehrer/Religionslehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 489, "fields": {"name": "Kostümbildner/Kostümbildnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 491, "fields": {"name": "Kanzleidirektor/Kanzleidirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 492, "fields": {"name": "Schulleiter/Schulleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 493, "fields": {"name": "Oboist/Oboistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 495, "fields": {"name": "Aviatiker/Aviatikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 496, "fields": {"name": "Aquarellist/Aquarellistin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 502, "fields": {"name": "Person_Verwitwet", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 503, "fields": {"name": "Apotheker/Apothekerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 504, "fields": {"name": "Zensurbeirat/Zensurbeirätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 505, "fields": {"name": "Bibliotheksleiter/Bibliotheksleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 506, "fields": {"name": "Volkskundler/Volkskundlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 511, "fields": {"name": "Reformator/Reformatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 512, "fields": {"name": "Astronom/Astronomin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 513, "fields": {"name": "Pfarrer/Pfarrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 514, "fields": {"name": "Kompositionslehrer/Kompositionslehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 515, "fields": {"name": "Prälat/Prälatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 522, "fields": {"name": "Juwelier/Juwelierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 523, "fields": {"name": "Akrobat/Akrobatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 524, "fields": {"name": "Installateur/Installateurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 525, "fields": {"name": "Elektriker/Elektrikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 527, "fields": {"name": "/Soubrette", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 528, "fields": {"name": "Schuhmacher/Schuhmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 530, "fields": {"name": "Diener/Dienerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 531, "fields": {"name": "Autoverleiher/Autoverleiherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 532, "fields": {"name": "Sprechlehrer/Sprechlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 533, "fields": {"name": "Literaturagent/Literaturagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 535, "fields": {"name": "Bauunternehmer/Bauunternehmerin", "description": "", "parent_class": 913, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 536, "fields": {"name": "Musikdirektor/Musikdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 537, "fields": {"name": "Prinz/Prinzessin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 538, "fields": {"name": "Wirtschafter/Wirtschafterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 540, "fields": {"name": "Börsenmakler/Börsenmaklerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 541, "fields": {"name": "Krankenpfleger/Krankenpflegerin", "description": "", "parent_class": 1584, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 542, "fields": {"name": "Rentier/Rentierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 544, "fields": {"name": "Bahnbeamter/Bahnbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 547, "fields": {"name": "Vizepräsident/Vizepräsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 550, "fields": {"name": "Filmagent/Filmagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 551, "fields": {"name": "Papst/Päpstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 552, "fields": {"name": "Nervenpathologe/Nervenpathologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 553, "fields": {"name": "Antiquitätenhändler/Antiquitätenhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 554, "fields": {"name": "Grubenbesitzer/Grubenbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 556, "fields": {"name": "Zauberkünstler/Zauberkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 559, "fields": {"name": "Staatskanzler/Staatskanzlerin", "description": "", "parent_class": 95, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 560, "fields": {"name": "Direktionssekretär/Direktionssekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 561, "fields": {"name": "Realitätenagent/Realitätenagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 562, "fields": {"name": "Typist/Typistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 564, "fields": {"name": "männliche Hebamme/Hebamme", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 565, "fields": {"name": "Theaterverleger/Theaterverlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 567, "fields": {"name": "Versicherungsdirektor/Versicherungsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 568, "fields": {"name": "Klavierlehrer/Klavierlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 570, "fields": {"name": "Matrikelführer/Matrikelführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 572, "fields": {"name": "Heilgymnast/Heilgymnastin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 574, "fields": {"name": "Heerführer/Heerführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 575, "fields": {"name": "Statthalterei-Sekretär/Statthalterei-Sekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 576, "fields": {"name": "Oberrabbiner/Oberrabbinerin", "description": "", "parent_class": 393, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 577, "fields": {"name": "Postbeamter/Postbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 578, "fields": {"name": "Kunstpädagoge/Kunstpädagogin", "description": "", "parent_class": 294, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 580, "fields": {"name": "Holzschneider/Holzschneiderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 581, "fields": {"name": "Chordirektor/Chordirektorin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 582, "fields": {"name": "Illusionist/Illusionistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 583, "fields": {"name": "Feldscher/Feldscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 584, "fields": {"name": "Schmied/Schmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 585, "fields": {"name": "Theaterunternehmer/Theaterunternehmerin", "description": "", "parent_class": 913, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 586, "fields": {"name": "Küchenchef/Küchenchefin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 587, "fields": {"name": "Konditor/Konditorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 588, "fields": {"name": "Konzertveranstalter/Konzertveranstalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 589, "fields": {"name": "Bühnenmeister/Bühnenmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 590, "fields": {"name": "Schneider/Schneiderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 591, "fields": {"name": "Masseur/Masseuse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 592, "fields": {"name": "Komparse/Komparsin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 593, "fields": {"name": "Kassier/Kassierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 595, "fields": {"name": "Tanzschulbesitzer/Tanzschulbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 596, "fields": {"name": "Bibliograf/Bibliografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 597, "fields": {"name": "Friseur/Friseuse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 600, "fields": {"name": "Zeitungsverleger/Zeitungsverlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 601, "fields": {"name": "Kunsterzieher/Kunsterzieherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 602, "fields": {"name": "Tanzlehrer/Tanzlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 604, "fields": {"name": "Hausangestellter/Hausangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 605, "fields": {"name": "Tischler/Tischlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 607, "fields": {"name": "Rabbinatssubstitut/Rabbinatssubstitutin", "description": "", "parent_class": 393, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 608, "fields": {"name": "Anglist/Anglistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 609, "fields": {"name": "Röntgenologe/Röntgenologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 610, "fields": {"name": "Handelsangestellter/Handelsangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 611, "fields": {"name": "Modeschöpfer/Modeschöpferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 612, "fields": {"name": "Lautenspieler/Lautenspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 615, "fields": {"name": "Musikagent/Musikagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 616, "fields": {"name": "Thronfolger/Thronfolgerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 617, "fields": {"name": "Clown/Clownin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 618, "fields": {"name": "Verwandlungskünstler/Verwandlungskünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 619, "fields": {"name": "Militär/Militärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 623, "fields": {"name": "Firmeninhaber/Firmeninhaberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 624, "fields": {"name": "Optiker/Optikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 627, "fields": {"name": "Baumeister/Baumeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 628, "fields": {"name": "Schätzmeister/Schätzmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 629, "fields": {"name": "Reichstagssekretär/Reichstagssekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 632, "fields": {"name": "Tennistrainer/Tennistrainerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 633, "fields": {"name": "Aeronaut/Aeronaut", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 635, "fields": {"name": "Börsensensal/Börsensensalin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 636, "fields": {"name": "Räuberhauptmann/Räuberhauptfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 638, "fields": {"name": "Textilkaufmann/Textilkauffrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 640, "fields": {"name": "Physiotherapeut/Physiotherapeutin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 641, "fields": {"name": "Konzertagent/Konzertagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 642, "fields": {"name": "Stenotypistin/Stenotypistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 643, "fields": {"name": "Tierhändler/Tierhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 644, "fields": {"name": "Handelsagent/Handelsagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 645, "fields": {"name": "Polizeibeamter/Polizeibeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 646, "fields": {"name": "Delikatessenhändler/Delikatessenhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 647, "fields": {"name": "Handelsakademielehrer/Handelsakademielehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 648, "fields": {"name": "Rechnungsprüfer/Rechnungsprüferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 649, "fields": {"name": "Pressebeirat/Pressebeirätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 650, "fields": {"name": "Slawist/Slawistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 651, "fields": {"name": "Student/Studentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 654, "fields": {"name": "Hypnotiseur/Hypnotiseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 655, "fields": {"name": "Fechtmeister/Fechtmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 656, "fields": {"name": "Haushaltshilfe/Haushaltshilfe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 657, "fields": {"name": "Taxi-Unternehmer/Taxi-Unternehmerin", "description": "", "parent_class": 913, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 658, "fields": {"name": "Gärtner/Gärtnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 659, "fields": {"name": "Finanzbeamter/Finanzbeamte", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 666, "fields": {"name": "Cafétier/Cafétière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 667, "fields": {"name": "Tapezierer/Tapeziererin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 669, "fields": {"name": "Verwaltungssekretär/Verwaltungssekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 670, "fields": {"name": "Restaurateur/Restaurateurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 671, "fields": {"name": "Buchmacher/Buchmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 673, "fields": {"name": "Hofbeamter/Hofbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 674, "fields": {"name": "Kinderbetreuer/Kinderbetreuerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 676, "fields": {"name": "Ordensgründer/Ordensgründerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 677, "fields": {"name": "Restaurator/Restauratorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 678, "fields": {"name": "Kunsttischler/Kunsttischlerin", "description": "", "parent_class": 605, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 679, "fields": {"name": "Raubmörder/Raubmörderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 681, "fields": {"name": "Geometer/Geometerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 683, "fields": {"name": "Verlagsagent/Verlagsagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 684, "fields": {"name": "Bühnenverleger/Bühnenverlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 685, "fields": {"name": "männliche Hausdame/Hausdame", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 686, "fields": {"name": "Korrespondent/Korrespondentin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 687, "fields": {"name": "Zar/Zarin", "description": "", "parent_class": 327, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 688, "fields": {"name": "Gastwirt/Gastwirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 689, "fields": {"name": "Medailleur/Medailleurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 692, "fields": {"name": "Fuhrunternehmer/Fuhrunternehmerin", "description": "", "parent_class": 913, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 693, "fields": {"name": "Balneologe/Balneologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 695, "fields": {"name": "Grundbesitzer/Grundbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 696, "fields": {"name": "Kartograf/Kartografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 698, "fields": {"name": "Inhaber einer Konzertagentur/Inhaberin einer Konzertagentur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 700, "fields": {"name": "Bezirksarzt/Bezirksärztin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 701, "fields": {"name": "Auditor/Auditorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 702, "fields": {"name": "Pensionsinhaber/Pensionsinhaberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 704, "fields": {"name": "Inhaber eines Friseur- und Maniküre-Salons/Inhaberin eines Friseur- und\n Maniküre-Salons", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 706, "fields": {"name": "Garderobier/Garderobière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 708, "fields": {"name": "Internatsleiter/Internatsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 709, "fields": {"name": "Schriftsetzer/Schriftsetzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 710, "fields": {"name": "Gymnastiklehrer/Gymnastiklehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 711, "fields": {"name": "Leiter eines Schreibbüros/Leiterin eines Schreibbüros", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 712, "fields": {"name": "Versicherungsbeamter/Versicherungsbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 713, "fields": {"name": "Verlagsangestellte/Verlagsangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 715, "fields": {"name": "Theaterdirektor/Theaterdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 716, "fields": {"name": "Syndikus/Syndika", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 717, "fields": {"name": "Glasfabrikant/Glasfabrikantin", "description": "", "parent_class": 300, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 719, "fields": {"name": "Näher/Näherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 721, "fields": {"name": "Gemeinderat/Gemeinderätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 722, "fields": {"name": "Doktor/Doktorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 723, "fields": {"name": "Textilindustrieller/Textilindustrielle", "description": "", "parent_class": 152, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 725, "fields": {"name": "Handelsberater/Handelsberaterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 726, "fields": {"name": "Herzog/Herzogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 727, "fields": {"name": "Dramatiker/Dramatikerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 728, "fields": {"name": "Kurfürst/Kurfürstin", "description": "", "parent_class": 350, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 732, "fields": {"name": "Verwalter/Verwalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 733, "fields": {"name": "Koch/Köchin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 734, "fields": {"name": "Theaterproduzent/Theaterproduzentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 735, "fields": {"name": "Gesangskomiker/Gesangskomikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 737, "fields": {"name": "Militärrichter/Militärrichterin", "description": "", "parent_class": 160, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 739, "fields": {"name": "Serologe/Serologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 740, "fields": {"name": "Bauinspektor/Bauinspektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 743, "fields": {"name": "Chiromant/Chiromantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 744, "fields": {"name": "Kostümschneider/Kostümschneiderin", "description": "", "parent_class": 590, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 745, "fields": {"name": "Garderobenleiter/Garderobenleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 746, "fields": {"name": "Kontorist/Kontoristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 748, "fields": {"name": "Elektroinstallateur/Elektroinstallateur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 749, "fields": {"name": "Radiodirektor/Radiodirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 750, "fields": {"name": "Zimmermeister/Zimmermeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 752, "fields": {"name": "Pastor/Pastorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 753, "fields": {"name": "Oberkantor/Oberkantorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 755, "fields": {"name": "Hofmeister/Hofmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 756, "fields": {"name": "Regiekanzleiführer/Regiekanzleiführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 757, "fields": {"name": "Justizbeamter/Justizbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 760, "fields": {"name": "Regieassistent/Regieassistentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 761, "fields": {"name": "Hausschneider/Hausschneiderin", "description": "", "parent_class": 590, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 762, "fields": {"name": "Leitender Beamter/Leitende Beamte", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 763, "fields": {"name": "Hotelsekretär/Hotelsekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 764, "fields": {"name": "Gerichtsmediziner/Gerichtsmedizinerin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 765, "fields": {"name": "Forstverwalter/Forstverwalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 766, "fields": {"name": "Pfarrerinsmann/Pfarrersfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 767, "fields": {"name": "Professor/Professorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 768, "fields": {"name": "Hofmusikdirektor/Hofmusikdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 770, "fields": {"name": "Konservatoriumsleiter/Konservatoriumsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 771, "fields": {"name": "Hotelportier/Hotelportierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 775, "fields": {"name": "Privatlehrer/Privatlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 776, "fields": {"name": "Luftfahrtpionier/Luftfahrtpionierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 779, "fields": {"name": "Sportjournalist/Sportjournalistin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 780, "fields": {"name": "Angehöriger des Domkapitels/Angehörige des Domkapitels", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 782, "fields": {"name": "Fabriksdirektor/Fabriksdirektorin", "description": "", "parent_class": 300, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 783, "fields": {"name": "Geschäftsführer/Geschäftsführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 785, "fields": {"name": "Vereinsdirektor/Vereinsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 786, "fields": {"name": "Vermieter/Vermieterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 787, "fields": {"name": "Buchhalter/Buchhalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 788, "fields": {"name": "Hoteldirektor/Hoteldirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 791, "fields": {"name": "Inspizient/Inspizientin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 793, "fields": {"name": "Reinigungskraft/Reinigungskraft", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 795, "fields": {"name": "Prokurist/Prokuristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 796, "fields": {"name": "Gastroenterologe/Gastroenterologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 797, "fields": {"name": "Handpfleger/Handpflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 798, "fields": {"name": "Freiheitskämpfer/Freiheitskämpferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 799, "fields": {"name": "Kofferhersteller/Kofferherstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 800, "fields": {"name": "Güterverwalter/Güterverwalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 801, "fields": {"name": "Chauffeur/Chauffeurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 803, "fields": {"name": "Hornist/Hornistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 805, "fields": {"name": "Ladenbesitzer/Ladenbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 806, "fields": {"name": "Hungerkünstler/Hungerkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 807, "fields": {"name": "Magistratsbeamter/Magistratsbeamte", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 811, "fields": {"name": "Magnetiseur/Magnetiseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 812, "fields": {"name": "Vereinsvorstand/Vereinsvorständin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 813, "fields": {"name": "Restaurantbesitzer/Restaurantbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 814, "fields": {"name": "Verlagsinhaber/Verlagsinhaberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 816, "fields": {"name": "Staatsanwalt/Staatsanwältin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 817, "fields": {"name": "Kinofotograf/Kinofotografin", "description": "", "parent_class": 145, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 818, "fields": {"name": "Paukist/Paukistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 819, "fields": {"name": "Klavierfabrikant/Klavierfabrikantin", "description": "", "parent_class": 300, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 820, "fields": {"name": "Garagenbesitzer/Garagenbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 821, "fields": {"name": "Byzantinist/Byzantinistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 824, "fields": {"name": "Markgraf/Markgräfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 826, "fields": {"name": "Magier/Magierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 830, "fields": {"name": "Pensionatsleiter/Pensionatsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 831, "fields": {"name": "Briefträger/Briefträgerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 833, "fields": {"name": "Regimentsarzt/Regimentsärztin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 834, "fields": {"name": "Liebespartner/Liebespartnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 836, "fields": {"name": "Hausmeister/Hausmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 838, "fields": {"name": "Schreiber/Schreiberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 842, "fields": {"name": "Schwede/Schwedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 844, "fields": {"name": "Oberlehrer/Oberlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 845, "fields": {"name": "Italiener/Italienerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 854, "fields": {"name": "Kleiderverkäufer/Kleiderverkäuferin", "description": "", "parent_class": 944, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 862, "fields": {"name": "Gemeindediener/Gemeindedienerin", "description": "", "parent_class": 919, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 863, "fields": {"name": "Autografensammler/Autografensammlerin", "description": "", "parent_class": 189, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 864, "fields": {"name": "Bittsteller/Bittstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 866, "fields": {"name": "Bäcker/Bäckerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 867, "fields": {"name": "Portier/Portierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 873, "fields": {"name": "Präsident/Präsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 875, "fields": {"name": "Verlobter/Verlobte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 879, "fields": {"name": "Reporter/Reporterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 885, "fields": {"name": "Botschaftsmitarbeiter/Botschaftsmitarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 896, "fields": {"name": "Schuldirektor/Schuldirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 903, "fields": {"name": "Russe/Russin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 905, "fields": {"name": "Kabinenvermieter/Kabinenvermieterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 906, "fields": {"name": "Prostituierter/Prostituierte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 907, "fields": {"name": "Steuerbeamter/Steuerbeamtin", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 909, "fields": {"name": "Anarchist/Anarchistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 911, "fields": {"name": "Buchdrucker/Buchdruckerin", "description": "", "parent_class": 1506, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 913, "fields": {"name": "Unternehmer/Unternehmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 917, "fields": {"name": "Mönch/Nonne", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 918, "fields": {"name": "Englischlehrer/Englischlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 919, "fields": {"name": "Dienstbote/Dienstbotin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 920, "fields": {"name": "Bühnentechniker/Bühnentechnikerin", "description": "", "parent_class": 429, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 921, "fields": {"name": "Polizeiinspektor/Polizeiinspektorin", "description": "", "parent_class": 645, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 922, "fields": {"name": "Rahmenmacher/Rahmenmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 923, "fields": {"name": "Realitätensensal/Realitätensensalin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 926, "fields": {"name": "Dalai Lama/Dalai Lama", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 929, "fields": {"name": "Infant/Infantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 931, "fields": {"name": "Bahninspektor/Bahninspektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 932, "fields": {"name": "Claqueur/Claqueuse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 935, "fields": {"name": "Anthroposoph/Anthroposophin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 936, "fields": {"name": "Importkaufmann/Importkauffrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 938, "fields": {"name": "Finanzier/Finanzierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 939, "fields": {"name": "Haushälter/Haushälterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 940, "fields": {"name": "Gesellschafter/Gesellschafterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 941, "fields": {"name": "Kuppler/Kupplerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 943, "fields": {"name": "Oberkassier/Oberkassierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 944, "fields": {"name": "Verkäufer/Verkäuferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 945, "fields": {"name": "Humorist/Humoristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 946, "fields": {"name": "Großkaufmann/Großkauffrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 949, "fields": {"name": "Erzbischof/Erzbischöfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 950, "fields": {"name": "Liebhaber/Liebhaberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 952, "fields": {"name": "Spediteur/Spediteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 953, "fields": {"name": "Commandante/Commandantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 958, "fields": {"name": "Buddha/Tara", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 959, "fields": {"name": "Wissenschaftler/Wissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 961, "fields": {"name": "Schausteller/Schaustellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 962, "fields": {"name": "Hotelierssohn/Hotelierstochter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 963, "fields": {"name": "Telegrafenbeamter/Telegrafenbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 964, "fields": {"name": "Medizinstudent/Medizinstudentin", "description": "", "parent_class": 651, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 967, "fields": {"name": "Importhändler/Importhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 968, "fields": {"name": "Möbelfabrikant/Möbelfabrikantin", "description": "", "parent_class": 300, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 969, "fields": {"name": "Kellner/Kellnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 970, "fields": {"name": "angesiedelt in", "description": "", "parent_class": null, "status": "can", "vocab_name": 6}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 971, "fields": {"name": "enthält", "description": "", "parent_class": null, "status": "can", "vocab_name": 1}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 972, "fields": {"name": "Tageszeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 973, "fields": {"name": "Zeitschriftenredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 974, "fields": {"name": "Verein", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 975, "fields": {"name": "Verlag", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 976, "fields": {"name": "Glaubensverein", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 977, "fields": {"name": "Bank", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 978, "fields": {"name": "Wohltätigkeitsverein", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 979, "fields": {"name": "Eisenbahnunternehmen", "description": "", "parent_class": 3458, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 980, "fields": {"name": "Orden", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 981, "fields": {"name": "Kartenbüro", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 982, "fields": {"name": "Bildungseinrichtung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 983, "fields": {"name": "Künstlervereinigung", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 984, "fields": {"name": "Amt", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 985, "fields": {"name": "Theatergruppe", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 986, "fields": {"name": "Bankhaus", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 987, "fields": {"name": "Auszeichnung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 988, "fields": {"name": "Militärmusikkapelle", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 989, "fields": {"name": "Wohltätigkeitsveranstaltung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 990, "fields": {"name": "Geschäft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 991, "fields": {"name": "Theatertruppe", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 992, "fields": {"name": "Antiquariat", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 993, "fields": {"name": "Literaturpreis", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 994, "fields": {"name": "Filmproduktionsfirma", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 995, "fields": {"name": "Theaterverein", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 996, "fields": {"name": "Theaterpreis", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 997, "fields": {"name": "Literarische Vereinigung", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 998, "fields": {"name": "Wochenzeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 999, "fields": {"name": "Interessensvertretung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1000, "fields": {"name": "Verlagskonzern", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1001, "fields": {"name": "Akademie der Wissenschaften", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1002, "fields": {"name": "Ordensgemeinschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1003, "fields": {"name": "Burschenschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1004, "fields": {"name": "Veranstaltung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1005, "fields": {"name": "Wochenzeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1006, "fields": {"name": "Archiv", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1007, "fields": {"name": "Bibliothek", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1008, "fields": {"name": "Halbmonatszeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1009, "fields": {"name": "Museum", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1010, "fields": {"name": "Redaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1011, "fields": {"name": "Orchester", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1012, "fields": {"name": "Theater", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1013, "fields": {"name": "Musikalienverlag", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1014, "fields": {"name": "Kleidergeschäft", "description": "", "parent_class": 990, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1015, "fields": {"name": "Autorenverband", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1016, "fields": {"name": "Fotoatelier", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1017, "fields": {"name": "Schriftstellerverein", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1018, "fields": {"name": "Rundfunkgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1019, "fields": {"name": "Feuilletonkorrespondenz", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1020, "fields": {"name": "Buchhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1021, "fields": {"name": "Juwelier", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1022, "fields": {"name": "Politische Vereinigung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1023, "fields": {"name": "Rassistische Vereinigung", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1024, "fields": {"name": "Studierenvereinigung", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1025, "fields": {"name": "Völkerrechtsverträge", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1026, "fields": {"name": "Verlag für Ansichtskarten", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1027, "fields": {"name": "Vereinigung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1028, "fields": {"name": "Isländische Volksvertretung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1029, "fields": {"name": "Nationalbibliothek", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1030, "fields": {"name": "Nachlassarchiv", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1031, "fields": {"name": "Gelehrtenvereinigung", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1032, "fields": {"name": "Universität", "description": "", "parent_class": 1420, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1033, "fields": {"name": "Brauerei", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1034, "fields": {"name": "Verlag und Bühnenvertrieb", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1035, "fields": {"name": "Buchgemeinschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1036, "fields": {"name": "Druckerei", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1037, "fields": {"name": "Gericht", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1038, "fields": {"name": "Verein für Kunstpflege", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1039, "fields": {"name": "Zeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1040, "fields": {"name": "Akademie der Künste", "description": "", "parent_class": 1420, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1041, "fields": {"name": "Schifffahrtsgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1042, "fields": {"name": "Kabarett", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1043, "fields": {"name": "Radfahrerklub", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1044, "fields": {"name": "Tischgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1045, "fields": {"name": "Zeitungsausschnittsagentur", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1046, "fields": {"name": "Auktionshaus", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1047, "fields": {"name": "Theaterunternehmen", "description": "", "parent_class": 3458, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1048, "fields": {"name": "steht in Bezug zu", "description": "Allgemeine Beziehung zwischen Person und Werk", "parent_class": null, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1049, "fields": {"name": "hat geschaffen", "description": "Werk ist erschaffen von", "parent_class": 1048, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1050, "fields": {"name": "hat anonym veröffentlicht", "description": "Werk ist anonym erschienen", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1051, "fields": {"name": "hat unter Pseudonym geschrieben", "description": "Werk ist unter einem Kürzel oder anderen Namen des Autors erschienen", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1052, "fields": {"name": "hat übersetzt", "description": "Werk ist von diesem nicht geschrieben, sondern der ist der Übersetzer", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1053, "fields": {"name": "hat herausgegeben", "description": "Werk ist von diesem nicht geschrieben, sondern der ist der Herausgeber oder die Herausgeberin", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1054, "fields": {"name": "Erzählung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1055, "fields": {"name": "Text", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1056, "fields": {"name": "Mehraktiges Drama", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1057, "fields": {"name": "Einakter", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1058, "fields": {"name": "Einakterzyklus", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1059, "fields": {"name": "Oper", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1060, "fields": {"name": "Roman", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1062, "fields": {"name": "Relief", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1063, "fields": {"name": "Radierung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1064, "fields": {"name": "Typologische Studie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1065, "fields": {"name": "Aphorismensammlung", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1066, "fields": {"name": "Film", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1067, "fields": {"name": "Gedicht", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1068, "fields": {"name": "Tanzpantomime", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1069, "fields": {"name": "Übertragung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1070, "fields": {"name": "Operette", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1071, "fields": {"name": "Bleistiftskizze", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1072, "fields": {"name": "Musikstück", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1073, "fields": {"name": "Fotografie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1074, "fields": {"name": "Foto", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1075, "fields": {"name": "Gattungsunspezifisch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1076, "fields": {"name": "Tondichtung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1077, "fields": {"name": "Ballett", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1078, "fields": {"name": "Pantomime", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1079, "fields": {"name": "Lied", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1080, "fields": {"name": "Gemälde", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1081, "fields": {"name": "Lieder", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1082, "fields": {"name": "Suite", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1083, "fields": {"name": "Umfrageteilnahme", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1084, "fields": {"name": "Porträt", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1085, "fields": {"name": "Gedichte", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1086, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1087, "fields": {"name": "Lithografie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1089, "fields": {"name": "Studie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1091, "fields": {"name": "Zeichnung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1092, "fields": {"name": "Keramik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1093, "fields": {"name": "Büste", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1094, "fields": {"name": "Keramikstatuette", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1095, "fields": {"name": "Leserbrief", "description": "", "parent_class": 1835, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1096, "fields": {"name": "Ballade", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1097, "fields": {"name": "Drama", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1098, "fields": {"name": "Novellensammlung", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1099, "fields": {"name": "Autobiografie", "description": "", "parent_class": 1156, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1100, "fields": {"name": "Filmskript", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1101, "fields": {"name": "Legacy name (merge)", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1103, "fields": {"name": "http://www.geonames.org/ontology#P.PPLC", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1104, "fields": {"name": "alternative name", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1105, "fields": {"name": "http://www.geonames.org/ontology#A.ADM4", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1106, "fields": {"name": "gehört zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 1}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1107, "fields": {"name": "http://www.geonames.org/ontology#A.PCLI", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1108, "fields": {"name": "http://www.geonames.org/ontology#P.PPLA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1109, "fields": {"name": "ist Elternteil von", "description": "Diese Person ist Vater oder Mutter von", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1110, "fields": {"name": "ist verwandt zu", "description": "", "parent_class": 1176, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1111, "fields": {"name": "ist Onkel/Tante von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1112, "fields": {"name": "ist Cousin/Cousine von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1113, "fields": {"name": "ist adoptiertes Elternteil von", "description": "", "parent_class": 1109, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1114, "fields": {"name": "in intimer Beziehung zu", "description": "", "parent_class": 1176, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1115, "fields": {"name": "ist verheiratet mit", "description": "", "parent_class": 1114, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1116, "fields": {"name": "ist Geschwister von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1117, "fields": {"name": "ist Großelternteil von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1118, "fields": {"name": "ist verschwägert mit", "description": "ist Schwager/Schwägerin von", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1120, "fields": {"name": "ist Kind von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1121, "fields": {"name": "ist Enkel von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1122, "fields": {"name": "ist adoptiertes Kind von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1123, "fields": {"name": "http://www.geonames.org/ontology#P.PPL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1124, "fields": {"name": "http://www.geonames.org/ontology#A.ADM3", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1126, "fields": {"name": "legacy name", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1127, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "ac", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1128, "fields": {"name": "http://www.geonames.org/ontology#P.PPLA3", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1129, "fields": {"name": "Gedichtsammlung", "description": "", "parent_class": 1208, "status": "ac", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1130, "fields": {"name": "Briefausgabe", "description": "", "parent_class": 1791, "status": "ac", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1131, "fields": {"name": "Rezension", "description": "Besprechung", "parent_class": null, "status": "ac", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1132, "fields": {"name": "ist eine Rezension von", "description": "", "parent_class": null, "status": "ac", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1133, "fields": {"name": "ist eine Bearbeitung von", "description": "", "parent_class": null, "status": "ac", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1134, "fields": {"name": "http://www.geonames.org/ontology#P.PPLA2", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1135, "fields": {"name": "http://www.geonames.org/ontology#A.ADM2", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1136, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "vocab_name": 1}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1137, "fields": {"name": "http://www.geonames.org/ontology#A.ADM1", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1138, "fields": {"name": "enthalten in", "description": "", "parent_class": null, "status": "can", "vocab_name": 12}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1139, "fields": {"name": "enthält", "description": "", "parent_class": null, "status": "can", "vocab_name": 12}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1140, "fields": {"name": "arbeitet in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1141, "fields": {"name": "angesiedelt in", "description": "", "parent_class": null, "status": "can", "vocab_name": 6}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1142, "fields": {"name": "Fachliteratur", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1143, "fields": {"name": "in Beziehung zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 12}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1144, "fields": {"name": "hat ein Vorwort/Nachwort verfasst zu", "description": "", "parent_class": 1224, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1146, "fields": {"name": "Werk_unter-diesem-Namen-oder-Kürzel-veröffentlicht", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1147, "fields": {"name": "geboren in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1148, "fields": {"name": "gestorben in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1149, "fields": {"name": "Schwank", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1150, "fields": {"name": "ist Eigentümer/Eigentümerin von", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1152, "fields": {"name": "http://www.geonames.org/ontology#T.VAL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1153, "fields": {"name": "in Bezug zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 13}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1154, "fields": {"name": "Aufsatz", "description": "", "parent_class": 1155, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1155, "fields": {"name": "Epik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1156, "fields": {"name": "Biografie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1157, "fields": {"name": "Werkausgabe", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1158, "fields": {"name": "aufgegangen in", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1159, "fields": {"name": "Vorgänger war", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1160, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "vocab_name": 6}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1161, "fields": {"name": "enthalten in", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1162, "fields": {"name": "enthält", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1163, "fields": {"name": "Hochschulschrift", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1164, "fields": {"name": "Reisebericht", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1165, "fields": {"name": "in Bezug zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1168, "fields": {"name": "Singspiel", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1169, "fields": {"name": "ist geschieden von", "description": "", "parent_class": 1115, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1170, "fields": {"name": "ist durch Tod getrennt von", "description": "", "parent_class": 1115, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1171, "fields": {"name": "hinterlässt durch Tod", "description": "", "parent_class": 1115, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1172, "fields": {"name": "Bordellbetreiber/Bordellbetreiberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1173, "fields": {"name": "ist Stiefkind von", "description": "", "parent_class": 1120, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1174, "fields": {"name": "ist Stiefelternteil von", "description": "", "parent_class": 1109, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1175, "fields": {"name": "ist Neffe/Nichte von", "description": "", "parent_class": 1110, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1176, "fields": {"name": "im Bezug zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1177, "fields": {"name": "Freundschaft", "description": "", "parent_class": 1176, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1178, "fields": {"name": "arbeitet für", "description": "", "parent_class": 1405, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1179, "fields": {"name": "ist Staatsbürger/Staatsbürgerin von", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1181, "fields": {"name": "gelebt in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1182, "fields": {"name": "arbeitet für", "description": "", "parent_class": null, "status": "can", "vocab_name": 13}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1184, "fields": {"name": "wird rezensiert in", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1185, "fields": {"name": "wurde bearbeitet als", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1186, "fields": {"name": "arbeitet zusammen mit", "description": "", "parent_class": 1405, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1187, "fields": {"name": "beerdigt in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1189, "fields": {"name": "ist eine frühere Fassung von", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1190, "fields": {"name": "ist eine spätere Fassung von", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1191, "fields": {"name": "Sammlung von Rezensionen", "description": "Sammlung von Besprechungen", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1192, "fields": {"name": "in Relation zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1193, "fields": {"name": "aufgeführt am", "description": "", "parent_class": null, "status": "can", "vocab_name": 15}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1194, "fields": {"name": "hatte am Spielplan", "description": "", "parent_class": null, "status": "can", "vocab_name": 15}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1195, "fields": {"name": "http://www.geonames.org/ontology#P.PPLA4", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1198, "fields": {"name": "Wien-Geschichte-Wiki", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1200, "fields": {"name": "Aufführung", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1201, "fields": {"name": "Aufführung von", "description": "", "parent_class": null, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1202, "fields": {"name": "Veranstaltungsort von", "description": "", "parent_class": null, "status": "can", "vocab_name": 19}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1203, "fields": {"name": "Uraufführung", "description": "", "parent_class": 1205, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1204, "fields": {"name": "Uraufführung von", "description": "", "parent_class": 1201, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1205, "fields": {"name": "Premiere", "description": "", "parent_class": 1200, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1206, "fields": {"name": "Premiere von", "description": "", "parent_class": 1201, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1207, "fields": {"name": "Parabel", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1208, "fields": {"name": "Textsammlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1209, "fields": {"name": "Buchausgabe", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1210, "fields": {"name": "Dialog", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1211, "fields": {"name": "Unveröffentlichtes Werk", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1212, "fields": {"name": "Unveröffentlichtes dramatisches Werk", "description": "", "parent_class": 1211, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1213, "fields": {"name": "Aphorismus", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1214, "fields": {"name": "Werk_Link", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1215, "fields": {"name": "Stoffentwurf", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1216, "fields": {"name": "Unveröffentlichtes Gedicht", "description": "", "parent_class": 1211, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1217, "fields": {"name": "hat vertont", "description": "", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1218, "fields": {"name": "Periodikum", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1219, "fields": {"name": "Zeitschrift", "description": "", "parent_class": 1218, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1220, "fields": {"name": "Tageszeitung", "description": "", "parent_class": 1218, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1221, "fields": {"name": "Wochenschrift", "description": "", "parent_class": 1219, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1222, "fields": {"name": "Monatsschrift", "description": "", "parent_class": 1219, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1223, "fields": {"name": "Jahrbuch", "description": "", "parent_class": 1218, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1224, "fields": {"name": "hat einen Beitrag geschaffen zu", "description": "", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1225, "fields": {"name": "fortgeführt als", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1226, "fields": {"name": "Filmentwurf", "description": "", "parent_class": 1227, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1227, "fields": {"name": "Notizen", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1228, "fields": {"name": "Filmplan", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1229, "fields": {"name": "Operettenplan", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1232, "fields": {"name": "Vorwort", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1233, "fields": {"name": "vorangegangen ist", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1234, "fields": {"name": "http://www.geonames.org/ontology#P.PPLX", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1235, "fields": {"name": "Werk_Bibliografische-Angabe", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1237, "fields": {"name": "preceding", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1239, "fields": {"name": "Projekt", "description": "", "parent_class": null, "status": "can", "vocab_name": 20}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1240, "fields": {"name": "Polizeibehörde", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1241, "fields": {"name": "Generalprokuratur", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1242, "fields": {"name": "Staatsanwaltschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1243, "fields": {"name": "Anno", "description": "", "parent_class": 1214, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1244, "fields": {"name": "succeeding", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1245, "fields": {"name": "Privatdetektiv/Privatdetektivin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1246, "fields": {"name": "Vorleser/Vorleserin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1247, "fields": {"name": "ist Arbeitgeber/Arbeitgeberin für", "description": "", "parent_class": 1405, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1248, "fields": {"name": "Fähnrich/Fähnrichin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1249, "fields": {"name": "http://www.geonames.org/ontology#S.UNIV", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1250, "fields": {"name": "Vortrag", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1251, "fields": {"name": "Vorlesung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1252, "fields": {"name": "Vortrag/Vorlesung von", "description": "", "parent_class": null, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1253, "fields": {"name": "Vorlesung", "description": "", "parent_class": 1367, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1254, "fields": {"name": "Vortrag", "description": "", "parent_class": 1367, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1256, "fields": {"name": "ist Arbeitskraft bei", "description": "", "parent_class": null, "status": "can", "vocab_name": 21}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1257, "fields": {"name": "http://www.geonames.org/ontology#L.RGNE", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1259, "fields": {"name": "Musiktheoretiker/Musiktheoretikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1261, "fields": {"name": "Dr. jur./Dr.in jur.", "description": "", "parent_class": null, "status": "can", "vocab_name": 22}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1263, "fields": {"name": "Literaturkritiker/Literaturkritikerin", "description": "", "parent_class": 100, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1264, "fields": {"name": "Agrarwissenschaftler/Agrarwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1265, "fields": {"name": "Geschäftsmann/Geschäftsfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1267, "fields": {"name": "Agitator/Agitatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1269, "fields": {"name": "Leitender Angestellter/Leitende Angestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1270, "fields": {"name": "Inseratenagent/Inseratenagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1271, "fields": {"name": "Sozialdemokrat/Sozialdemokratin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1272, "fields": {"name": "Staatskommissar/Staatskommissarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1273, "fields": {"name": "Staatssekretär/Staatssekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1274, "fields": {"name": "Obstbautechniker/Obstbautechnikerin", "description": "", "parent_class": 429, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1275, "fields": {"name": "Lyriker/Lyrikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1276, "fields": {"name": "Satiriker/Satirikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1278, "fields": {"name": "http://www.geonames.org/ontology#A.PCLD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1279, "fields": {"name": "Erzähler/Erzählerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1280, "fields": {"name": "Naturphilosoph/Naturphilosophin", "description": "", "parent_class": 154, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1281, "fields": {"name": "Aristokrat/Aristokratin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1282, "fields": {"name": "Volksschullehrer/Volksschullehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1283, "fields": {"name": "Anzeigenakquireur/Anzeigenakquireuse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1284, "fields": {"name": "http://www.geonames.org/ontology#L.RGN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1285, "fields": {"name": "http://www.geonames.org/ontology#A.ADM3H", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1286, "fields": {"name": "Koptologe/Koptologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1289, "fields": {"name": "Kulturkritiker/Kulturkritikerin", "description": "", "parent_class": 100, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1290, "fields": {"name": "Senator/Senatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1292, "fields": {"name": "Filmkritiker/Filmkritikerin", "description": "", "parent_class": 100, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1293, "fields": {"name": "Filmpädagoge/Filmpädagogin", "description": "", "parent_class": 294, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1294, "fields": {"name": "deportiert nach", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1297, "fields": {"name": "http://www.geonames.org/ontology#A.PCLH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1298, "fields": {"name": "http://www.geonames.org/ontology#A.ADMD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1299, "fields": {"name": "Landtagsabgeordneter/Landtagsabgeordnete", "description": "", "parent_class": 95, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1300, "fields": {"name": "Bundeskanzler/Bundeskanzlerin", "description": "", "parent_class": 95, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1301, "fields": {"name": "Wirtschaftsjournalist/Wirtschaftsjournalistin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1303, "fields": {"name": "Polizeipräsident/Polizeipräsidentin", "description": "", "parent_class": 645, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1304, "fields": {"name": "Theaterregisseur/Theaterregisseurin", "description": "", "parent_class": 104, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1305, "fields": {"name": "Schäferdichter/Schäferdichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1306, "fields": {"name": "Militärschriftsteller/Militärschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1307, "fields": {"name": "Naturschützer/Naturschützerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1309, "fields": {"name": "ist Großneffe/Großnichte von", "description": "", "parent_class": 1110, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1310, "fields": {"name": "ist Großonkel/Großtante von", "description": "", "parent_class": 1110, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1311, "fields": {"name": "Großindustrieller/Großindustrielle", "description": "", "parent_class": 152, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1312, "fields": {"name": "Kommerzialrat/Kommerzialrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1315, "fields": {"name": "Sozialist/Sozialistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1316, "fields": {"name": "Autor/Autorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1317, "fields": {"name": "Lektor/Lektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1318, "fields": {"name": "Logiker/Logikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1319, "fields": {"name": "Sprachgelehrter/Sprachgelehrte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1320, "fields": {"name": "Attentäter/Attentäterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1321, "fields": {"name": "Hörspielregisseur/Hörspielregisseurin", "description": "", "parent_class": 104, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1322, "fields": {"name": "Hörspielsprecher/Hörspielsprecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1323, "fields": {"name": "Synchronsprecher/Synchronsprecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1324, "fields": {"name": "Soldat/Soldatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1327, "fields": {"name": "Geschichtsphilosoph/Geschichtsphilosophin", "description": "", "parent_class": 154, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1328, "fields": {"name": "Geistheiler/Geistheilerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1329, "fields": {"name": "Plakatkünstler/Plakatkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1330, "fields": {"name": "Schule", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1331, "fields": {"name": "Bürgermeister/Bürgermeisterin", "description": "", "parent_class": 95, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1332, "fields": {"name": "Schneiderei", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1333, "fields": {"name": "Sachbuch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1334, "fields": {"name": "Epigramm", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1335, "fields": {"name": "bekommt zugeschrieben", "description": "", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1336, "fields": {"name": "Posse", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1337, "fields": {"name": "Posse mit Gesang", "description": "", "parent_class": 1336, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1338, "fields": {"name": "ist Erscheinungsort von", "description": "", "parent_class": null, "status": "can", "vocab_name": 15}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1339, "fields": {"name": "Augenarzt/Augenärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1340, "fields": {"name": "Novelle", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1341, "fields": {"name": "Verehrer/Verehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1342, "fields": {"name": "Erzählsammlung", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1343, "fields": {"name": "Philosophische Abhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1344, "fields": {"name": "Interview", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1345, "fields": {"name": "Tabak- und Zigarettenhersteller", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1346, "fields": {"name": "Lexikon", "description": "", "parent_class": 1347, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1347, "fields": {"name": "Nachschlagewerk", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1348, "fields": {"name": "Wörterbuch", "description": "", "parent_class": 1347, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1349, "fields": {"name": "Kriminalroman", "description": "", "parent_class": 1060, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1350, "fields": {"name": "Dramenfragment", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1351, "fields": {"name": "veranstaltet", "description": "", "parent_class": null, "status": "can", "vocab_name": 23}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1352, "fields": {"name": "Notiz", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1353, "fields": {"name": "Produktionsgemeinschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1354, "fields": {"name": "Antiquitätenhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1355, "fields": {"name": "Schwimmbadeigentümer/Schwimmbadeigentümerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1356, "fields": {"name": "Tagebuch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1357, "fields": {"name": "Buchreihe", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1358, "fields": {"name": "Reiseführer", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1359, "fields": {"name": "Spedition", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1361, "fields": {"name": "Aufzeichnungen", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1362, "fields": {"name": "Gemischtwarenhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1363, "fields": {"name": "ist eine Übersetzung von", "description": "", "parent_class": 1133, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1364, "fields": {"name": "Galanteriewaren", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1365, "fields": {"name": "Stationsvorsteher/Stationsvorsteherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1366, "fields": {"name": "Papierhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1367, "fields": {"name": "Veranstaltung", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1369, "fields": {"name": "Veranstaltungsort von", "description": "", "parent_class": null, "status": "can", "vocab_name": 19}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1370, "fields": {"name": "teilgenommen an", "description": "", "parent_class": null, "status": "can", "vocab_name": 21}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1371, "fields": {"name": "wird rezensiert in", "description": "", "parent_class": null, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1372, "fields": {"name": "Eisenbahnstrecke", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1373, "fields": {"name": "Prosadichtung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1374, "fields": {"name": "Ort_Früherer_Name", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1375, "fields": {"name": "Krankenhaus", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1376, "fields": {"name": "Geschichtswerk", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1377, "fields": {"name": "Kolumne", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1378, "fields": {"name": "Werk_Arbeitstitel", "description": "", "parent_class": 3109, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1379, "fields": {"name": "Leuchtturmwärter/Leuchtturmwärterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1381, "fields": {"name": "Metzger/Metzgerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1382, "fields": {"name": "Pharmahersteller", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1383, "fields": {"name": "Bote/Botin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1384, "fields": {"name": "Protestschreiben", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1385, "fields": {"name": "in Bezug zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1386, "fields": {"name": "Zeitungsbericht", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1390, "fields": {"name": "Bierbrauer/Bierbrauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1391, "fields": {"name": "Handlungsreisender/Handlungsreisende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1392, "fields": {"name": "Glosse", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1393, "fields": {"name": "Zoodirektor/Zoodirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1394, "fields": {"name": "Marsch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1395, "fields": {"name": "Geschlossene Aufführung", "description": "", "parent_class": 1200, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1396, "fields": {"name": "Generalprobe", "description": "", "parent_class": 1413, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1397, "fields": {"name": "Fremdenführer/Fremdenführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1398, "fields": {"name": "geboren in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1399, "fields": {"name": "Tal (N.TAL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1400, "fields": {"name": "Naturwissenschaftler/Naturwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1403, "fields": {"name": "Privataufführung", "description": "", "parent_class": 1395, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1404, "fields": {"name": "Bildender Künstler/Bildende Künstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1405, "fields": {"name": "in beruflichem Bezug zu", "description": "", "parent_class": 1176, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1406, "fields": {"name": "Leitartikel", "description": "", "parent_class": 3114, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1407, "fields": {"name": "Feuilleton", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1408, "fields": {"name": "Opernzyklus", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1409, "fields": {"name": "besitzt", "description": "", "parent_class": null, "status": "can", "vocab_name": 13}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1410, "fields": {"name": "https://www.geonames.org/ontology#P.PPLA3", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1411, "fields": {"name": "https://www.geonames.org/ontology#A.PCLI", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1412, "fields": {"name": "https://www.geonames.org/ontology#P.PPL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1413, "fields": {"name": "Probe", "description": "", "parent_class": 1200, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1414, "fields": {"name": "Tierhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1415, "fields": {"name": "https://www.geonames.org/ontology#P.PPLA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1417, "fields": {"name": "Hilfsorganisation", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1418, "fields": {"name": "https://www.geonames.org/ontology#P.PPLC", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1419, "fields": {"name": "https://www.geonames.org/ontology#P.PPLA2", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1420, "fields": {"name": "Hochschule", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1421, "fields": {"name": "Nachruf", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1422, "fields": {"name": "Pelzhändler/Pelzhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1423, "fields": {"name": "Konzertsänger/Konzertsängerin", "description": "", "parent_class": 107, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1424, "fields": {"name": "ist Lehrer/Lehrerin von", "description": "", "parent_class": 1405, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1425, "fields": {"name": "Aktivist/Aktivistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1430, "fields": {"name": "Kolporteur/Kolporteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1432, "fields": {"name": "Handelsvertreter/Handelsvertreterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1433, "fields": {"name": "Kriegsberichterstatter/Kriegsberichterstatterin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1434, "fields": {"name": "https://www.geonames.org/ontology#A.ADM3", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1444, "fields": {"name": "Bankier/Bankierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1449, "fields": {"name": "Freimaurer/Freimaurerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1450, "fields": {"name": "Forschungsreisender/Forschungsreisende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1452, "fields": {"name": "Reiseschriftsteller/Reiseschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1458, "fields": {"name": "Tenor/", "description": "", "parent_class": 107, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1459, "fields": {"name": "Klavier- und Cembalobauer/Klavier- und Cembalobauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1468, "fields": {"name": "Violoncellist/Violoncellistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1472, "fields": {"name": "Beamter/Beamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1473, "fields": {"name": "Privatdozent/Privatdozentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1475, "fields": {"name": "Kunsthandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1476, "fields": {"name": "Umfrage", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1477, "fields": {"name": "Fragment", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1478, "fields": {"name": "Romanfragment", "description": "", "parent_class": 1477, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1479, "fields": {"name": "Oper", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1480, "fields": {"name": "https://www.geonames.org/ontology#A.ADM2", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1481, "fields": {"name": "https://www.geonames.org/ontology#A.PCLS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1482, "fields": {"name": "Ministerium", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1483, "fields": {"name": "https://www.geonames.org/ontology#P.PPLA4", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1484, "fields": {"name": "https://www.geonames.org/ontology#A.ADM1", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1485, "fields": {"name": "Strand (N.STR)", "description": "https://vocabs.hansi4ever/pmb/placetypes/N.STR", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1486, "fields": {"name": "Synagoge", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1487, "fields": {"name": "Eheschließung", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1493, "fields": {"name": "Bild", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1494, "fields": {"name": "Fechtkämpfer/Fechtkämpferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1495, "fields": {"name": "Ballett", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1497, "fields": {"name": "Kinderbuch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1498, "fields": {"name": "Aufruf", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1501, "fields": {"name": "Literarhistoriker/Literarhistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1503, "fields": {"name": "Theaterwissenschaftler/Theaterwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1504, "fields": {"name": "Papier- und Farbenunternehmen", "description": "", "parent_class": 3458, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1506, "fields": {"name": "Drucker/Druckerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1510, "fields": {"name": "geboren in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1513, "fields": {"name": "https://www.geonames.org/ontology#A.ADMD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1516, "fields": {"name": "ist Teil von", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1517, "fields": {"name": "enthält", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1519, "fields": {"name": "https://www.geonames.org/ontology#P.PPLX", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1521, "fields": {"name": "Unveröffentlichtes Musikwerk", "description": "", "parent_class": 1211, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1523, "fields": {"name": "ist Halbgeschwister von", "description": "", "parent_class": 1110, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1525, "fields": {"name": "Todesanzeige", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1527, "fields": {"name": "Probe", "description": "", "parent_class": 1201, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1528, "fields": {"name": "Generalprobe", "description": "", "parent_class": 1527, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1529, "fields": {"name": "Vorlesung im privaten Kreis", "description": "", "parent_class": 1253, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1530, "fields": {"name": "ist Schüler/Schülerin von", "description": "", "parent_class": 1405, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1531, "fields": {"name": "Satire", "description": "", "parent_class": 1155, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1532, "fields": {"name": "https://www.geonames.org/ontology#T.VAL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1533, "fields": {"name": "https://www.geonames.org/ontology#A.PCLD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1534, "fields": {"name": "unterstützt", "description": "", "parent_class": null, "status": "can", "vocab_name": 13}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1535, "fields": {"name": "Librettist/Librettistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1537, "fields": {"name": "Fernsprechamt", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1538, "fields": {"name": "Postamt", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1540, "fields": {"name": "Nobelpreisträger/Nobelpreisträgerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1542, "fields": {"name": "Konzertdirektion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1543, "fields": {"name": "Fahrzeugbauunternehmen", "description": "", "parent_class": 3458, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1544, "fields": {"name": "Kinobetreiber/Kinobetreiberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1548, "fields": {"name": "Plastik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1549, "fields": {"name": "enthält", "description": "", "parent_class": null, "status": "can", "vocab_name": 15}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1553, "fields": {"name": "hat illustriert", "description": "", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1554, "fields": {"name": "Epos", "description": "", "parent_class": 1155, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1555, "fields": {"name": "https://www.geonames.org/ontology#L.RGN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1556, "fields": {"name": "Mosaizist/Mosaizistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1557, "fields": {"name": "Baron/Baronin", "description": "", "parent_class": null, "status": "can", "vocab_name": 22}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1558, "fields": {"name": "Graf/Gräfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 22}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1559, "fields": {"name": "König/Königin", "description": "", "parent_class": null, "status": "can", "vocab_name": 22}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1560, "fields": {"name": "Sir/Lady", "description": "", "parent_class": null, "status": "can", "vocab_name": 22}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1561, "fields": {"name": "Konzert", "description": "", "parent_class": 1367, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1562, "fields": {"name": "Klassischer Philologe/Klassische Philologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1564, "fields": {"name": "Leseprobe", "description": "", "parent_class": 1413, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1572, "fields": {"name": "https://www.geonames.org/ontology#S.ANS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1573, "fields": {"name": "https://www.geonames.org/ontology#L.CONT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1574, "fields": {"name": "https://www.geonames.org/ontology#A.ADM4H", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1575, "fields": {"name": "https://www.geonames.org/ontology#S.MSTY", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1576, "fields": {"name": "https://www.geonames.org/ontology#T.ISL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1577, "fields": {"name": "https://www.geonames.org/ontology#H.STM", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1579, "fields": {"name": "https://www.geonames.org/ontology#S.HSE", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1580, "fields": {"name": "https://www.geonames.org/ontology#A.ADM4", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1581, "fields": {"name": "https://www.geonames.org/ontology#S.CSTL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1584, "fields": {"name": "Pfleger/Pflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1585, "fields": {"name": "https://www.geonames.org/ontology#A.PCL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1586, "fields": {"name": "https://www.geonames.org/ontology#S.FRM", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1587, "fields": {"name": "hat unter einem Kürzel veröffentlicht", "description": "", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1588, "fields": {"name": "Rennstallbesitzer/Rennstallbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1590, "fields": {"name": "Gesetz", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1591, "fields": {"name": "Schriftführer/Schriftführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1593, "fields": {"name": "https://www.geonames.org/ontology#T.ISLS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1597, "fields": {"name": "Kunstführer", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1598, "fields": {"name": "Fresko", "description": "", "parent_class": 1493, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1599, "fields": {"name": "Statue", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1601, "fields": {"name": "Turnlehrer/Turnlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1602, "fields": {"name": "Stukkateur/Stukkateurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1603, "fields": {"name": "Kupferstich", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1604, "fields": {"name": "Reiseunternehmen", "description": "", "parent_class": 3458, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1605, "fields": {"name": "Reederei", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1606, "fields": {"name": "https://www.geonames.org/ontology#T.VLC", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1607, "fields": {"name": "https://www.geonames.org/ontology#A.PCLIX", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1608, "fields": {"name": "https://www.geonames.org/ontology#T.CAPE", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1609, "fields": {"name": "Papierfabrikant/Papierfabrikantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1610, "fields": {"name": "Streichquartett", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1611, "fields": {"name": "Badeanstalt", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1612, "fields": {"name": "Spa/Sauna", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1613, "fields": {"name": "Aquarell", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1618, "fields": {"name": "https://www.geonames.org/ontology#H.LK", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1619, "fields": {"name": "Klavierspieler/Klavierspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1620, "fields": {"name": "https://www.geonames.org/ontology#T.MTS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1621, "fields": {"name": "https://www.geonames.org/ontology#T.PK", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1622, "fields": {"name": "Parodie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1623, "fields": {"name": "https://www.geonames.org/ontology#T.MT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1624, "fields": {"name": "Hotel", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1625, "fields": {"name": "Lokal", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1626, "fields": {"name": "https://www.geonames.org/ontology#H.OCN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1627, "fields": {"name": "Getreidegesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1628, "fields": {"name": "Gesellschaftsdirektor/Gesellschaftsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1629, "fields": {"name": "Kanzlei", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1630, "fields": {"name": "Café", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1631, "fields": {"name": "Restaurant", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1634, "fields": {"name": "Lebensmittelhandlung", "description": "", "parent_class": 990, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1635, "fields": {"name": "Käsehandlung", "description": "", "parent_class": 1634, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1636, "fields": {"name": "Erhebung", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1637, "fields": {"name": "Geistliche Gesänge", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1639, "fields": {"name": "Jurist/Juristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1640, "fields": {"name": "Gesetzeskommentar", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1642, "fields": {"name": "Aktiengesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1644, "fields": {"name": "https://www.geonames.org/ontology#A.TERR", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1645, "fields": {"name": "https://www.geonames.org/ontology#L.RGNH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1646, "fields": {"name": "https://www.geonames.org/ontology#S.RUIN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1647, "fields": {"name": "Programmheft", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1648, "fields": {"name": "Filmstudio", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1650, "fields": {"name": "Chorleiter/Chorleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1654, "fields": {"name": "Arrangeur/Arrangeurin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1657, "fields": {"name": "geboren in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1658, "fields": {"name": "Hochschullehrer/Hochschullehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1660, "fields": {"name": "Physiologe/Physiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1661, "fields": {"name": "Pathologe/Pathologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1664, "fields": {"name": "Plakatierungsgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1665, "fields": {"name": "Urkundsbeamter/Urkundsbeamtin", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1666, "fields": {"name": "Sinfonie", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1668, "fields": {"name": "https://www.geonames.org/ontology#L.LCTY", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1669, "fields": {"name": "Tontechnikproduktionsfirma", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1670, "fields": {"name": "Fluggesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1671, "fields": {"name": "Musiklabel", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1676, "fields": {"name": "Wissenschaftliches Werk", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1677, "fields": {"name": "Wissenschaftlicher Aufsatz", "description": "", "parent_class": 1676, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1678, "fields": {"name": "Abschlussarbeit", "description": "", "parent_class": 1676, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1679, "fields": {"name": "Schlachter/Schlachterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1680, "fields": {"name": "Essay", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1681, "fields": {"name": "Essaysammlung", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1683, "fields": {"name": "Kanzleiangestellter/Kanzleiangestellte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1688, "fields": {"name": "Verserzählung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1690, "fields": {"name": "Fakultät", "description": "", "parent_class": 1032, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1692, "fields": {"name": "Arzt/Ärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1693, "fields": {"name": "Justitiar/Justitiarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1695, "fields": {"name": "Festival", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1700, "fields": {"name": "Presseagentur", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1708, "fields": {"name": "Zeitungsredakteur/Zeitungsredakteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1714, "fields": {"name": "Festspiel", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1717, "fields": {"name": "Kommentar", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1719, "fields": {"name": "https://www.geonames.org/ontology#P.PPLL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1720, "fields": {"name": "https://www.geonames.org/ontology#P.PPLH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1721, "fields": {"name": "https://www.geonames.org/ontology#P.PPLG", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1722, "fields": {"name": "https://www.geonames.org/ontology#S.EST", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1723, "fields": {"name": "Parlament", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1724, "fields": {"name": "https://www.geonames.org/ontology#S.RSTN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1725, "fields": {"name": "https://www.geonames.org/ontology#T.PT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1726, "fields": {"name": "Botschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1727, "fields": {"name": "https://www.geonames.org/ontology#S.SQR", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1728, "fields": {"name": "https://www.geonames.org/ontology#L.PRK", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1729, "fields": {"name": "https://www.geonames.org/ontology#T.HLL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1739, "fields": {"name": "Essayist/Essayistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1744, "fields": {"name": "Bürgerwehr", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1746, "fields": {"name": "Sternwarte", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1748, "fields": {"name": "Filmarchitekt/Filmarchitektin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1766, "fields": {"name": "Monatszeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1772, "fields": {"name": "Testament", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1773, "fields": {"name": "Ballspende", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1774, "fields": {"name": "Komödiant/Komödiantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1777, "fields": {"name": "Umweltschutzverein", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1778, "fields": {"name": "Internierungslager", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1779, "fields": {"name": "Rätsel", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1786, "fields": {"name": "Rezensent/Rezensentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1789, "fields": {"name": "Festschrift", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1790, "fields": {"name": "Dramenzyklus", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1791, "fields": {"name": "Briefe", "description": "", "parent_class": 1834, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1792, "fields": {"name": "Erinnerungen", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1793, "fields": {"name": "Kritiken", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1794, "fields": {"name": "Dokumentation", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1795, "fields": {"name": "Vaudeville", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1796, "fields": {"name": "Märchen", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1797, "fields": {"name": "Revue", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1798, "fields": {"name": "Rede", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1799, "fields": {"name": "Reportage", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1800, "fields": {"name": "Lehrbuch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1801, "fields": {"name": "Libretto", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1802, "fields": {"name": "Anthologie", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1803, "fields": {"name": "Gespräche", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1804, "fields": {"name": "Monografie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1805, "fields": {"name": "Skizze", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1806, "fields": {"name": "Puppenspiel", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1807, "fields": {"name": "Skizzen", "description": "", "parent_class": 1805, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1808, "fields": {"name": "Werkzyklus", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1809, "fields": {"name": "Polemik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1810, "fields": {"name": "Oratorium", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1811, "fields": {"name": "Dramatisierung", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1812, "fields": {"name": "Romanzyklus", "description": "", "parent_class": 1808, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1816, "fields": {"name": "Dramensammlung", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1834, "fields": {"name": "Brief", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1835, "fields": {"name": "Öffentlicher Brief", "description": "", "parent_class": 1834, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1837, "fields": {"name": "Spengler/Spenglerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1838, "fields": {"name": "Staatsanwaltlicher Kommissar/Staatsanwaltliche Kommissarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1839, "fields": {"name": "Filmregisseur/Filmregisseurin", "description": "", "parent_class": 104, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1866, "fields": {"name": "Kunsthistoriker/Kunsthistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1870, "fields": {"name": "Chansonnier/Chansonette", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1878, "fields": {"name": "Hilfsarbeiter/Hilfsarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1879, "fields": {"name": "Lehrling/Lehrling", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1881, "fields": {"name": "https://www.geonames.org/ontology#H.SD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1882, "fields": {"name": "Petition", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1883, "fields": {"name": "Biograf/Biografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1884, "fields": {"name": "übersetzt als", "description": "", "parent_class": 1185, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1886, "fields": {"name": "Bergarbeiter/Bergarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1887, "fields": {"name": "Elektrotechniker/Elektrotechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1888, "fields": {"name": "Gouverneur/Gouverneurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1889, "fields": {"name": "Verwaltungsbeamter/Verwaltungsbeamte", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1890, "fields": {"name": "Kinderbuchautor/Kinderbuchautorin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1891, "fields": {"name": "Kriminalist/Kriminalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1892, "fields": {"name": "Volkswirt/Volkswirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1893, "fields": {"name": "Rektor/Rektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1894, "fields": {"name": "Universitätslehrer/Universitätslehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1895, "fields": {"name": "Parapsychologe/Parapsychologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1896, "fields": {"name": "Okkultist/Okkultistin", "description": "", "parent_class": 1895, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1897, "fields": {"name": "Redner/Rednerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1899, "fields": {"name": "https://www.geonames.org/ontology#L.AREA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1900, "fields": {"name": "vielleicht geboren in", "description": "", "parent_class": 88, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1901, "fields": {"name": "vielleicht gestorben in", "description": "", "parent_class": 89, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1918, "fields": {"name": "Telefonist/Telefonistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1926, "fields": {"name": "Nachtkritik", "description": "", "parent_class": 1927, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1927, "fields": {"name": "Theaterkritik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1928, "fields": {"name": "https://www.geonames.org/ontology#S.PAL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1941, "fields": {"name": "Textilfabrik", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1953, "fields": {"name": "Verlagsalmanach", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1954, "fields": {"name": "Apotheke", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1982, "fields": {"name": "Unveröffentlichte Erzählung", "description": "", "parent_class": 1211, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1986, "fields": {"name": "Vereinstreffen", "description": "", "parent_class": 1987, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1987, "fields": {"name": "Zusammenkunft", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1988, "fields": {"name": "Duell", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1996, "fields": {"name": "Kasino", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1998, "fields": {"name": "Verwertungsgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2001, "fields": {"name": "https://www.geonames.org/ontology#R.RD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2002, "fields": {"name": "Antisemitisches Pamphlet", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2011, "fields": {"name": "https://www.geonames.org/ontology#S.HTL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2012, "fields": {"name": "https://www.geonames.org/ontology#H.GLCR", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2013, "fields": {"name": "https://www.geonames.org/ontology#T.PASS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2014, "fields": {"name": "https://www.geonames.org/ontology#S.FT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2015, "fields": {"name": "https://www.geonames.org/ontology#H.BAY", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2016, "fields": {"name": "https://www.geonames.org/ontology#A.ADM2H", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2017, "fields": {"name": "https://www.geonames.org/ontology#H.CAPG", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2018, "fields": {"name": "https://www.geonames.org/ontology#S.GHSE", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2019, "fields": {"name": "https://www.geonames.org/ontology#A.ADM3H", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2020, "fields": {"name": "https://www.geonames.org/ontology#A.PCLH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2021, "fields": {"name": "https://www.geonames.org/ontology#S.BDG", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2022, "fields": {"name": "https://www.geonames.org/ontology#S.SPA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2023, "fields": {"name": "https://www.geonames.org/ontology#T.PEN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2024, "fields": {"name": "https://www.geonames.org/ontology#S.HUT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2025, "fields": {"name": "https://www.geonames.org/ontology#S.GDN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2026, "fields": {"name": "https://www.geonames.org/ontology#H.STRT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2027, "fields": {"name": "https://www.geonames.org/ontology#T.SPUR", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2028, "fields": {"name": "https://www.geonames.org/ontology#H.CNL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2029, "fields": {"name": "https://www.geonames.org/ontology#S.MUS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2030, "fields": {"name": "https://www.geonames.org/ontology#R.ST", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2031, "fields": {"name": "https://www.geonames.org/ontology#S.BUSTP", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2032, "fields": {"name": "https://www.geonames.org/ontology#H.STMA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2033, "fields": {"name": "https://www.geonames.org/ontology#H.CNLN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2034, "fields": {"name": "https://www.geonames.org/ontology#T.SLP", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2035, "fields": {"name": "https://www.geonames.org/ontology#H.FJD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2036, "fields": {"name": "https://www.geonames.org/ontology#T.GRGE", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2037, "fields": {"name": "https://www.geonames.org/ontology#R.PRMN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2038, "fields": {"name": "https://www.geonames.org/ontology#S.ZOO", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2039, "fields": {"name": "https://www.geonames.org/ontology#T.CLF", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2040, "fields": {"name": "https://www.geonames.org/ontology#L.CST", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2041, "fields": {"name": "https://www.geonames.org/ontology#T.ISLET", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2042, "fields": {"name": "https://www.geonames.org/ontology#H.PNDS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2043, "fields": {"name": "https://www.geonames.org/ontology#T.PLN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2044, "fields": {"name": "https://www.geonames.org/ontology#S.TOWR", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2045, "fields": {"name": "https://www.geonames.org/ontology#H.SEA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2046, "fields": {"name": "https://www.geonames.org/ontology#S.ARCH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2047, "fields": {"name": "https://www.geonames.org/ontology#T.DSRT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2048, "fields": {"name": "https://www.geonames.org/ontology#S.CH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2049, "fields": {"name": "https://www.geonames.org/ontology#L.AMUS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2050, "fields": {"name": "https://www.geonames.org/ontology#H.GULF", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2051, "fields": {"name": "https://www.geonames.org/ontology#T.RK", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2052, "fields": {"name": "https://www.geonames.org/ontology#S.RSTP", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2053, "fields": {"name": "https://www.geonames.org/ontology#H.RVN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2054, "fields": {"name": "https://www.geonames.org/ontology#H.STMI", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2057, "fields": {"name": "Plakat", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2058, "fields": {"name": "Parlamentskammer", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2059, "fields": {"name": "Sammelrezension", "description": "", "parent_class": 1131, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2063, "fields": {"name": "Sportpreis", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2072, "fields": {"name": "Börse", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2073, "fields": {"name": "Ausstellungskatalog", "description": "", "parent_class": 1086, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2078, "fields": {"name": "Gerichtsurteil", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2079, "fields": {"name": "Replik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2085, "fields": {"name": "https://www.geonames.org/ontology#S.RLG", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2088, "fields": {"name": "Politiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2090, "fields": {"name": "Offizier/Offizierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2098, "fields": {"name": "Journalist/Journalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2099, "fields": {"name": "Geheimagent/Geheimagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2100, "fields": {"name": "Politikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2101, "fields": {"name": "Gewerkschaftsmitglied/Gewerkschaftsmitglied", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2102, "fields": {"name": "Arbeiter/Arbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2105, "fields": {"name": "Abgeordneter/Abgeordnete", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2107, "fields": {"name": "Oberbürgermeister/Oberbürgermeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2109, "fields": {"name": "Regierungschef/Regierungschefin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2110, "fields": {"name": "Sportler/Sportlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2112, "fields": {"name": "Sportlehrer/Sportlehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2118, "fields": {"name": "Operndirektor/Operndirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2119, "fields": {"name": "Intendant/Intendantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2120, "fields": {"name": "Boxer/Boxerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2124, "fields": {"name": "Kolonialbeamter/Kolonialbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2125, "fields": {"name": "Generalleutnant/Generalleutnantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2126, "fields": {"name": "Gauleiter/Gauleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2129, "fields": {"name": "Steuerberater/Steuerberaterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2130, "fields": {"name": "Beglaubigungsschreiber/Beglaubigungsschreiberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2134, "fields": {"name": "Schriftsteller/Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2137, "fields": {"name": "Sopranist/Sopranistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2138, "fields": {"name": "Innenminister/Innenministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2139, "fields": {"name": "Schlosser/Schlosserin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2140, "fields": {"name": "Funktionär/Funktionärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2150, "fields": {"name": "Wirtschaftswissenschaftler/Wirtschaftswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2154, "fields": {"name": "Baptist/Baptistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2156, "fields": {"name": "Bergmann/Bergfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2159, "fields": {"name": "Regierungsrat/Regierungsrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2160, "fields": {"name": "Kommunalpolitiker/Kommunalpolitikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2162, "fields": {"name": "Scharfrichter/Scharfrichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2163, "fields": {"name": "Generaloberst/Generaloberstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2165, "fields": {"name": "Nationalsozialist/Nationalsozialistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2167, "fields": {"name": "Heimatschriftsteller/Heimatschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2169, "fields": {"name": "Leutnant/Leutnantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2176, "fields": {"name": "Rundfunkintendant/Rundfunkintendantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2177, "fields": {"name": "Ministerialdirektor/Ministerialdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2180, "fields": {"name": "Musikschriftsteller/Musikschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2182, "fields": {"name": "Agrarpolitiker/Agrarpolitikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2184, "fields": {"name": "Botschafter/Botschafterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2186, "fields": {"name": "Widerstandskämpfer/Widerstandskämpferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2187, "fields": {"name": "Bauingenieur/Bauingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2194, "fields": {"name": "Jagdflieger/Jagdfliegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2195, "fields": {"name": "Hauptmann/Hauptfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2197, "fields": {"name": "Komiker/Komikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2199, "fields": {"name": "Herstellungsleiter/Herstellungsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2204, "fields": {"name": "Diplomlandwirt/Diplomlandwirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2205, "fields": {"name": "Fahnenjunker/Fahnenjunkerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2207, "fields": {"name": "Evangelischer Theologe/Evangelische Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2217, "fields": {"name": "Schriftsteller/Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2221, "fields": {"name": "Verwaltungsjurist/Verwaltungsjuristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2222, "fields": {"name": "Kirchenhistoriker/Kirchenhistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2224, "fields": {"name": "Militärattaché/Militärattachée", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2225, "fields": {"name": "Dompteur/Dompteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2230, "fields": {"name": "Lagerkommandant/Lagerkommandantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2231, "fields": {"name": "Liederdichter/Liederdichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2232, "fields": {"name": "General/Generalin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2234, "fields": {"name": "Konsul/Konsulin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2237, "fields": {"name": "Althistoriker/Althistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2239, "fields": {"name": "Kaufmannsgehilfe/Kaufmannsgehilfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2242, "fields": {"name": "Inquisitor/Inquisitorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2246, "fields": {"name": "Journalist/Journalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2250, "fields": {"name": "Katholischer Theologe/Katholische Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2251, "fields": {"name": "Klempner/Klempnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2253, "fields": {"name": "wohnhaft in", "description": "", "parent_class": 1181, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2254, "fields": {"name": "Handwerker/Handwerkerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2261, "fields": {"name": "Opernsänger/Opernsängerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2264, "fields": {"name": "Speläologe/Speläologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2267, "fields": {"name": "Prähistoriker/Prähistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2270, "fields": {"name": "Genetiker/Genetikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2271, "fields": {"name": "Musiklehrer/Musiklehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2279, "fields": {"name": "Selbstständiger/Selbstständige", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2281, "fields": {"name": "Außenminister/Außenministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2284, "fields": {"name": "Bildnismaler/Bildnismalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2286, "fields": {"name": "Mundartschriftsteller/Mundartschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2289, "fields": {"name": "Aquarellmaler/Aquarellmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2290, "fields": {"name": "Landschaftsmaler/Landschaftsmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2291, "fields": {"name": "Sachbuchautor/Sachbuchautorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2292, "fields": {"name": "Politischer Flüchtling/Politischer Flüchtling", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2295, "fields": {"name": "Bergsteiger/Bergsteigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2297, "fields": {"name": "Hochadeliger/Hochadelige", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2298, "fields": {"name": "Geodät/Geodätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2304, "fields": {"name": "Heraldiker/Heraldikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2308, "fields": {"name": "Tierarzt/Tierärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2309, "fields": {"name": "Talmudist/Talmudistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2310, "fields": {"name": "Judaist/Judaistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2311, "fields": {"name": "Fluglehrer/Fluglehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2312, "fields": {"name": "Biochemiker/Biochemikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2313, "fields": {"name": "Hautarzt/Hautärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2317, "fields": {"name": "Designer/Designerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2318, "fields": {"name": "Heimatkundler/Heimatkundlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2319, "fields": {"name": "Schulinspektor/Schulinspektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2321, "fields": {"name": "Statistiker/Statistikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2325, "fields": {"name": "/Nonne", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2327, "fields": {"name": "Vizekanzler/Vizekanzlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2328, "fields": {"name": "Katholik/Katholikin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2337, "fields": {"name": "Freiherr/Freifrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2338, "fields": {"name": "Hals-Nasen-Ohren-Arzt/Hals-Nasen-Ohren-Ärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2339, "fields": {"name": "Numismatiker/Numismatikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2340, "fields": {"name": "Stabsoffizier/Stabsoffizierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2341, "fields": {"name": "Konstrukteur/Konstrukteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2343, "fields": {"name": "Vermessungstechniker/Vermessungstechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2345, "fields": {"name": "Maschinenbaumechaniker/Maschinenbaumechanikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2346, "fields": {"name": "Önologe/Önologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2347, "fields": {"name": "Afrikanist/Afrikanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2355, "fields": {"name": "Petrologe/Petrologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2357, "fields": {"name": "Gesangslehrer/Gesangslehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2358, "fields": {"name": "Radiologe/Radiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2359, "fields": {"name": "Seismologe/Seismologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2361, "fields": {"name": "Versicherungsmathematiker/Versicherungsmathematikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2365, "fields": {"name": "Baritonist/", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2368, "fields": {"name": "Luftfahrer/Luftfahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2369, "fields": {"name": "Heilpraktiker/Heilpraktikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2372, "fields": {"name": "Holzschnitzer/Holzschnitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2374, "fields": {"name": "Feminist/Feministin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2378, "fields": {"name": "Marineoffizier/Marineoffizierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2379, "fields": {"name": "Bibliotheksdirektor/Bibliotheksdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2381, "fields": {"name": "Pflanzenphysiologe/Pflanzenphysiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2384, "fields": {"name": "Skilehrer/Skilehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2385, "fields": {"name": "Rennfahrer/Rennfahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2386, "fields": {"name": "Oberleutnant/Oberleutnantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2388, "fields": {"name": "Flugzeugführer/Flugzeugführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2390, "fields": {"name": "Schachspieler/Schachspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2393, "fields": {"name": "Messerschmied/Messerschmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2394, "fields": {"name": "Generalfeldmarschall/Generalfeldmarschallin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2395, "fields": {"name": "Förster/Försterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2398, "fields": {"name": "Feldmarschall/Feldmarschallin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2401, "fields": {"name": "Genealoge/Genealogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2404, "fields": {"name": "Marinesoldat/Marinesoldatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2405, "fields": {"name": "Jockey/Jockey", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2406, "fields": {"name": "Atomphysiker/Atomphysikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2409, "fields": {"name": "Klimatologe/Klimatologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2411, "fields": {"name": "Phytopathologe/Phytopathologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2412, "fields": {"name": "Hofrat/Hofrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2414, "fields": {"name": "Sozialwissenschaftler/Sozialwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2419, "fields": {"name": "Denkmalpfleger/Denkmalpflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2421, "fields": {"name": "Forstwissenschaftler/Forstwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2424, "fields": {"name": "Mechaniker/Mechanikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2426, "fields": {"name": "Abt/Äbtissin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2427, "fields": {"name": "Stenograf/Stenografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2432, "fields": {"name": "Entomologe/Entomologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2433, "fields": {"name": "Generalmajor/Generalmajorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2434, "fields": {"name": "Ägyptologe/Ägyptologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2436, "fields": {"name": "Romancier/Romancière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2438, "fields": {"name": "Alttestamentler/Alttestamentlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2439, "fields": {"name": "Exeget/Exegetin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2440, "fields": {"name": "Epigraphiker/Epigraphikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2441, "fields": {"name": "Metallarbeiter/Metallarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2442, "fields": {"name": "Kunsthandwerker/Kunsthandwerkerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2443, "fields": {"name": "Kunstschmied/Kunstschmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2444, "fields": {"name": "Skandinavist/Skandinavistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2445, "fields": {"name": "Geiger/Geigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2446, "fields": {"name": "Bautechniker/Bautechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2448, "fields": {"name": "Politologe/Politologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2449, "fields": {"name": "Marxist/Marxistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2450, "fields": {"name": "Vikar/Vikarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2455, "fields": {"name": "Bibliothekswissenschaftler/Bibliothekswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2458, "fields": {"name": "Lepidopterologe/Lepidopterologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2459, "fields": {"name": "Leibarzt/Leibärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2460, "fields": {"name": "Dozent/Dozentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2464, "fields": {"name": "Finanzminister/Finanzministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2465, "fields": {"name": "Endokrinologe/Endokrinologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2466, "fields": {"name": "Musikinstrumentenbauer/Musikinstrumentenbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2467, "fields": {"name": "Geigenbauer/Geigenbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2470, "fields": {"name": "Kinderarzt/Kinderärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2478, "fields": {"name": "Prosaist/Prosaistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2480, "fields": {"name": "Konservator/Konservatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2481, "fields": {"name": "Sozialreformer/Sozialreformerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2482, "fields": {"name": "Realschullehrer/Realschullehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2483, "fields": {"name": "Wirtschaftsjurist/Wirtschaftsjuristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2484, "fields": {"name": "Experte/Expertin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2486, "fields": {"name": "Orchestermusiker/Orchestermusikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2488, "fields": {"name": "Bergingenieur/Bergingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2496, "fields": {"name": "Ritter/Dame", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2497, "fields": {"name": "Bassist/Bassistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2502, "fields": {"name": "Philatelist/Philatelistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2504, "fields": {"name": "Charakterdarsteller/Charakterdarstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2505, "fields": {"name": "Feinoptiker/Feinoptikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2506, "fields": {"name": "Bundesrichter/Bundesrichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2507, "fields": {"name": "Toningenieur/Toningenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2508, "fields": {"name": "Lebensmittelchemiker/Lebensmittelchemikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2509, "fields": {"name": "Mikrobiologe/Mikrobiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2510, "fields": {"name": "Sportpädagoge/Sportpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2511, "fields": {"name": "Meteorologe/Meteorologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2513, "fields": {"name": "Versicherungsfachmann/Versicherungsfachfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2515, "fields": {"name": "Notar", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2517, "fields": {"name": "Fußballspieler/Fußballspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2518, "fields": {"name": "Ruderer/Rudererin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2519, "fields": {"name": "Trainer/Trainerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2521, "fields": {"name": "Stadtplaner/Stadtplanerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2522, "fields": {"name": "Semitist/Semitistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2523, "fields": {"name": "Islamwissenschaftler/Islamwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2524, "fields": {"name": "Gutsherr/Gutsherrin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2526, "fields": {"name": "Orgelbauer/Orgelbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2527, "fields": {"name": "Jäger/Jägerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2528, "fields": {"name": "Mesner/Mesnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2529, "fields": {"name": "Kirchenmaler/Kirchenmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2534, "fields": {"name": "Steinbildhauer/Steinbildhauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2535, "fields": {"name": "Autorenlesung", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2536, "fields": {"name": "Holzbildhauer/Holzbildhauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2537, "fields": {"name": "Kinderpfleger/Kinderpflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2540, "fields": {"name": "Vermessungsingenieur/Vermessungsingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2542, "fields": {"name": "Meereskundler/Meereskundlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2543, "fields": {"name": "Bergführer/Bergführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2544, "fields": {"name": "Kletterer/Klettererin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2547, "fields": {"name": "Glockengießer/Glockengießerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2550, "fields": {"name": "Maschinenbauingenieur/Maschinenbauingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2551, "fields": {"name": "Algologe/Algologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2552, "fields": {"name": "Krippenschnitzer/Krippenschnitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2553, "fields": {"name": "Wissenschaftshistoriker/Wissenschaftshistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2554, "fields": {"name": "Rechtsmediziner/Rechtsmedizinerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2557, "fields": {"name": "Kanoniker/Kanonikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2558, "fields": {"name": "Religionswissenschaftler/Religionswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2559, "fields": {"name": "Gräzist/Gräzistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2560, "fields": {"name": "Konzertmeister/Konzertmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2561, "fields": {"name": "Filmschaffender/Filmschaffende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2564, "fields": {"name": "Geowissenschaftler/Geowissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2565, "fields": {"name": "Kanonist/Kanonistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2566, "fields": {"name": "Neutestamentler/Neutestamentlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2567, "fields": {"name": "Statiker/Statikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2570, "fields": {"name": "Songwriter/Songwriterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2571, "fields": {"name": "Großunternehmer/Großunternehmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2572, "fields": {"name": "Großadmiral/Großadmiralin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2575, "fields": {"name": "Tiermaler/Tiermalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2578, "fields": {"name": "Oberst/Oberstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2579, "fields": {"name": "Patriot/Patriotin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2580, "fields": {"name": "Sozialarbeiter/Sozialarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2584, "fields": {"name": "Generalvikar/Generalvikarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2586, "fields": {"name": "Bischofsvikar/Bischofsvikarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2587, "fields": {"name": "Religionspädagoge/Religionspädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2588, "fields": {"name": "Staatswissenschaftler/Staatswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2589, "fields": {"name": "Hofkapellmeister/Hofkapellmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2592, "fields": {"name": "Bibliophiler/Bibliophile", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2598, "fields": {"name": "Bassbaritonist/Bassbaritonistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2599, "fields": {"name": "Erwachsenenbildner/Erwachsenenbildnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2600, "fields": {"name": "Moraltheologe/Moraltheologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2601, "fields": {"name": "Schulrat/Schulrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2603, "fields": {"name": "Herpetologe/Herpetologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2604, "fields": {"name": "Pastoraltheologe/Pastoraltheologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2605, "fields": {"name": "Seelsorger/Seelsorgerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2606, "fields": {"name": "Vorstandsmitglied/Vorstandsmitglied", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2608, "fields": {"name": "Verwaltungsrat/Verwaltungsrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2609, "fields": {"name": "Generalstaatsanwalt/Generalstaatsanwältin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2610, "fields": {"name": "Mykologe/Mykologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2611, "fields": {"name": "Kupferschmied/Kupferschmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2612, "fields": {"name": "Kriminologe/Kriminologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2614, "fields": {"name": "Jugendbuchautor/Jugendbuchautorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2615, "fields": {"name": "Romanschriftsteller/Romanschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2618, "fields": {"name": "Eisschnellläufer/Eisschnellläuferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2620, "fields": {"name": "Feinmechaniker/Feinmechanikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2622, "fields": {"name": "Musikethnologe/Musikethnologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2623, "fields": {"name": "Militärwissenschaftler/Militärwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2624, "fields": {"name": "Altist/Altistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2626, "fields": {"name": "Glasmaler/Glasmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2629, "fields": {"name": "Feldmarschall-Leutnant/Feldmarschall-Leutnantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2630, "fields": {"name": "Imker/Imkerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2631, "fields": {"name": "Kontrabassist/Kontrabassistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2633, "fields": {"name": "Statthalter/Statthalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2635, "fields": {"name": "Wasserbauer/Wasserbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2637, "fields": {"name": "Steinmetz/Steinmetzin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2638, "fields": {"name": "Bauer/Bäuerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2639, "fields": {"name": "Miniaturist/Miniaturistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2640, "fields": {"name": "Albanologe/Albanologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2641, "fields": {"name": "Domkapitular/Domkapitularin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2642, "fields": {"name": "Skiläufer/Skiläuferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2643, "fields": {"name": "Altertumswissenschaftler/Altertumswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2645, "fields": {"name": "Staatsrechtslehrer/Staatsrechtslehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2646, "fields": {"name": "Indogermanist/Indogermanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2647, "fields": {"name": "Agrikulturchemiker/Agrikulturchemikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2649, "fields": {"name": "Mediävist/Mediävistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2651, "fields": {"name": "Kriegsmaler/Kriegsmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2652, "fields": {"name": "Generalmusikdirektor/Generalmusikdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2654, "fields": {"name": "Spion/Spionin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2655, "fields": {"name": "Fernsehredakteur/Fernsehredakteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2657, "fields": {"name": "Feuerwehrmann/Feuerwehrfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2658, "fields": {"name": "Facharzt/Fachärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2661, "fields": {"name": "Präparator/Präparatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2665, "fields": {"name": "Harfenist/Harfenistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2667, "fields": {"name": "Oberstleutnant/Oberstleutnantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2668, "fields": {"name": "Berufsberater/Berufsberaterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2669, "fields": {"name": "Religionsphilosoph/Religionsphilosophin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2670, "fields": {"name": "Hebraist/Hebraistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2672, "fields": {"name": "Theatertechniker/Theatertechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2673, "fields": {"name": "Weihbischof/Weihbischöfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2677, "fields": {"name": "Geophysiker/Geophysikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2678, "fields": {"name": "Wirt/Wirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2679, "fields": {"name": "Partisan/Partisanin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2680, "fields": {"name": "Hirt/Hirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2684, "fields": {"name": "Radsportler/Radsportlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2686, "fields": {"name": "Ziseleur/Ziseleurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2687, "fields": {"name": "Reitlehrer/Reitlehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2688, "fields": {"name": "Ordensbruder/Ordensschwester", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2689, "fields": {"name": "Orgellehrer/Orgellehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2690, "fields": {"name": "Graveur/Graveurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2692, "fields": {"name": "Superintendent/Superintendentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2694, "fields": {"name": "Militärbeamter/Militärbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2696, "fields": {"name": "Zollbeamter/Zollbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2698, "fields": {"name": "Laienbruder/", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2699, "fields": {"name": "Volksmusiker/Volksmusikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2700, "fields": {"name": "Militärgeistlicher/Militärgeistliche", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2701, "fields": {"name": "Ausbilder/Ausbilderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2702, "fields": {"name": "Stifter/Stifterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2703, "fields": {"name": "Puppenspieler/Puppenspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2704, "fields": {"name": "Volkssänger/Volkssängerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2705, "fields": {"name": "Zitherspieler/Zitherspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2710, "fields": {"name": "Kirchenmusiker/Kirchenmusikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2711, "fields": {"name": "Archivdirektor/Archivdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2713, "fields": {"name": "Mezzosopranist/Mezzosopranistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2716, "fields": {"name": "Regierungspräsident/Regierungspräsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2717, "fields": {"name": "Kulturanthropologe/Kulturanthropologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2719, "fields": {"name": "Amtsarzt/Amtsärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2720, "fields": {"name": "Elektroingenieur/Elektroingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2721, "fields": {"name": "Hydrobiologe/Hydrobiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2722, "fields": {"name": "Flieger/Fliegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2723, "fields": {"name": "Oberbergrat/Oberbergrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2725, "fields": {"name": "Gartenarchitekt/Gartenarchitektin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2727, "fields": {"name": "Paläograf/Paläografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2728, "fields": {"name": "Forstwirt/Forstwirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2729, "fields": {"name": "Sinologe/Sinologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2730, "fields": {"name": "Brauer und Mälzer/Brauerin und Mälzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2732, "fields": {"name": "Verwaltungswissenschaftler/Verwaltungswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2734, "fields": {"name": "Turkologe/Turkologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2736, "fields": {"name": "Technischer Zeichner/Technische Zeichnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2737, "fields": {"name": "Pomologe/Pomologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2738, "fields": {"name": "Hausmann/Hausfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2739, "fields": {"name": "Schriftkünstler/Schriftkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2740, "fields": {"name": "Finnougrist/Finnougristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2741, "fields": {"name": "Auslandskorrespondent/Auslandskorrespondentin", "description": "", "parent_class": 686, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2743, "fields": {"name": "Generaloberer/Generaloberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2744, "fields": {"name": "Sagenforscher/Sagenforscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2745, "fields": {"name": "Histologe/Histologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2747, "fields": {"name": "Betriebswirt/Betriebswirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2748, "fields": {"name": "Weltgeistlicher/Weltgeistliche", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2750, "fields": {"name": "Dialektologe/Dialektologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2752, "fields": {"name": "Blechblasinstrumentenbauer/Blechblasinstrumentenbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2753, "fields": {"name": "Esperantist/Esperantistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2755, "fields": {"name": "Propst/Pröpstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2759, "fields": {"name": "Badearzt/Badeärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2760, "fields": {"name": "Kantor/Kantorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2761, "fields": {"name": "Werkstoffwissenschaftler/Werkstoffwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2762, "fields": {"name": "Buchsachverständiger/Buchsachverständigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2763, "fields": {"name": "Kirchenschriftsteller/Kirchenschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2766, "fields": {"name": "Buchkünstler/Buchkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2768, "fields": {"name": "Militärmusiker/Militärmusikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2769, "fields": {"name": "Medizinhistoriker/Medizinhistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2770, "fields": {"name": "Praktischer Arzt/Praktische Ärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2772, "fields": {"name": "Pfadfinder/Pfadfinderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2773, "fields": {"name": "Sachverständiger/Sachverständigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2774, "fields": {"name": "Metropolit/Metropolitin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2776, "fields": {"name": "Bildungspolitiker/Bildungspolitikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2778, "fields": {"name": "Mathematiklehrer/Mathematiklehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2779, "fields": {"name": "Eisenbahner/Eisenbahnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2781, "fields": {"name": "Winzer/Winzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2782, "fields": {"name": "Gesandter/Gesandte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2785, "fields": {"name": "Ban/Bane", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2787, "fields": {"name": "Katechet/Katechetin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2789, "fields": {"name": "Buchbinder/Buchbinderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2794, "fields": {"name": "Koleopterologe/Koleopterologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2795, "fields": {"name": "Topograf/Topografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2796, "fields": {"name": "Stempelmacher/Stempelmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2797, "fields": {"name": "Schwimmer/Schwimmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2798, "fields": {"name": "Grafikdesigner/Grafikdesignerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2799, "fields": {"name": "Anwalt/Anwältin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2800, "fields": {"name": "Schiffbauer/Schiffbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2801, "fields": {"name": "Kampfflieger/Kampffliegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2803, "fields": {"name": "Wissenschaftsjournalist/Wissenschaftsjournalistin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2804, "fields": {"name": "Tierzüchter/Tierzüchterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2805, "fields": {"name": "Sportwissenschaftler/Sportwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2806, "fields": {"name": "Bergbauer/Bergbäuerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2807, "fields": {"name": "Ethiker/Ethikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2808, "fields": {"name": "Katholischer Religionslehrer/Katholische Religionslehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2812, "fields": {"name": "Genossenschaftsmitglied/Genossenschaftsmitglied", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2814, "fields": {"name": "Folklorist/Folkloristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2815, "fields": {"name": "Reiter/Reiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2816, "fields": {"name": "Forstamtsleiter/Forstamtsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2817, "fields": {"name": "Papyrologe/Papyrologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2821, "fields": {"name": "Reisender/Reisende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2823, "fields": {"name": "Kommunist/Kommunistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2824, "fields": {"name": "Politisch Verfolgter/Politisch Verfolgte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2825, "fields": {"name": "Ringer/Ringerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2827, "fields": {"name": "Weber/Weberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2829, "fields": {"name": "Textiltechniker/Textiltechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2830, "fields": {"name": "Agraringenieur/Agraringenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2831, "fields": {"name": "Iranist/Iranistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2833, "fields": {"name": "Kriegsdienstverweigerer/Kriegsdienstverweigererin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2835, "fields": {"name": "Opernregisseur/Opernregisseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2836, "fields": {"name": "Generalgouverneur/Generalgouverneurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2840, "fields": {"name": "Varietékünstler/Varietékünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2842, "fields": {"name": "Instrumentenbauer/Instrumentenbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2843, "fields": {"name": "Tierpfleger/Tierpflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2844, "fields": {"name": "Marschall/Marschallin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2845, "fields": {"name": "Ingenieur Luft- und Raumfahrttechnik/Ingenieurin Luft- und\n Raumfahrttechnik", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2847, "fields": {"name": "Turnwart/Turnwartin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2848, "fields": {"name": "Jongleur/Jongleurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2850, "fields": {"name": "Dompropst/Dompropstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2852, "fields": {"name": "Novizenmeister/Novizenmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2853, "fields": {"name": "Hutmacher/Hutmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2854, "fields": {"name": "Jugendpfleger/Jugendpflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2855, "fields": {"name": "Radfahrer/Radfahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2856, "fields": {"name": "Gerechter unter den Völkern/Gerechte unter den Völkernin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2857, "fields": {"name": "Ehrenamtlicher Richter/Ehrenamtliche Richterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2859, "fields": {"name": "Sensenhändler/Sensenhändlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2860, "fields": {"name": "Börsenhändler/Börsenhändlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2861, "fields": {"name": "Motorradfahrer/Motorradfahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2862, "fields": {"name": "Gewerbetreibender/Gewerbetreibende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2865, "fields": {"name": "Versicherungsfachangestellter/Versicherungsfachangestellte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2867, "fields": {"name": "Forstarbeiter/Forstarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2869, "fields": {"name": "Silberschmied/Silberschmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2871, "fields": {"name": "Geheimer Rat/Geheime Rätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2872, "fields": {"name": "Verteidigungsminister/Verteidigungsministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2876, "fields": {"name": "Drechsler/Drechslerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2877, "fields": {"name": "Landeshauptmann/Landeshauptfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2878, "fields": {"name": "Major/Majorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2879, "fields": {"name": "Stadtrat/Stadträtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2880, "fields": {"name": "Wirtschaftshistoriker/Wirtschaftshistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2884, "fields": {"name": "Führungskraft/Führungskraft", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2886, "fields": {"name": "Landesamtsdirektor/Landesamtsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2887, "fields": {"name": "Betriebsleiter/Betriebsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2888, "fields": {"name": "Färber/Färberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2889, "fields": {"name": "Impresario/", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2891, "fields": {"name": "Antiquar/Antiquarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2894, "fields": {"name": "Kommerzienrat/Kommerzienrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2895, "fields": {"name": "Arabist/Arabistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2896, "fields": {"name": "Violinlehrer/Violinlehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2897, "fields": {"name": "Japanologe/Japanologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2898, "fields": {"name": "Parteimitglied/Parteimitglied", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2899, "fields": {"name": "Meeresbiologe/Meeresbiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2900, "fields": {"name": "Maurer/Maurerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2901, "fields": {"name": "Obmann/Obfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2902, "fields": {"name": "Medium/Medium", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2904, "fields": {"name": "Konteradmiral/Konteradmiralin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2905, "fields": {"name": "Schiffsarzt/Schiffsärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2907, "fields": {"name": "Stadtratsmitglied/Stadtratsmitglied", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2908, "fields": {"name": "Limnologe/Limnologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2909, "fields": {"name": "Uhrmacher/Uhrmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2910, "fields": {"name": "Altorientalist/Altorientalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2911, "fields": {"name": "Wahrsager/Wahrsagerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2912, "fields": {"name": "Hellseher/Hellseherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2913, "fields": {"name": "Patristiker/Patristikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2914, "fields": {"name": "Domprediger/Dompredigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2918, "fields": {"name": "Radio- und Fernsehtechniker/Radio- und Fernsehtechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2920, "fields": {"name": "Kriminalbeamter/Kriminalbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2921, "fields": {"name": "Studienrat/Studienrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2922, "fields": {"name": "Fischwirt/Fischwirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2924, "fields": {"name": "Automobilmechaniker/Automobilmechanikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2925, "fields": {"name": "Akkordeonist/Akkordeonistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2926, "fields": {"name": "Papiermacher/Papiermacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2927, "fields": {"name": "Demograph/Demographin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2928, "fields": {"name": "Comiczeichner/Comiczeichnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2929, "fields": {"name": "Großmeister/Großmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2930, "fields": {"name": "Justizminister/Justizministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2931, "fields": {"name": "Sonderpädagoge/Sonderpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2934, "fields": {"name": "Hämatologe/Hämatologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2935, "fields": {"name": "Animator/Animatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2937, "fields": {"name": "Venerologe/Venerologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2938, "fields": {"name": "Betriebsarzt/Betriebsärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2939, "fields": {"name": "Möbeltischler/Möbeltischlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2940, "fields": {"name": "Holzarbeiter/Holzarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2942, "fields": {"name": "Geräteturner/Geräteturnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2943, "fields": {"name": "Agrarbiologe/Agrarbiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2944, "fields": {"name": "Sektionsleiter/Sektionsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2946, "fields": {"name": "Orthodoxer Theologe/Orthodoxe Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2953, "fields": {"name": "Arbeiterführer/Arbeiterführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2955, "fields": {"name": "Musikalienhändler/Musikalienhändlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2956, "fields": {"name": "Druckgrafiker/Druckgrafikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2958, "fields": {"name": "Feldherr/Feldherrin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2959, "fields": {"name": "Alchemist/Alchemistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2960, "fields": {"name": "Sozialpädagoge/Sozialpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2961, "fields": {"name": "Seemann/Seefrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2967, "fields": {"name": "Parteivorsitzender/Parteivorsitzende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2968, "fields": {"name": "Militärhistoriker/Militärhistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2972, "fields": {"name": "Staatspräsident/Staatspräsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2974, "fields": {"name": "Kirchenlieddichter/Kirchenlieddichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2975, "fields": {"name": "Sheriff/Sheriffin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2976, "fields": {"name": "Humanist/Humanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2977, "fields": {"name": "Staatsrat/Staatsrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2978, "fields": {"name": "Generalkonsul/Generalkonsulin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2979, "fields": {"name": "Unterstaatssekretär/Unterstaatssekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2981, "fields": {"name": "Bundesminister/Bundesministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2982, "fields": {"name": "Staatsminister/Staatsministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2983, "fields": {"name": "Domdekan/Domdekanin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2984, "fields": {"name": "Epidemiologe/Epidemiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2987, "fields": {"name": "Reichsstatthalter/Reichsstatthalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2989, "fields": {"name": "Sprecher/Sprecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2991, "fields": {"name": "Kriminalschriftsteller/Kriminalschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2992, "fields": {"name": "Therapeut/Therapeutin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2993, "fields": {"name": "Mineraliensammler/Mineraliensammlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2994, "fields": {"name": "Standesherr/", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2996, "fields": {"name": "Selbstverleger/Selbstverlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2997, "fields": {"name": "Philanthrop/Philanthropin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2999, "fields": {"name": "Diktator/Diktatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3000, "fields": {"name": "Anglikanischer Theologe/Anglikanische Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3003, "fields": {"name": "Sattler/Sattlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3004, "fields": {"name": "Ratsherr/Ratsherrin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3006, "fields": {"name": "Theaterdichter/Theaterdichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3009, "fields": {"name": "Landgerichtsdirektor/Landgerichtsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3011, "fields": {"name": "Vergolder/Vergolderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3012, "fields": {"name": "Homöopath/Homöopathin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3014, "fields": {"name": "Fürstbischof/Fürstbischöfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3015, "fields": {"name": "Lutherischer Theologe/Lutherische Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3017, "fields": {"name": "Textilingenieur/Textilingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3018, "fields": {"name": "Hofprediger/Hofpredigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3019, "fields": {"name": "Laientheologe/Laientheologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3021, "fields": {"name": "Kirchenlehrer/Kirchenlehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3022, "fields": {"name": "Reichstagsabgeordneter/Reichstagsabgeordnete", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3026, "fields": {"name": "Landarbeiter/Landarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3028, "fields": {"name": "Diakon/Diakonin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3029, "fields": {"name": "Konrektor/Konrektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3031, "fields": {"name": "Dreher/Dreherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3034, "fields": {"name": "Produzent/Produzentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3035, "fields": {"name": "Buchgestalter/Buchgestalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3036, "fields": {"name": "Rat/Rätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3037, "fields": {"name": "Herrscher/Herrscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3039, "fields": {"name": "Böttcher/Böttcherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3040, "fields": {"name": "Astrologe/Astrologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3041, "fields": {"name": "Prinzregent/Prinzregentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3045, "fields": {"name": "Glaskünstler/Glaskünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3047, "fields": {"name": "Kurtisane/Kurtisanin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3049, "fields": {"name": "Kulturpolitiker/Kulturpolitikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3054, "fields": {"name": "Prokurator/Prokuratorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3055, "fields": {"name": "Nuntius/Nuntius", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3056, "fields": {"name": "Produktionsleiter/Produktionsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3057, "fields": {"name": "Kirchenfürst/Kirchenfürstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3058, "fields": {"name": "Amtsrichter/Amtsrichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3059, "fields": {"name": "Moderator/Moderatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3060, "fields": {"name": "Jakobiner/Jakobinerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3061, "fields": {"name": "Päpstlicher Legat/Päpstliche Legatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3063, "fields": {"name": "Tierschützer/Tierschützerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3064, "fields": {"name": "Nationalheld/Nationalheldin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3065, "fields": {"name": "Augenoptiker/Augenoptikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3066, "fields": {"name": "Oberbaurat/Oberbaurätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3067, "fields": {"name": "Theosoph/Theosophin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3068, "fields": {"name": "Regierungsbeamter/Regierungsbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3069, "fields": {"name": "Grammatiker/Grammatikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3071, "fields": {"name": "Landrat/Landrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3072, "fields": {"name": "Marinemaler/Marinemalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3073, "fields": {"name": "Adjutant/Adjutantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3074, "fields": {"name": "Fischhändler/Fischhändlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3075, "fields": {"name": "Oberbefehlshaber/Oberbefehlshaberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3078, "fields": {"name": "Korbmacher/Korbmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3080, "fields": {"name": "Pietist/Pietistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3081, "fields": {"name": "Heilkundiger/Heilkundige", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3082, "fields": {"name": "Kraftfahrzeugingenieur/Kraftfahrzeugingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3085, "fields": {"name": "Gitarrist/Gitarristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3086, "fields": {"name": "Kämmerer/Kämmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3087, "fields": {"name": "Exilschriftsteller/Exilschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3088, "fields": {"name": "Bildjournalist/Bildjournalistin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3089, "fields": {"name": "Laienprediger/Laienpredigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3090, "fields": {"name": "Generalsekretär/Generalsekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3091, "fields": {"name": "Reeder/Reederin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3093, "fields": {"name": "Kriegsteilnehmer/Kriegsteilnehmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3094, "fields": {"name": "Kammerdiener/Kammerdienerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3096, "fields": {"name": "Milliardär/Milliardärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3097, "fields": {"name": "Angler/Anglerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3098, "fields": {"name": "Kalligraph/Kalligraphin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3099, "fields": {"name": "Porzellanmaler/Porzellanmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3100, "fields": {"name": "/Mätresse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3106, "fields": {"name": "wird erwähnt in", "description": "", "parent_class": 1048, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3107, "fields": {"name": "wird hauptsächlich behandelt in", "description": "", "parent_class": 3106, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3108, "fields": {"name": "X_Zum-Löschen-markiert", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3109, "fields": {"name": "Werk_Namensvariante", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3110, "fields": {"name": "Person_Namensvariante_Nachname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3111, "fields": {"name": "Ort_Namensvariante", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3112, "fields": {"name": "Institution_Namensvariante", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3113, "fields": {"name": "Feuilletonreihe", "description": "", "parent_class": 1407, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3114, "fields": {"name": "Artikel", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3115, "fields": {"name": "Rubrik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3116, "fields": {"name": "Arzt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3117, "fields": {"name": "Bakteriologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3118, "fields": {"name": "Schiff", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3119, "fields": {"name": "https://www.geonames.org/ontology#H.ESTY", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3120, "fields": {"name": "Journalist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3121, "fields": {"name": "Opernsänger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3122, "fields": {"name": "Opernregisseur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3123, "fields": {"name": "Schauspieler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3124, "fields": {"name": "Theaterintendant", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3125, "fields": {"name": "Hochschullehrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3126, "fields": {"name": "Architekt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3127, "fields": {"name": "Bibliothekar", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3128, "fields": {"name": "Volkskundler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3129, "fields": {"name": "Historiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3130, "fields": {"name": "Schriftsteller/Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3131, "fields": {"name": "Kunsthistoriker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3132, "fields": {"name": "Volkswirt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3133, "fields": {"name": "Unternehmer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3134, "fields": {"name": "Wirtschaftswissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3135, "fields": {"name": "Redakteur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3136, "fields": {"name": "Übersetzer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3137, "fields": {"name": "Theaterkritiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3138, "fields": {"name": "Gerichtsassessor/Gerichtsassessorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3139, "fields": {"name": "Rechtsanwalt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3140, "fields": {"name": "Abgeordneter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3141, "fields": {"name": "Künstler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3142, "fields": {"name": "Maler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3143, "fields": {"name": "Zeichner", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3144, "fields": {"name": "Bildhauer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3145, "fields": {"name": "Illustrator", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3146, "fields": {"name": "Karikaturist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3147, "fields": {"name": "Kaiserlicher Rat/Kaiserliche Rätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3148, "fields": {"name": "Verleger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3149, "fields": {"name": "Buchhändler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3150, "fields": {"name": "Musiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3151, "fields": {"name": "Librettist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3152, "fields": {"name": "Kämmerer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3153, "fields": {"name": "Bankier", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3154, "fields": {"name": "Gutsherr", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3155, "fields": {"name": "Geologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3156, "fields": {"name": "Jurist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3157, "fields": {"name": "Mäzen", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3158, "fields": {"name": "Regisseur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3159, "fields": {"name": "Dramaturg", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3160, "fields": {"name": "Grafiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3161, "fields": {"name": "Pädagoge", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3162, "fields": {"name": "Autor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3163, "fields": {"name": "Drehbuchautor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3164, "fields": {"name": "Fotograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3165, "fields": {"name": "Drehbuchautorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3166, "fields": {"name": "Filmschauspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3167, "fields": {"name": "Schauspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3168, "fields": {"name": "Musikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3169, "fields": {"name": "Sängerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3170, "fields": {"name": "Pfarrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3171, "fields": {"name": "Biologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3172, "fields": {"name": "Juniorprofessur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3173, "fields": {"name": "Sonderpädagogik", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3174, "fields": {"name": "Filmschauspieler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3175, "fields": {"name": "Sprecher", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3176, "fields": {"name": "Antiquar", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3177, "fields": {"name": "Produktionsleiter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3178, "fields": {"name": "Filmproduzent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3179, "fields": {"name": "Pianistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3180, "fields": {"name": "Pathologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3181, "fields": {"name": "Filmregisseur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3182, "fields": {"name": "Schriftsteller/Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3183, "fields": {"name": "Regisseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3184, "fields": {"name": "Dramaturgin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3185, "fields": {"name": "Offizier", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3186, "fields": {"name": "Bariton ", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3187, "fields": {"name": "Sänger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3188, "fields": {"name": "Chemiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3189, "fields": {"name": "Paläograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3190, "fields": {"name": "Mediävist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3191, "fields": {"name": "Theaterregisseur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3192, "fields": {"name": "Produzent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3193, "fields": {"name": "Flugzeugführer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3194, "fields": {"name": "Tanzwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3195, "fields": {"name": "Hochschullehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3196, "fields": {"name": "Amerikanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3197, "fields": {"name": "Tänzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3198, "fields": {"name": "Filmeditor/Filmeditorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3199, "fields": {"name": "Dozent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3200, "fields": {"name": "Germanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3201, "fields": {"name": "Germanist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3202, "fields": {"name": "Literaturwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3203, "fields": {"name": "Komponist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3204, "fields": {"name": "Philologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3205, "fields": {"name": "Generalkonsul", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3206, "fields": {"name": "Privatdozent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3207, "fields": {"name": "Medienwissenschaftler/Medienwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3208, "fields": {"name": "Kameramann", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3209, "fields": {"name": "Diplomat", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3210, "fields": {"name": "Kritiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3211, "fields": {"name": "Literaturkritiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3212, "fields": {"name": "Historikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3213, "fields": {"name": "Tänzer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3214, "fields": {"name": "Librettistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3215, "fields": {"name": "Soziologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3216, "fields": {"name": "Kriminologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3217, "fields": {"name": "Sammler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3218, "fields": {"name": "Übersetzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3219, "fields": {"name": "Publizist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3220, "fields": {"name": "Filmproduzentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3221, "fields": {"name": "Bergsteiger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3222, "fields": {"name": "Hauptmann", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3223, "fields": {"name": "Museumsdirektor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3224, "fields": {"name": "Heraldiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3225, "fields": {"name": "Archäologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3226, "fields": {"name": "Geheimer Rat", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3227, "fields": {"name": "Dramatiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3228, "fields": {"name": "Romancier", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3229, "fields": {"name": "Konservator", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3230, "fields": {"name": "Organist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3231, "fields": {"name": "Schauspiellehrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3232, "fields": {"name": "Theaterdirektor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3233, "fields": {"name": "Funktionär", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3234, "fields": {"name": "Jugendbuchautorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3235, "fields": {"name": "Tanzlehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3236, "fields": {"name": "Ärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3237, "fields": {"name": "Kolumnistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3238, "fields": {"name": "Komikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3239, "fields": {"name": "Chorleiter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3240, "fields": {"name": "Musikwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3241, "fields": {"name": "Liederdichter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3242, "fields": {"name": "Produzentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3243, "fields": {"name": "Literarische Agentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3244, "fields": {"name": "Maskenbildner", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3245, "fields": {"name": "Glaskünstler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3246, "fields": {"name": "Zionist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3247, "fields": {"name": "Jazzmusiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3248, "fields": {"name": "Animator ", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3249, "fields": {"name": "Sportler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3250, "fields": {"name": "Pädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3251, "fields": {"name": "Conferencier", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3252, "fields": {"name": "Produktionsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3253, "fields": {"name": "Beamter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3254, "fields": {"name": "Choreograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3255, "fields": {"name": "Sachbuchautor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3256, "fields": {"name": "Synchronsprecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3257, "fields": {"name": "Installationskünstler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3258, "fields": {"name": "Objektkünstler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3259, "fields": {"name": "Rockmusiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3260, "fields": {"name": "Lyriker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3261, "fields": {"name": "Literaturwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3262, "fields": {"name": "Chansonnière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3263, "fields": {"name": "Anglist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3264, "fields": {"name": "Amerikanist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3265, "fields": {"name": "Aufnahmeleiter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3266, "fields": {"name": "Reiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3267, "fields": {"name": "Psychotherapeut", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3268, "fields": {"name": "Dirigent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3269, "fields": {"name": "Kunstsammler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3270, "fields": {"name": "Mathematiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3271, "fields": {"name": "Physiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3272, "fields": {"name": "Sportlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3273, "fields": {"name": "Schwimmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3274, "fields": {"name": "Komiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3275, "fields": {"name": "Biograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3276, "fields": {"name": "Marineoffizier", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3277, "fields": {"name": "Kartograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3278, "fields": {"name": "Ingenieur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3279, "fields": {"name": "Medienpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3280, "fields": {"name": "Kunsthistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3281, "fields": {"name": "Journalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3282, "fields": {"name": "Romanist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3283, "fields": {"name": "Richter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3284, "fields": {"name": "Heimatkundler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3285, "fields": {"name": "Stenograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3286, "fields": {"name": "Fremdsprachenlehrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3287, "fields": {"name": "Psychologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3288, "fields": {"name": "Künstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3289, "fields": {"name": "Führungskraft", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3290, "fields": {"name": "Operndirektor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3291, "fields": {"name": "Kaufmann", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3292, "fields": {"name": "Theologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3293, "fields": {"name": "Vizepräsident", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3294, "fields": {"name": "Lehrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3295, "fields": {"name": "Fotografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3296, "fields": {"name": "Pfarrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3297, "fields": {"name": "Musicaldarsteller", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3298, "fields": {"name": "Stylist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3299, "fields": {"name": "Sopranistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3300, "fields": {"name": "Hofrat", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3301, "fields": {"name": "Linguistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3302, "fields": {"name": "Kommunikationswissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3303, "fields": {"name": "Musicaldarstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3304, "fields": {"name": "Filmwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3305, "fields": {"name": "Herausgeber", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3306, "fields": {"name": "Humorist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3307, "fields": {"name": "Apotheker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3308, "fields": {"name": "Drogist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3309, "fields": {"name": "Naturwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3310, "fields": {"name": "Clown", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3311, "fields": {"name": "Geistlicher", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3312, "fields": {"name": "Kinderbuchautor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3313, "fields": {"name": "Spion", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3314, "fields": {"name": "Kabarettist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3315, "fields": {"name": "Kabarettistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3316, "fields": {"name": "Soubrette", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3317, "fields": {"name": "Philosoph", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3318, "fields": {"name": "Überläufer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3319, "fields": {"name": "Slawist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3320, "fields": {"name": "Kunsthandwerkerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3321, "fields": {"name": "Sozialpädagoge", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3322, "fields": {"name": "Filmarchitekt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3323, "fields": {"name": "Tierarzt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3324, "fields": {"name": "Wissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3325, "fields": {"name": "Balletttänzer/Balletttänzerin", "description": "", "parent_class": 190, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3326, "fields": {"name": "Ingenieurin Biotechnologie", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3327, "fields": {"name": "Pharmazeutin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3328, "fields": {"name": "Grafikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3329, "fields": {"name": "Designerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3330, "fields": {"name": "Illustratorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3331, "fields": {"name": "Lyrikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3332, "fields": {"name": "Kunstkritikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3333, "fields": {"name": "Malerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3334, "fields": {"name": "Astrologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3335, "fields": {"name": "Wissenschaftshistoriker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3336, "fields": {"name": "Linguist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3337, "fields": {"name": "Mathematikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3338, "fields": {"name": "Lektor ", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3339, "fields": {"name": "Regieassistent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3340, "fields": {"name": "Betriebswirt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3341, "fields": {"name": "Gouverneur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3342, "fields": {"name": "Dramatikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3343, "fields": {"name": "Anthropologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3344, "fields": {"name": "Publizistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3345, "fields": {"name": "Sprecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3346, "fields": {"name": "Akrobat", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3347, "fields": {"name": "Heilpraktiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3348, "fields": {"name": "Theaterwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3349, "fields": {"name": "Choreografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3350, "fields": {"name": "Polizeibeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3351, "fields": {"name": "Ehefrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3352, "fields": {"name": "Kinderbuchautorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3353, "fields": {"name": "Designer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3354, "fields": {"name": "Grafikdesigner", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3355, "fields": {"name": "Missionar", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3356, "fields": {"name": "Filmregisseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3357, "fields": {"name": "Abt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3358, "fields": {"name": "Chronist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3359, "fields": {"name": "Staatsanwalt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3360, "fields": {"name": "Psychiater", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3361, "fields": {"name": "Psychologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3362, "fields": {"name": "Tenor ", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3363, "fields": {"name": "Bloggerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3364, "fields": {"name": "Influencerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3365, "fields": {"name": "Forschungsreisender", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3366, "fields": {"name": "Kapitän", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3367, "fields": {"name": "Bildhauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3368, "fields": {"name": "Filmschaffender", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3369, "fields": {"name": "Schachspieler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3370, "fields": {"name": "Großmeister ", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3371, "fields": {"name": "Arrangeur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3372, "fields": {"name": "Geiger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3373, "fields": {"name": "Botaniker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3374, "fields": {"name": "Songwriter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3375, "fields": {"name": "Drucker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3376, "fields": {"name": "Bläser", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3377, "fields": {"name": "Stadtpfeifer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3378, "fields": {"name": "Weibliche Filmschaffende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3379, "fields": {"name": "Jagdflieger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3380, "fields": {"name": "Heimatschriftsteller/Heimatschriftstellerin", "description": "", "parent_class": 2217, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3381, "fields": {"name": "Politologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3382, "fields": {"name": "Violoncellist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3383, "fields": {"name": "Informatiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3384, "fields": {"name": "Autorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3385, "fields": {"name": "Beleuchter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3386, "fields": {"name": "Biochemiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3387, "fields": {"name": "Bühnenbildner", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3388, "fields": {"name": "Synchronsprecher", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3389, "fields": {"name": "Verlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3390, "fields": {"name": "Halbmonatsschrift", "description": "", "parent_class": 1219, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3391, "fields": {"name": "Zweimonatsschrift", "description": "", "parent_class": 1219, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3392, "fields": {"name": "sk_preferred-name_surname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3393, "fields": {"name": "Person_Namensvariante_Vorname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3394, "fields": {"name": "sk_preferred-name_forename", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3395, "fields": {"name": "Editionswissenschaftler/Editionswissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3396, "fields": {"name": "Einzelne-Ausgabe", "description": "", "parent_class": 1220, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3397, "fields": {"name": "Einzelne-Ausgabe", "description": "", "parent_class": 3391, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3398, "fields": {"name": "Einzelne-Ausgabe", "description": "", "parent_class": 1221, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3399, "fields": {"name": "Einzelne-Ausgabe", "description": "", "parent_class": 3390, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3400, "fields": {"name": "Einzelne-Ausgabe", "description": "", "parent_class": 1222, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3401, "fields": {"name": "Anekdote", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3402, "fields": {"name": "ist biologisches Elternteil von", "description": "", "parent_class": 1109, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3403, "fields": {"name": "ist biologisches Kind von", "description": "", "parent_class": 1120, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3404, "fields": {"name": "Militär", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3405, "fields": {"name": "Rennstall", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3406, "fields": {"name": "Feministin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3407, "fields": {"name": "Musiklehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3408, "fields": {"name": "https://www.geonames.org/ontology#S.WALL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3409, "fields": {"name": "https://www.geonames.org/ontology#L.PRT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3410, "fields": {"name": "Oberlehrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3411, "fields": {"name": "Literarhistoriker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3412, "fields": {"name": "Bergbauunternehmer/Bergbauunternehmerin", "description": "", "parent_class": 913, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3413, "fields": {"name": "Beerdigung", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3414, "fields": {"name": "Versicherungsgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3415, "fields": {"name": "Lernender/Lernende an", "description": "", "parent_class": null, "status": "can", "vocab_name": 13}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3416, "fields": {"name": "/Anstandsdame", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3417, "fields": {"name": "Place of Birth", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3418, "fields": {"name": "Kulturwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3420, "fields": {"name": "Sonderheft", "description": "", "parent_class": 1218, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3421, "fields": {"name": "Schriftsteller", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3422, "fields": {"name": "Leutnant", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3423, "fields": {"name": "Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3424, "fields": {"name": "Nobelpreisträger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3425, "fields": {"name": "Pazifist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3426, "fields": {"name": "Humanist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3427, "fields": {"name": "Kunsterzieher", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3428, "fields": {"name": "Radierer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3429, "fields": {"name": "ist Vormund von", "description": "", "parent_class": null, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3430, "fields": {"name": "https://www.geonames.org/ontology#S.MNMT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3431, "fields": {"name": "https://www.geonames.org/ontology#S.TMPL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3432, "fields": {"name": "https://www.geonames.org/ontology#R.TRL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3433, "fields": {"name": "https://www.geonames.org/ontology#S.BLDG", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3434, "fields": {"name": "Staatswissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3435, "fields": {"name": "Bankett", "description": "", "parent_class": 1367, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3436, "fields": {"name": "Pantomime/Pantomimin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3437, "fields": {"name": "Pianist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3438, "fields": {"name": "Bordell", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3439, "fields": {"name": "vorangegangen", "description": "", "parent_class": null, "status": "can", "vocab_name": 33}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3440, "fields": {"name": "nachgefolgt", "description": "", "parent_class": null, "status": "can", "vocab_name": 33}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3441, "fields": {"name": "Klassischer Philologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3442, "fields": {"name": "Ordination", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3443, "fields": {"name": "Gerichtshof", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3444, "fields": {"name": "Novellette", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3445, "fields": {"name": "Kurzgeschichte", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3446, "fields": {"name": "erwähnt", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3447, "fields": {"name": "Gefängnis", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3448, "fields": {"name": "Judaist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3449, "fields": {"name": "Kunsthändler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3450, "fields": {"name": "Ministerpräsident/Ministerpräsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3451, "fields": {"name": "https://www.geonames.org/ontology#S.OPRA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3452, "fields": {"name": "https://www.geonames.org/ontology#T.BCH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3453, "fields": {"name": "Hoteldirektor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3454, "fields": {"name": "Stimmbildner/Stimmbildnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3455, "fields": {"name": "Opernsängerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3456, "fields": {"name": "Mezzosopranistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3457, "fields": {"name": "Gesangslehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3458, "fields": {"name": "Unternehmen", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3459, "fields": {"name": "ist Stiefgeschwister von", "description": "", "parent_class": 1110, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3460, "fields": {"name": "Briefroman", "description": "", "parent_class": 1060, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3461, "fields": {"name": "Literaturverfilmung", "description": "", "parent_class": 1066, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3462, "fields": {"name": "Musikdrama", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 88, "fields": {"vocabsbaseclass_ptr": 88, "name_reverse": "Geburtsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 89, "fields": {"vocabsbaseclass_ptr": 89, "name_reverse": "Sterbeort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 970, "fields": {"vocabsbaseclass_ptr": 970, "name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 971, "fields": {"vocabsbaseclass_ptr": 971, "name_reverse": "gehört zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1048, "fields": {"vocabsbaseclass_ptr": 1048, "name_reverse": "steht in Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1049, "fields": {"vocabsbaseclass_ptr": 1049, "name_reverse": "geschaffen von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1050, "fields": {"vocabsbaseclass_ptr": 1050, "name_reverse": "ohne Autornennung verfasst von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1051, "fields": {"vocabsbaseclass_ptr": 1051, "name_reverse": "unter Pseudonym veröffentlicht von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1052, "fields": {"vocabsbaseclass_ptr": 1052, "name_reverse": "übersetzt von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1053, "fields": {"vocabsbaseclass_ptr": 1053, "name_reverse": "herausgegeben von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1106, "fields": {"vocabsbaseclass_ptr": 1106, "name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1109, "fields": {"vocabsbaseclass_ptr": 1109, "name_reverse": "ist Kind von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1110, "fields": {"vocabsbaseclass_ptr": 1110, "name_reverse": "ist verwandt zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1111, "fields": {"vocabsbaseclass_ptr": 1111, "name_reverse": "ist Neffe/Nichte von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1112, "fields": {"vocabsbaseclass_ptr": 1112, "name_reverse": "ist Cousin/Cousine von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1113, "fields": {"vocabsbaseclass_ptr": 1113, "name_reverse": "ist adoptiertes Kind von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1114, "fields": {"vocabsbaseclass_ptr": 1114, "name_reverse": "in intimer Beziehung zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1115, "fields": {"vocabsbaseclass_ptr": 1115, "name_reverse": "ist verheiratet mit"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1116, "fields": {"vocabsbaseclass_ptr": 1116, "name_reverse": "ist Geschwister von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1117, "fields": {"vocabsbaseclass_ptr": 1117, "name_reverse": "ist Enkel von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1118, "fields": {"vocabsbaseclass_ptr": 1118, "name_reverse": "ist verschwägert mit"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1120, "fields": {"vocabsbaseclass_ptr": 1120, "name_reverse": "ist Elternteil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1121, "fields": {"vocabsbaseclass_ptr": 1121, "name_reverse": "ist Großelternteil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1122, "fields": {"vocabsbaseclass_ptr": 1122, "name_reverse": "ist adoptiertes Elternteil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1132, "fields": {"vocabsbaseclass_ptr": 1132, "name_reverse": "wird rezensiert in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1133, "fields": {"vocabsbaseclass_ptr": 1133, "name_reverse": "wurde bearbeitet als"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1136, "fields": {"vocabsbaseclass_ptr": 1136, "name_reverse": ""}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1138, "fields": {"vocabsbaseclass_ptr": 1138, "name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1139, "fields": {"vocabsbaseclass_ptr": 1139, "name_reverse": "enthalten in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1140, "fields": {"vocabsbaseclass_ptr": 1140, "name_reverse": "Arbeitsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1141, "fields": {"vocabsbaseclass_ptr": 1141, "name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1143, "fields": {"vocabsbaseclass_ptr": 1143, "name_reverse": "in Beziehung zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1144, "fields": {"vocabsbaseclass_ptr": 1144, "name_reverse": "ist mit Vorwort/Nachwort versehen von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1147, "fields": {"vocabsbaseclass_ptr": 1147, "name_reverse": "Geburtsort"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1148, "fields": {"vocabsbaseclass_ptr": 1148, "name_reverse": "Sterbeort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1150, "fields": {"vocabsbaseclass_ptr": 1150, "name_reverse": "im Eigentum von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1153, "fields": {"vocabsbaseclass_ptr": 1153, "name_reverse": "in Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1158, "fields": {"vocabsbaseclass_ptr": 1158, "name_reverse": "Vorgänger war"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1159, "fields": {"vocabsbaseclass_ptr": 1159, "name_reverse": "aufgegangen in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1160, "fields": {"vocabsbaseclass_ptr": 1160, "name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1161, "fields": {"vocabsbaseclass_ptr": 1161, "name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1162, "fields": {"vocabsbaseclass_ptr": 1162, "name_reverse": "enthalten in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1165, "fields": {"vocabsbaseclass_ptr": 1165, "name_reverse": "in Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1169, "fields": {"vocabsbaseclass_ptr": 1169, "name_reverse": "ist geschieden von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1170, "fields": {"vocabsbaseclass_ptr": 1170, "name_reverse": "hinterlässt durch Tod"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1171, "fields": {"vocabsbaseclass_ptr": 1171, "name_reverse": "ist durch Tod getrennt von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1173, "fields": {"vocabsbaseclass_ptr": 1173, "name_reverse": "ist Stiefelternteil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1174, "fields": {"vocabsbaseclass_ptr": 1174, "name_reverse": "ist Stiefkind von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1175, "fields": {"vocabsbaseclass_ptr": 1175, "name_reverse": "ist Onkel/Tante von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1176, "fields": {"vocabsbaseclass_ptr": 1176, "name_reverse": "im Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1177, "fields": {"vocabsbaseclass_ptr": 1177, "name_reverse": "Freundschaft"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1178, "fields": {"vocabsbaseclass_ptr": 1178, "name_reverse": "ist Arbeitgeber/Arbeitgeberin für"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1179, "fields": {"vocabsbaseclass_ptr": 1179, "name_reverse": "hat als Staatsangehörigen"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1181, "fields": {"vocabsbaseclass_ptr": 1181, "name_reverse": "war Aufenthaltsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1182, "fields": {"vocabsbaseclass_ptr": 1182, "name_reverse": "hat als Arbeitskraft"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1184, "fields": {"vocabsbaseclass_ptr": 1184, "name_reverse": "ist eine Rezension von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1185, "fields": {"vocabsbaseclass_ptr": 1185, "name_reverse": "ist eine Bearbeitung von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1186, "fields": {"vocabsbaseclass_ptr": 1186, "name_reverse": "arbeitet zusammen mit"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1187, "fields": {"vocabsbaseclass_ptr": 1187, "name_reverse": "enthält das Grab von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1189, "fields": {"vocabsbaseclass_ptr": 1189, "name_reverse": "ist eine spätere Fassung von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1190, "fields": {"vocabsbaseclass_ptr": 1190, "name_reverse": "ist eine frühere Fassung von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1192, "fields": {"vocabsbaseclass_ptr": 1192, "name_reverse": "in Relation zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1193, "fields": {"vocabsbaseclass_ptr": 1193, "name_reverse": "hatte am Spielplan"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1194, "fields": {"vocabsbaseclass_ptr": 1194, "name_reverse": "aufgeführt am"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1201, "fields": {"vocabsbaseclass_ptr": 1201, "name_reverse": "wurde aufgeführt"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1202, "fields": {"vocabsbaseclass_ptr": 1202, "name_reverse": "veranstaltet in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1204, "fields": {"vocabsbaseclass_ptr": 1204, "name_reverse": "hatte Uraufführung"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1206, "fields": {"vocabsbaseclass_ptr": 1206, "name_reverse": "hatte Premiere"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1217, "fields": {"vocabsbaseclass_ptr": 1217, "name_reverse": "vertont durch"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1224, "fields": {"vocabsbaseclass_ptr": 1224, "name_reverse": "enthält einen Beitrag von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1225, "fields": {"vocabsbaseclass_ptr": 1225, "name_reverse": "vorangegangen ist"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1233, "fields": {"vocabsbaseclass_ptr": 1233, "name_reverse": "fortgeführt als"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1237, "fields": {"vocabsbaseclass_ptr": 1237, "name_reverse": ""}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1244, "fields": {"vocabsbaseclass_ptr": 1244, "name_reverse": ""}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1247, "fields": {"vocabsbaseclass_ptr": 1247, "name_reverse": "arbeitet für"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1252, "fields": {"vocabsbaseclass_ptr": 1252, "name_reverse": "hatte Vortrag/Vorlesung"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1256, "fields": {"vocabsbaseclass_ptr": 1256, "name_reverse": "hat als Arbeitskraft"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1294, "fields": {"vocabsbaseclass_ptr": 1294, "name_reverse": "Deportationsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1309, "fields": {"vocabsbaseclass_ptr": 1309, "name_reverse": "ist Großonkel/Großtante von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1310, "fields": {"vocabsbaseclass_ptr": 1310, "name_reverse": "ist Großneffe/Großnichte von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1335, "fields": {"vocabsbaseclass_ptr": 1335, "name_reverse": "wird zugeschrieben an"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1338, "fields": {"vocabsbaseclass_ptr": 1338, "name_reverse": "erschienen in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1351, "fields": {"vocabsbaseclass_ptr": 1351, "name_reverse": "veranstaltet von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1363, "fields": {"vocabsbaseclass_ptr": 1363, "name_reverse": "übersetzt als"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1369, "fields": {"vocabsbaseclass_ptr": 1369, "name_reverse": "veranstaltet in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1370, "fields": {"vocabsbaseclass_ptr": 1370, "name_reverse": "hat als Teilnehmer:in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1371, "fields": {"vocabsbaseclass_ptr": 1371, "name_reverse": "rezensiert"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1385, "fields": {"vocabsbaseclass_ptr": 1385, "name_reverse": "in Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1398, "fields": {"vocabsbaseclass_ptr": 1398, "name_reverse": "Geburtsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1405, "fields": {"vocabsbaseclass_ptr": 1405, "name_reverse": "in beruflichem Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1409, "fields": {"vocabsbaseclass_ptr": 1409, "name_reverse": "steht im Eigentum von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1424, "fields": {"vocabsbaseclass_ptr": 1424, "name_reverse": "ist Schüler/Schülerin von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1510, "fields": {"vocabsbaseclass_ptr": 1510, "name_reverse": "Geburtsort"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1516, "fields": {"vocabsbaseclass_ptr": 1516, "name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1517, "fields": {"vocabsbaseclass_ptr": 1517, "name_reverse": "ist Teil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1523, "fields": {"vocabsbaseclass_ptr": 1523, "name_reverse": "ist Halbgeschwister von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1527, "fields": {"vocabsbaseclass_ptr": 1527, "name_reverse": "Probe"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1528, "fields": {"vocabsbaseclass_ptr": 1528, "name_reverse": "Generalprobe"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1530, "fields": {"vocabsbaseclass_ptr": 1530, "name_reverse": "ist Lehrer/Lehrerin von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1534, "fields": {"vocabsbaseclass_ptr": 1534, "name_reverse": "wird unterstützt von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1549, "fields": {"vocabsbaseclass_ptr": 1549, "name_reverse": "enthalten in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1553, "fields": {"vocabsbaseclass_ptr": 1553, "name_reverse": "illustriert von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1587, "fields": {"vocabsbaseclass_ptr": 1587, "name_reverse": "mit Kürzel veröffentlicht von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1657, "fields": {"vocabsbaseclass_ptr": 1657, "name_reverse": "Geburtsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1884, "fields": {"vocabsbaseclass_ptr": 1884, "name_reverse": "ist eine Übersetzung von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1900, "fields": {"vocabsbaseclass_ptr": 1900, "name_reverse": "vielleicht der Geburtsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1901, "fields": {"vocabsbaseclass_ptr": 1901, "name_reverse": "vielleicht der Sterbeort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 2253, "fields": {"vocabsbaseclass_ptr": 2253, "name_reverse": "Wohnadresse von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3106, "fields": {"vocabsbaseclass_ptr": 3106, "name_reverse": "erwähnt"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3107, "fields": {"vocabsbaseclass_ptr": 3107, "name_reverse": "behandelt hauptsächlich"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3402, "fields": {"vocabsbaseclass_ptr": 3402, "name_reverse": "ist biologisches Kind von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3403, "fields": {"vocabsbaseclass_ptr": 3403, "name_reverse": "ist biologisches Elternteil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3415, "fields": {"vocabsbaseclass_ptr": 3415, "name_reverse": "Unterricht für"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3417, "fields": {"vocabsbaseclass_ptr": 3417, "name_reverse": "Place of Birth [REVERSE]"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3429, "fields": {"vocabsbaseclass_ptr": 3429, "name_reverse": "steht unter Vormundschaft von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3439, "fields": {"vocabsbaseclass_ptr": 3439, "name_reverse": "nachgefolgt"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3440, "fields": {"vocabsbaseclass_ptr": 3440, "name_reverse": "vorangegangen"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3446, "fields": {"vocabsbaseclass_ptr": 3446, "name_reverse": "enthält Erwähnung von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3459, "fields": {"vocabsbaseclass_ptr": 3459, "name_reverse": "ist Stiefgeschwister von"}}, {"model": "apis_vocabularies.worktype", "pk": 1054, "fields": {"vocabsbaseclass_ptr": 1054}}, {"model": "apis_vocabularies.worktype", "pk": 1055, "fields": {"vocabsbaseclass_ptr": 1055}}, {"model": "apis_vocabularies.worktype", "pk": 1056, "fields": {"vocabsbaseclass_ptr": 1056}}, {"model": "apis_vocabularies.worktype", "pk": 1057, "fields": {"vocabsbaseclass_ptr": 1057}}, {"model": "apis_vocabularies.worktype", "pk": 1058, "fields": {"vocabsbaseclass_ptr": 1058}}, {"model": "apis_vocabularies.worktype", "pk": 1059, "fields": {"vocabsbaseclass_ptr": 1059}}, {"model": "apis_vocabularies.worktype", "pk": 1060, "fields": {"vocabsbaseclass_ptr": 1060}}, {"model": "apis_vocabularies.worktype", "pk": 1062, "fields": {"vocabsbaseclass_ptr": 1062}}, {"model": "apis_vocabularies.worktype", "pk": 1063, "fields": {"vocabsbaseclass_ptr": 1063}}, {"model": "apis_vocabularies.worktype", "pk": 1064, "fields": {"vocabsbaseclass_ptr": 1064}}, {"model": "apis_vocabularies.worktype", "pk": 1065, "fields": {"vocabsbaseclass_ptr": 1065}}, {"model": "apis_vocabularies.worktype", "pk": 1066, "fields": {"vocabsbaseclass_ptr": 1066}}, {"model": "apis_vocabularies.worktype", "pk": 1067, "fields": {"vocabsbaseclass_ptr": 1067}}, {"model": "apis_vocabularies.worktype", "pk": 1068, "fields": {"vocabsbaseclass_ptr": 1068}}, {"model": "apis_vocabularies.worktype", "pk": 1069, "fields": {"vocabsbaseclass_ptr": 1069}}, {"model": "apis_vocabularies.worktype", "pk": 1070, "fields": {"vocabsbaseclass_ptr": 1070}}, {"model": "apis_vocabularies.worktype", "pk": 1071, "fields": {"vocabsbaseclass_ptr": 1071}}, {"model": "apis_vocabularies.worktype", "pk": 1072, "fields": {"vocabsbaseclass_ptr": 1072}}, {"model": "apis_vocabularies.worktype", "pk": 1073, "fields": {"vocabsbaseclass_ptr": 1073}}, {"model": "apis_vocabularies.worktype", "pk": 1074, "fields": {"vocabsbaseclass_ptr": 1074}}, {"model": "apis_vocabularies.worktype", "pk": 1075, "fields": {"vocabsbaseclass_ptr": 1075}}, {"model": "apis_vocabularies.worktype", "pk": 1076, "fields": {"vocabsbaseclass_ptr": 1076}}, {"model": "apis_vocabularies.worktype", "pk": 1077, "fields": {"vocabsbaseclass_ptr": 1077}}, {"model": "apis_vocabularies.worktype", "pk": 1078, "fields": {"vocabsbaseclass_ptr": 1078}}, {"model": "apis_vocabularies.worktype", "pk": 1079, "fields": {"vocabsbaseclass_ptr": 1079}}, {"model": "apis_vocabularies.worktype", "pk": 1080, "fields": {"vocabsbaseclass_ptr": 1080}}, {"model": "apis_vocabularies.worktype", "pk": 1081, "fields": {"vocabsbaseclass_ptr": 1081}}, {"model": "apis_vocabularies.worktype", "pk": 1082, "fields": {"vocabsbaseclass_ptr": 1082}}, {"model": "apis_vocabularies.worktype", "pk": 1083, "fields": {"vocabsbaseclass_ptr": 1083}}, {"model": "apis_vocabularies.worktype", "pk": 1084, "fields": {"vocabsbaseclass_ptr": 1084}}, {"model": "apis_vocabularies.worktype", "pk": 1085, "fields": {"vocabsbaseclass_ptr": 1085}}, {"model": "apis_vocabularies.worktype", "pk": 1086, "fields": {"vocabsbaseclass_ptr": 1086}}, {"model": "apis_vocabularies.worktype", "pk": 1087, "fields": {"vocabsbaseclass_ptr": 1087}}, {"model": "apis_vocabularies.worktype", "pk": 1089, "fields": {"vocabsbaseclass_ptr": 1089}}, {"model": "apis_vocabularies.worktype", "pk": 1091, "fields": {"vocabsbaseclass_ptr": 1091}}, {"model": "apis_vocabularies.worktype", "pk": 1092, "fields": {"vocabsbaseclass_ptr": 1092}}, {"model": "apis_vocabularies.worktype", "pk": 1093, "fields": {"vocabsbaseclass_ptr": 1093}}, {"model": "apis_vocabularies.worktype", "pk": 1094, "fields": {"vocabsbaseclass_ptr": 1094}}, {"model": "apis_vocabularies.worktype", "pk": 1095, "fields": {"vocabsbaseclass_ptr": 1095}}, {"model": "apis_vocabularies.worktype", "pk": 1096, "fields": {"vocabsbaseclass_ptr": 1096}}, {"model": "apis_vocabularies.worktype", "pk": 1097, "fields": {"vocabsbaseclass_ptr": 1097}}, {"model": "apis_vocabularies.worktype", "pk": 1098, "fields": {"vocabsbaseclass_ptr": 1098}}, {"model": "apis_vocabularies.worktype", "pk": 1099, "fields": {"vocabsbaseclass_ptr": 1099}}, {"model": "apis_vocabularies.worktype", "pk": 1100, "fields": {"vocabsbaseclass_ptr": 1100}}, {"model": "apis_vocabularies.worktype", "pk": 1129, "fields": {"vocabsbaseclass_ptr": 1129}}, {"model": "apis_vocabularies.worktype", "pk": 1130, "fields": {"vocabsbaseclass_ptr": 1130}}, {"model": "apis_vocabularies.worktype", "pk": 1131, "fields": {"vocabsbaseclass_ptr": 1131}}, {"model": "apis_vocabularies.worktype", "pk": 1142, "fields": {"vocabsbaseclass_ptr": 1142}}, {"model": "apis_vocabularies.worktype", "pk": 1149, "fields": {"vocabsbaseclass_ptr": 1149}}, {"model": "apis_vocabularies.worktype", "pk": 1154, "fields": {"vocabsbaseclass_ptr": 1154}}, {"model": "apis_vocabularies.worktype", "pk": 1155, "fields": {"vocabsbaseclass_ptr": 1155}}, {"model": "apis_vocabularies.worktype", "pk": 1156, "fields": {"vocabsbaseclass_ptr": 1156}}, {"model": "apis_vocabularies.worktype", "pk": 1157, "fields": {"vocabsbaseclass_ptr": 1157}}, {"model": "apis_vocabularies.worktype", "pk": 1163, "fields": {"vocabsbaseclass_ptr": 1163}}, {"model": "apis_vocabularies.worktype", "pk": 1164, "fields": {"vocabsbaseclass_ptr": 1164}}, {"model": "apis_vocabularies.worktype", "pk": 1168, "fields": {"vocabsbaseclass_ptr": 1168}}, {"model": "apis_vocabularies.worktype", "pk": 1191, "fields": {"vocabsbaseclass_ptr": 1191}}, {"model": "apis_vocabularies.worktype", "pk": 1207, "fields": {"vocabsbaseclass_ptr": 1207}}, {"model": "apis_vocabularies.worktype", "pk": 1208, "fields": {"vocabsbaseclass_ptr": 1208}}, {"model": "apis_vocabularies.worktype", "pk": 1209, "fields": {"vocabsbaseclass_ptr": 1209}}, {"model": "apis_vocabularies.worktype", "pk": 1210, "fields": {"vocabsbaseclass_ptr": 1210}}, {"model": "apis_vocabularies.worktype", "pk": 1211, "fields": {"vocabsbaseclass_ptr": 1211}}, {"model": "apis_vocabularies.worktype", "pk": 1212, "fields": {"vocabsbaseclass_ptr": 1212}}, {"model": "apis_vocabularies.worktype", "pk": 1213, "fields": {"vocabsbaseclass_ptr": 1213}}, {"model": "apis_vocabularies.worktype", "pk": 1215, "fields": {"vocabsbaseclass_ptr": 1215}}, {"model": "apis_vocabularies.worktype", "pk": 1216, "fields": {"vocabsbaseclass_ptr": 1216}}, {"model": "apis_vocabularies.worktype", "pk": 1218, "fields": {"vocabsbaseclass_ptr": 1218}}, {"model": "apis_vocabularies.worktype", "pk": 1219, "fields": {"vocabsbaseclass_ptr": 1219}}, {"model": "apis_vocabularies.worktype", "pk": 1220, "fields": {"vocabsbaseclass_ptr": 1220}}, {"model": "apis_vocabularies.worktype", "pk": 1221, "fields": {"vocabsbaseclass_ptr": 1221}}, {"model": "apis_vocabularies.worktype", "pk": 1222, "fields": {"vocabsbaseclass_ptr": 1222}}, {"model": "apis_vocabularies.worktype", "pk": 1223, "fields": {"vocabsbaseclass_ptr": 1223}}, {"model": "apis_vocabularies.worktype", "pk": 1226, "fields": {"vocabsbaseclass_ptr": 1226}}, {"model": "apis_vocabularies.worktype", "pk": 1227, "fields": {"vocabsbaseclass_ptr": 1227}}, {"model": "apis_vocabularies.worktype", "pk": 1228, "fields": {"vocabsbaseclass_ptr": 1228}}, {"model": "apis_vocabularies.worktype", "pk": 1229, "fields": {"vocabsbaseclass_ptr": 1229}}, {"model": "apis_vocabularies.worktype", "pk": 1232, "fields": {"vocabsbaseclass_ptr": 1232}}, {"model": "apis_vocabularies.worktype", "pk": 1250, "fields": {"vocabsbaseclass_ptr": 1250}}, {"model": "apis_vocabularies.worktype", "pk": 1251, "fields": {"vocabsbaseclass_ptr": 1251}}, {"model": "apis_vocabularies.worktype", "pk": 1333, "fields": {"vocabsbaseclass_ptr": 1333}}, {"model": "apis_vocabularies.worktype", "pk": 1334, "fields": {"vocabsbaseclass_ptr": 1334}}, {"model": "apis_vocabularies.worktype", "pk": 1336, "fields": {"vocabsbaseclass_ptr": 1336}}, {"model": "apis_vocabularies.worktype", "pk": 1337, "fields": {"vocabsbaseclass_ptr": 1337}}, {"model": "apis_vocabularies.worktype", "pk": 1340, "fields": {"vocabsbaseclass_ptr": 1340}}, {"model": "apis_vocabularies.worktype", "pk": 1342, "fields": {"vocabsbaseclass_ptr": 1342}}, {"model": "apis_vocabularies.worktype", "pk": 1343, "fields": {"vocabsbaseclass_ptr": 1343}}, {"model": "apis_vocabularies.worktype", "pk": 1344, "fields": {"vocabsbaseclass_ptr": 1344}}, {"model": "apis_vocabularies.worktype", "pk": 1346, "fields": {"vocabsbaseclass_ptr": 1346}}, {"model": "apis_vocabularies.worktype", "pk": 1347, "fields": {"vocabsbaseclass_ptr": 1347}}, {"model": "apis_vocabularies.worktype", "pk": 1348, "fields": {"vocabsbaseclass_ptr": 1348}}, {"model": "apis_vocabularies.worktype", "pk": 1349, "fields": {"vocabsbaseclass_ptr": 1349}}, {"model": "apis_vocabularies.worktype", "pk": 1350, "fields": {"vocabsbaseclass_ptr": 1350}}, {"model": "apis_vocabularies.worktype", "pk": 1352, "fields": {"vocabsbaseclass_ptr": 1352}}, {"model": "apis_vocabularies.worktype", "pk": 1356, "fields": {"vocabsbaseclass_ptr": 1356}}, {"model": "apis_vocabularies.worktype", "pk": 1357, "fields": {"vocabsbaseclass_ptr": 1357}}, {"model": "apis_vocabularies.worktype", "pk": 1358, "fields": {"vocabsbaseclass_ptr": 1358}}, {"model": "apis_vocabularies.worktype", "pk": 1361, "fields": {"vocabsbaseclass_ptr": 1361}}, {"model": "apis_vocabularies.worktype", "pk": 1373, "fields": {"vocabsbaseclass_ptr": 1373}}, {"model": "apis_vocabularies.worktype", "pk": 1376, "fields": {"vocabsbaseclass_ptr": 1376}}, {"model": "apis_vocabularies.worktype", "pk": 1377, "fields": {"vocabsbaseclass_ptr": 1377}}, {"model": "apis_vocabularies.worktype", "pk": 1384, "fields": {"vocabsbaseclass_ptr": 1384}}, {"model": "apis_vocabularies.worktype", "pk": 1386, "fields": {"vocabsbaseclass_ptr": 1386}}, {"model": "apis_vocabularies.worktype", "pk": 1392, "fields": {"vocabsbaseclass_ptr": 1392}}, {"model": "apis_vocabularies.worktype", "pk": 1394, "fields": {"vocabsbaseclass_ptr": 1394}}, {"model": "apis_vocabularies.worktype", "pk": 1406, "fields": {"vocabsbaseclass_ptr": 1406}}, {"model": "apis_vocabularies.worktype", "pk": 1407, "fields": {"vocabsbaseclass_ptr": 1407}}, {"model": "apis_vocabularies.worktype", "pk": 1408, "fields": {"vocabsbaseclass_ptr": 1408}}, {"model": "apis_vocabularies.worktype", "pk": 1421, "fields": {"vocabsbaseclass_ptr": 1421}}, {"model": "apis_vocabularies.worktype", "pk": 1476, "fields": {"vocabsbaseclass_ptr": 1476}}, {"model": "apis_vocabularies.worktype", "pk": 1477, "fields": {"vocabsbaseclass_ptr": 1477}}, {"model": "apis_vocabularies.worktype", "pk": 1478, "fields": {"vocabsbaseclass_ptr": 1478}}, {"model": "apis_vocabularies.worktype", "pk": 1493, "fields": {"vocabsbaseclass_ptr": 1493}}, {"model": "apis_vocabularies.worktype", "pk": 1497, "fields": {"vocabsbaseclass_ptr": 1497}}, {"model": "apis_vocabularies.worktype", "pk": 1498, "fields": {"vocabsbaseclass_ptr": 1498}}, {"model": "apis_vocabularies.worktype", "pk": 1521, "fields": {"vocabsbaseclass_ptr": 1521}}, {"model": "apis_vocabularies.worktype", "pk": 1525, "fields": {"vocabsbaseclass_ptr": 1525}}, {"model": "apis_vocabularies.worktype", "pk": 1531, "fields": {"vocabsbaseclass_ptr": 1531}}, {"model": "apis_vocabularies.worktype", "pk": 1548, "fields": {"vocabsbaseclass_ptr": 1548}}, {"model": "apis_vocabularies.worktype", "pk": 1554, "fields": {"vocabsbaseclass_ptr": 1554}}, {"model": "apis_vocabularies.worktype", "pk": 1590, "fields": {"vocabsbaseclass_ptr": 1590}}, {"model": "apis_vocabularies.worktype", "pk": 1597, "fields": {"vocabsbaseclass_ptr": 1597}}, {"model": "apis_vocabularies.worktype", "pk": 1598, "fields": {"vocabsbaseclass_ptr": 1598}}, {"model": "apis_vocabularies.worktype", "pk": 1599, "fields": {"vocabsbaseclass_ptr": 1599}}, {"model": "apis_vocabularies.worktype", "pk": 1603, "fields": {"vocabsbaseclass_ptr": 1603}}, {"model": "apis_vocabularies.worktype", "pk": 1613, "fields": {"vocabsbaseclass_ptr": 1613}}, {"model": "apis_vocabularies.worktype", "pk": 1622, "fields": {"vocabsbaseclass_ptr": 1622}}, {"model": "apis_vocabularies.worktype", "pk": 1637, "fields": {"vocabsbaseclass_ptr": 1637}}, {"model": "apis_vocabularies.worktype", "pk": 1640, "fields": {"vocabsbaseclass_ptr": 1640}}, {"model": "apis_vocabularies.worktype", "pk": 1647, "fields": {"vocabsbaseclass_ptr": 1647}}, {"model": "apis_vocabularies.worktype", "pk": 1666, "fields": {"vocabsbaseclass_ptr": 1666}}, {"model": "apis_vocabularies.worktype", "pk": 1676, "fields": {"vocabsbaseclass_ptr": 1676}}, {"model": "apis_vocabularies.worktype", "pk": 1677, "fields": {"vocabsbaseclass_ptr": 1677}}, {"model": "apis_vocabularies.worktype", "pk": 1678, "fields": {"vocabsbaseclass_ptr": 1678}}, {"model": "apis_vocabularies.worktype", "pk": 1680, "fields": {"vocabsbaseclass_ptr": 1680}}, {"model": "apis_vocabularies.worktype", "pk": 1681, "fields": {"vocabsbaseclass_ptr": 1681}}, {"model": "apis_vocabularies.worktype", "pk": 1688, "fields": {"vocabsbaseclass_ptr": 1688}}, {"model": "apis_vocabularies.worktype", "pk": 1717, "fields": {"vocabsbaseclass_ptr": 1717}}, {"model": "apis_vocabularies.worktype", "pk": 1772, "fields": {"vocabsbaseclass_ptr": 1772}}, {"model": "apis_vocabularies.worktype", "pk": 1773, "fields": {"vocabsbaseclass_ptr": 1773}}, {"model": "apis_vocabularies.worktype", "pk": 1779, "fields": {"vocabsbaseclass_ptr": 1779}}, {"model": "apis_vocabularies.worktype", "pk": 1789, "fields": {"vocabsbaseclass_ptr": 1789}}, {"model": "apis_vocabularies.worktype", "pk": 1790, "fields": {"vocabsbaseclass_ptr": 1790}}, {"model": "apis_vocabularies.worktype", "pk": 1791, "fields": {"vocabsbaseclass_ptr": 1791}}, {"model": "apis_vocabularies.worktype", "pk": 1792, "fields": {"vocabsbaseclass_ptr": 1792}}, {"model": "apis_vocabularies.worktype", "pk": 1793, "fields": {"vocabsbaseclass_ptr": 1793}}, {"model": "apis_vocabularies.worktype", "pk": 1794, "fields": {"vocabsbaseclass_ptr": 1794}}, {"model": "apis_vocabularies.worktype", "pk": 1795, "fields": {"vocabsbaseclass_ptr": 1795}}, {"model": "apis_vocabularies.worktype", "pk": 1796, "fields": {"vocabsbaseclass_ptr": 1796}}, {"model": "apis_vocabularies.worktype", "pk": 1797, "fields": {"vocabsbaseclass_ptr": 1797}}, {"model": "apis_vocabularies.worktype", "pk": 1798, "fields": {"vocabsbaseclass_ptr": 1798}}, {"model": "apis_vocabularies.worktype", "pk": 1799, "fields": {"vocabsbaseclass_ptr": 1799}}, {"model": "apis_vocabularies.worktype", "pk": 1800, "fields": {"vocabsbaseclass_ptr": 1800}}, {"model": "apis_vocabularies.worktype", "pk": 1801, "fields": {"vocabsbaseclass_ptr": 1801}}, {"model": "apis_vocabularies.worktype", "pk": 1802, "fields": {"vocabsbaseclass_ptr": 1802}}, {"model": "apis_vocabularies.worktype", "pk": 1803, "fields": {"vocabsbaseclass_ptr": 1803}}, {"model": "apis_vocabularies.worktype", "pk": 1804, "fields": {"vocabsbaseclass_ptr": 1804}}, {"model": "apis_vocabularies.worktype", "pk": 1805, "fields": {"vocabsbaseclass_ptr": 1805}}, {"model": "apis_vocabularies.worktype", "pk": 1806, "fields": {"vocabsbaseclass_ptr": 1806}}, {"model": "apis_vocabularies.worktype", "pk": 1807, "fields": {"vocabsbaseclass_ptr": 1807}}, {"model": "apis_vocabularies.worktype", "pk": 1808, "fields": {"vocabsbaseclass_ptr": 1808}}, {"model": "apis_vocabularies.worktype", "pk": 1809, "fields": {"vocabsbaseclass_ptr": 1809}}, {"model": "apis_vocabularies.worktype", "pk": 1810, "fields": {"vocabsbaseclass_ptr": 1810}}, {"model": "apis_vocabularies.worktype", "pk": 1811, "fields": {"vocabsbaseclass_ptr": 1811}}, {"model": "apis_vocabularies.worktype", "pk": 1812, "fields": {"vocabsbaseclass_ptr": 1812}}, {"model": "apis_vocabularies.worktype", "pk": 1816, "fields": {"vocabsbaseclass_ptr": 1816}}, {"model": "apis_vocabularies.worktype", "pk": 1834, "fields": {"vocabsbaseclass_ptr": 1834}}, {"model": "apis_vocabularies.worktype", "pk": 1835, "fields": {"vocabsbaseclass_ptr": 1835}}, {"model": "apis_vocabularies.worktype", "pk": 1882, "fields": {"vocabsbaseclass_ptr": 1882}}, {"model": "apis_vocabularies.worktype", "pk": 1926, "fields": {"vocabsbaseclass_ptr": 1926}}, {"model": "apis_vocabularies.worktype", "pk": 1927, "fields": {"vocabsbaseclass_ptr": 1927}}, {"model": "apis_vocabularies.worktype", "pk": 1953, "fields": {"vocabsbaseclass_ptr": 1953}}, {"model": "apis_vocabularies.worktype", "pk": 1982, "fields": {"vocabsbaseclass_ptr": 1982}}, {"model": "apis_vocabularies.worktype", "pk": 2002, "fields": {"vocabsbaseclass_ptr": 2002}}, {"model": "apis_vocabularies.worktype", "pk": 2057, "fields": {"vocabsbaseclass_ptr": 2057}}, {"model": "apis_vocabularies.worktype", "pk": 2059, "fields": {"vocabsbaseclass_ptr": 2059}}, {"model": "apis_vocabularies.worktype", "pk": 2073, "fields": {"vocabsbaseclass_ptr": 2073}}, {"model": "apis_vocabularies.worktype", "pk": 2078, "fields": {"vocabsbaseclass_ptr": 2078}}, {"model": "apis_vocabularies.worktype", "pk": 2079, "fields": {"vocabsbaseclass_ptr": 2079}}, {"model": "apis_vocabularies.worktype", "pk": 3113, "fields": {"vocabsbaseclass_ptr": 3113}}, {"model": "apis_vocabularies.worktype", "pk": 3114, "fields": {"vocabsbaseclass_ptr": 3114}}, {"model": "apis_vocabularies.worktype", "pk": 3115, "fields": {"vocabsbaseclass_ptr": 3115}}, {"model": "apis_vocabularies.worktype", "pk": 3390, "fields": {"vocabsbaseclass_ptr": 3390}}, {"model": "apis_vocabularies.worktype", "pk": 3391, "fields": {"vocabsbaseclass_ptr": 3391}}, {"model": "apis_vocabularies.worktype", "pk": 3396, "fields": {"vocabsbaseclass_ptr": 3396}}, {"model": "apis_vocabularies.worktype", "pk": 3397, "fields": {"vocabsbaseclass_ptr": 3397}}, {"model": "apis_vocabularies.worktype", "pk": 3398, "fields": {"vocabsbaseclass_ptr": 3398}}, {"model": "apis_vocabularies.worktype", "pk": 3399, "fields": {"vocabsbaseclass_ptr": 3399}}, {"model": "apis_vocabularies.worktype", "pk": 3400, "fields": {"vocabsbaseclass_ptr": 3400}}, {"model": "apis_vocabularies.worktype", "pk": 3401, "fields": {"vocabsbaseclass_ptr": 3401}}, {"model": "apis_vocabularies.worktype", "pk": 3420, "fields": {"vocabsbaseclass_ptr": 3420}}, {"model": "apis_vocabularies.worktype", "pk": 3444, "fields": {"vocabsbaseclass_ptr": 3444}}, {"model": "apis_vocabularies.worktype", "pk": 3445, "fields": {"vocabsbaseclass_ptr": 3445}}, {"model": "apis_vocabularies.worktype", "pk": 3460, "fields": {"vocabsbaseclass_ptr": 3460}}, {"model": "apis_vocabularies.worktype", "pk": 3461, "fields": {"vocabsbaseclass_ptr": 3461}}, {"model": "apis_vocabularies.worktype", "pk": 3462, "fields": {"vocabsbaseclass_ptr": 3462}}, {"model": "apis_vocabularies.title", "pk": 1261, "fields": {"vocabsbaseclass_ptr": 1261, "abbreviation": ""}}, {"model": "apis_vocabularies.title", "pk": 1557, "fields": {"vocabsbaseclass_ptr": 1557, "abbreviation": ""}}, {"model": "apis_vocabularies.title", "pk": 1558, "fields": {"vocabsbaseclass_ptr": 1558, "abbreviation": ""}}, {"model": "apis_vocabularies.title", "pk": 1559, "fields": {"vocabsbaseclass_ptr": 1559, "abbreviation": ""}}, {"model": "apis_vocabularies.title", "pk": 1560, "fields": {"vocabsbaseclass_ptr": 1560, "abbreviation": ""}}, {"model": "apis_vocabularies.professiontype", "pk": 90, "fields": {"vocabsbaseclass_ptr": 90}}, {"model": "apis_vocabularies.professiontype", "pk": 94, "fields": {"vocabsbaseclass_ptr": 94}}, {"model": "apis_vocabularies.professiontype", "pk": 95, "fields": {"vocabsbaseclass_ptr": 95}}, {"model": "apis_vocabularies.professiontype", "pk": 97, "fields": {"vocabsbaseclass_ptr": 97}}, {"model": "apis_vocabularies.professiontype", "pk": 99, "fields": {"vocabsbaseclass_ptr": 99}}, {"model": "apis_vocabularies.professiontype", "pk": 100, "fields": {"vocabsbaseclass_ptr": 100}}, {"model": "apis_vocabularies.professiontype", "pk": 102, "fields": {"vocabsbaseclass_ptr": 102}}, {"model": "apis_vocabularies.professiontype", "pk": 103, "fields": {"vocabsbaseclass_ptr": 103}}, {"model": "apis_vocabularies.professiontype", "pk": 104, "fields": {"vocabsbaseclass_ptr": 104}}, {"model": "apis_vocabularies.professiontype", "pk": 105, "fields": {"vocabsbaseclass_ptr": 105}}, {"model": "apis_vocabularies.professiontype", "pk": 106, "fields": {"vocabsbaseclass_ptr": 106}}, {"model": "apis_vocabularies.professiontype", "pk": 107, "fields": {"vocabsbaseclass_ptr": 107}}, {"model": "apis_vocabularies.professiontype", "pk": 109, "fields": {"vocabsbaseclass_ptr": 109}}, {"model": "apis_vocabularies.professiontype", "pk": 110, "fields": {"vocabsbaseclass_ptr": 110}}, {"model": "apis_vocabularies.professiontype", "pk": 111, "fields": {"vocabsbaseclass_ptr": 111}}, {"model": "apis_vocabularies.professiontype", "pk": 112, "fields": {"vocabsbaseclass_ptr": 112}}, {"model": "apis_vocabularies.professiontype", "pk": 113, "fields": {"vocabsbaseclass_ptr": 113}}, {"model": "apis_vocabularies.professiontype", "pk": 114, "fields": {"vocabsbaseclass_ptr": 114}}, {"model": "apis_vocabularies.professiontype", "pk": 115, "fields": {"vocabsbaseclass_ptr": 115}}, {"model": "apis_vocabularies.professiontype", "pk": 116, "fields": {"vocabsbaseclass_ptr": 116}}, {"model": "apis_vocabularies.professiontype", "pk": 117, "fields": {"vocabsbaseclass_ptr": 117}}, {"model": "apis_vocabularies.professiontype", "pk": 119, "fields": {"vocabsbaseclass_ptr": 119}}, {"model": "apis_vocabularies.professiontype", "pk": 120, "fields": {"vocabsbaseclass_ptr": 120}}, {"model": "apis_vocabularies.professiontype", "pk": 121, "fields": {"vocabsbaseclass_ptr": 121}}, {"model": "apis_vocabularies.professiontype", "pk": 126, "fields": {"vocabsbaseclass_ptr": 126}}, {"model": "apis_vocabularies.professiontype", "pk": 127, "fields": {"vocabsbaseclass_ptr": 127}}, {"model": "apis_vocabularies.professiontype", "pk": 128, "fields": {"vocabsbaseclass_ptr": 128}}, {"model": "apis_vocabularies.professiontype", "pk": 129, "fields": {"vocabsbaseclass_ptr": 129}}, {"model": "apis_vocabularies.professiontype", "pk": 130, "fields": {"vocabsbaseclass_ptr": 130}}, {"model": "apis_vocabularies.professiontype", "pk": 131, "fields": {"vocabsbaseclass_ptr": 131}}, {"model": "apis_vocabularies.professiontype", "pk": 132, "fields": {"vocabsbaseclass_ptr": 132}}, {"model": "apis_vocabularies.professiontype", "pk": 134, "fields": {"vocabsbaseclass_ptr": 134}}, {"model": "apis_vocabularies.professiontype", "pk": 136, "fields": {"vocabsbaseclass_ptr": 136}}, {"model": "apis_vocabularies.professiontype", "pk": 140, "fields": {"vocabsbaseclass_ptr": 140}}, {"model": "apis_vocabularies.professiontype", "pk": 142, "fields": {"vocabsbaseclass_ptr": 142}}, {"model": "apis_vocabularies.professiontype", "pk": 144, "fields": {"vocabsbaseclass_ptr": 144}}, {"model": "apis_vocabularies.professiontype", "pk": 145, "fields": {"vocabsbaseclass_ptr": 145}}, {"model": "apis_vocabularies.professiontype", "pk": 148, "fields": {"vocabsbaseclass_ptr": 148}}, {"model": "apis_vocabularies.professiontype", "pk": 150, "fields": {"vocabsbaseclass_ptr": 150}}, {"model": "apis_vocabularies.professiontype", "pk": 151, "fields": {"vocabsbaseclass_ptr": 151}}, {"model": "apis_vocabularies.professiontype", "pk": 152, "fields": {"vocabsbaseclass_ptr": 152}}, {"model": "apis_vocabularies.professiontype", "pk": 153, "fields": {"vocabsbaseclass_ptr": 153}}, {"model": "apis_vocabularies.professiontype", "pk": 154, "fields": {"vocabsbaseclass_ptr": 154}}, {"model": "apis_vocabularies.professiontype", "pk": 155, "fields": {"vocabsbaseclass_ptr": 155}}, {"model": "apis_vocabularies.professiontype", "pk": 157, "fields": {"vocabsbaseclass_ptr": 157}}, {"model": "apis_vocabularies.professiontype", "pk": 158, "fields": {"vocabsbaseclass_ptr": 158}}, {"model": "apis_vocabularies.professiontype", "pk": 159, "fields": {"vocabsbaseclass_ptr": 159}}, {"model": "apis_vocabularies.professiontype", "pk": 160, "fields": {"vocabsbaseclass_ptr": 160}}, {"model": "apis_vocabularies.professiontype", "pk": 161, "fields": {"vocabsbaseclass_ptr": 161}}, {"model": "apis_vocabularies.professiontype", "pk": 162, "fields": {"vocabsbaseclass_ptr": 162}}, {"model": "apis_vocabularies.professiontype", "pk": 163, "fields": {"vocabsbaseclass_ptr": 163}}, {"model": "apis_vocabularies.professiontype", "pk": 164, "fields": {"vocabsbaseclass_ptr": 164}}, {"model": "apis_vocabularies.professiontype", "pk": 167, "fields": {"vocabsbaseclass_ptr": 167}}, {"model": "apis_vocabularies.professiontype", "pk": 168, "fields": {"vocabsbaseclass_ptr": 168}}, {"model": "apis_vocabularies.professiontype", "pk": 169, "fields": {"vocabsbaseclass_ptr": 169}}, {"model": "apis_vocabularies.professiontype", "pk": 170, "fields": {"vocabsbaseclass_ptr": 170}}, {"model": "apis_vocabularies.professiontype", "pk": 171, "fields": {"vocabsbaseclass_ptr": 171}}, {"model": "apis_vocabularies.professiontype", "pk": 173, "fields": {"vocabsbaseclass_ptr": 173}}, {"model": "apis_vocabularies.professiontype", "pk": 174, "fields": {"vocabsbaseclass_ptr": 174}}, {"model": "apis_vocabularies.professiontype", "pk": 175, "fields": {"vocabsbaseclass_ptr": 175}}, {"model": "apis_vocabularies.professiontype", "pk": 176, "fields": {"vocabsbaseclass_ptr": 176}}, {"model": "apis_vocabularies.professiontype", "pk": 178, "fields": {"vocabsbaseclass_ptr": 178}}, {"model": "apis_vocabularies.professiontype", "pk": 180, "fields": {"vocabsbaseclass_ptr": 180}}, {"model": "apis_vocabularies.professiontype", "pk": 181, "fields": {"vocabsbaseclass_ptr": 181}}, {"model": "apis_vocabularies.professiontype", "pk": 184, "fields": {"vocabsbaseclass_ptr": 184}}, {"model": "apis_vocabularies.professiontype", "pk": 185, "fields": {"vocabsbaseclass_ptr": 185}}, {"model": "apis_vocabularies.professiontype", "pk": 186, "fields": {"vocabsbaseclass_ptr": 186}}, {"model": "apis_vocabularies.professiontype", "pk": 188, "fields": {"vocabsbaseclass_ptr": 188}}, {"model": "apis_vocabularies.professiontype", "pk": 189, "fields": {"vocabsbaseclass_ptr": 189}}, {"model": "apis_vocabularies.professiontype", "pk": 190, "fields": {"vocabsbaseclass_ptr": 190}}, {"model": "apis_vocabularies.professiontype", "pk": 192, "fields": {"vocabsbaseclass_ptr": 192}}, {"model": "apis_vocabularies.professiontype", "pk": 193, "fields": {"vocabsbaseclass_ptr": 193}}, {"model": "apis_vocabularies.professiontype", "pk": 194, "fields": {"vocabsbaseclass_ptr": 194}}, {"model": "apis_vocabularies.professiontype", "pk": 195, "fields": {"vocabsbaseclass_ptr": 195}}, {"model": "apis_vocabularies.professiontype", "pk": 196, "fields": {"vocabsbaseclass_ptr": 196}}, {"model": "apis_vocabularies.professiontype", "pk": 197, "fields": {"vocabsbaseclass_ptr": 197}}, {"model": "apis_vocabularies.professiontype", "pk": 198, "fields": {"vocabsbaseclass_ptr": 198}}, {"model": "apis_vocabularies.professiontype", "pk": 199, "fields": {"vocabsbaseclass_ptr": 199}}, {"model": "apis_vocabularies.professiontype", "pk": 200, "fields": {"vocabsbaseclass_ptr": 200}}, {"model": "apis_vocabularies.professiontype", "pk": 201, "fields": {"vocabsbaseclass_ptr": 201}}, {"model": "apis_vocabularies.professiontype", "pk": 202, "fields": {"vocabsbaseclass_ptr": 202}}, {"model": "apis_vocabularies.professiontype", "pk": 203, "fields": {"vocabsbaseclass_ptr": 203}}, {"model": "apis_vocabularies.professiontype", "pk": 204, "fields": {"vocabsbaseclass_ptr": 204}}, {"model": "apis_vocabularies.professiontype", "pk": 205, "fields": {"vocabsbaseclass_ptr": 205}}, {"model": "apis_vocabularies.professiontype", "pk": 206, "fields": {"vocabsbaseclass_ptr": 206}}, {"model": "apis_vocabularies.professiontype", "pk": 207, "fields": {"vocabsbaseclass_ptr": 207}}, {"model": "apis_vocabularies.professiontype", "pk": 208, "fields": {"vocabsbaseclass_ptr": 208}}, {"model": "apis_vocabularies.professiontype", "pk": 210, "fields": {"vocabsbaseclass_ptr": 210}}, {"model": "apis_vocabularies.professiontype", "pk": 211, "fields": {"vocabsbaseclass_ptr": 211}}, {"model": "apis_vocabularies.professiontype", "pk": 212, "fields": {"vocabsbaseclass_ptr": 212}}, {"model": "apis_vocabularies.professiontype", "pk": 213, "fields": {"vocabsbaseclass_ptr": 213}}, {"model": "apis_vocabularies.professiontype", "pk": 215, "fields": {"vocabsbaseclass_ptr": 215}}, {"model": "apis_vocabularies.professiontype", "pk": 216, "fields": {"vocabsbaseclass_ptr": 216}}, {"model": "apis_vocabularies.professiontype", "pk": 223, "fields": {"vocabsbaseclass_ptr": 223}}, {"model": "apis_vocabularies.professiontype", "pk": 224, "fields": {"vocabsbaseclass_ptr": 224}}, {"model": "apis_vocabularies.professiontype", "pk": 225, "fields": {"vocabsbaseclass_ptr": 225}}, {"model": "apis_vocabularies.professiontype", "pk": 228, "fields": {"vocabsbaseclass_ptr": 228}}, {"model": "apis_vocabularies.professiontype", "pk": 229, "fields": {"vocabsbaseclass_ptr": 229}}, {"model": "apis_vocabularies.professiontype", "pk": 231, "fields": {"vocabsbaseclass_ptr": 231}}, {"model": "apis_vocabularies.professiontype", "pk": 232, "fields": {"vocabsbaseclass_ptr": 232}}, {"model": "apis_vocabularies.professiontype", "pk": 234, "fields": {"vocabsbaseclass_ptr": 234}}, {"model": "apis_vocabularies.professiontype", "pk": 235, "fields": {"vocabsbaseclass_ptr": 235}}, {"model": "apis_vocabularies.professiontype", "pk": 237, "fields": {"vocabsbaseclass_ptr": 237}}, {"model": "apis_vocabularies.professiontype", "pk": 239, "fields": {"vocabsbaseclass_ptr": 239}}, {"model": "apis_vocabularies.professiontype", "pk": 240, "fields": {"vocabsbaseclass_ptr": 240}}, {"model": "apis_vocabularies.professiontype", "pk": 241, "fields": {"vocabsbaseclass_ptr": 241}}, {"model": "apis_vocabularies.professiontype", "pk": 242, "fields": {"vocabsbaseclass_ptr": 242}}, {"model": "apis_vocabularies.professiontype", "pk": 244, "fields": {"vocabsbaseclass_ptr": 244}}, {"model": "apis_vocabularies.professiontype", "pk": 246, "fields": {"vocabsbaseclass_ptr": 246}}, {"model": "apis_vocabularies.professiontype", "pk": 247, "fields": {"vocabsbaseclass_ptr": 247}}, {"model": "apis_vocabularies.professiontype", "pk": 248, "fields": {"vocabsbaseclass_ptr": 248}}, {"model": "apis_vocabularies.professiontype", "pk": 250, "fields": {"vocabsbaseclass_ptr": 250}}, {"model": "apis_vocabularies.professiontype", "pk": 251, "fields": {"vocabsbaseclass_ptr": 251}}, {"model": "apis_vocabularies.professiontype", "pk": 253, "fields": {"vocabsbaseclass_ptr": 253}}, {"model": "apis_vocabularies.professiontype", "pk": 255, "fields": {"vocabsbaseclass_ptr": 255}}, {"model": "apis_vocabularies.professiontype", "pk": 256, "fields": {"vocabsbaseclass_ptr": 256}}, {"model": "apis_vocabularies.professiontype", "pk": 259, "fields": {"vocabsbaseclass_ptr": 259}}, {"model": "apis_vocabularies.professiontype", "pk": 260, "fields": {"vocabsbaseclass_ptr": 260}}, {"model": "apis_vocabularies.professiontype", "pk": 261, "fields": {"vocabsbaseclass_ptr": 261}}, {"model": "apis_vocabularies.professiontype", "pk": 263, "fields": {"vocabsbaseclass_ptr": 263}}, {"model": "apis_vocabularies.professiontype", "pk": 264, "fields": {"vocabsbaseclass_ptr": 264}}, {"model": "apis_vocabularies.professiontype", "pk": 266, "fields": {"vocabsbaseclass_ptr": 266}}, {"model": "apis_vocabularies.professiontype", "pk": 267, "fields": {"vocabsbaseclass_ptr": 267}}, {"model": "apis_vocabularies.professiontype", "pk": 270, "fields": {"vocabsbaseclass_ptr": 270}}, {"model": "apis_vocabularies.professiontype", "pk": 272, "fields": {"vocabsbaseclass_ptr": 272}}, {"model": "apis_vocabularies.professiontype", "pk": 273, "fields": {"vocabsbaseclass_ptr": 273}}, {"model": "apis_vocabularies.professiontype", "pk": 274, "fields": {"vocabsbaseclass_ptr": 274}}, {"model": "apis_vocabularies.professiontype", "pk": 275, "fields": {"vocabsbaseclass_ptr": 275}}, {"model": "apis_vocabularies.professiontype", "pk": 276, "fields": {"vocabsbaseclass_ptr": 276}}, {"model": "apis_vocabularies.professiontype", "pk": 277, "fields": {"vocabsbaseclass_ptr": 277}}, {"model": "apis_vocabularies.professiontype", "pk": 279, "fields": {"vocabsbaseclass_ptr": 279}}, {"model": "apis_vocabularies.professiontype", "pk": 280, "fields": {"vocabsbaseclass_ptr": 280}}, {"model": "apis_vocabularies.professiontype", "pk": 281, "fields": {"vocabsbaseclass_ptr": 281}}, {"model": "apis_vocabularies.professiontype", "pk": 282, "fields": {"vocabsbaseclass_ptr": 282}}, {"model": "apis_vocabularies.professiontype", "pk": 283, "fields": {"vocabsbaseclass_ptr": 283}}, {"model": "apis_vocabularies.professiontype", "pk": 284, "fields": {"vocabsbaseclass_ptr": 284}}, {"model": "apis_vocabularies.professiontype", "pk": 285, "fields": {"vocabsbaseclass_ptr": 285}}, {"model": "apis_vocabularies.professiontype", "pk": 286, "fields": {"vocabsbaseclass_ptr": 286}}, {"model": "apis_vocabularies.professiontype", "pk": 287, "fields": {"vocabsbaseclass_ptr": 287}}, {"model": "apis_vocabularies.professiontype", "pk": 290, "fields": {"vocabsbaseclass_ptr": 290}}, {"model": "apis_vocabularies.professiontype", "pk": 291, "fields": {"vocabsbaseclass_ptr": 291}}, {"model": "apis_vocabularies.professiontype", "pk": 292, "fields": {"vocabsbaseclass_ptr": 292}}, {"model": "apis_vocabularies.professiontype", "pk": 293, "fields": {"vocabsbaseclass_ptr": 293}}, {"model": "apis_vocabularies.professiontype", "pk": 294, "fields": {"vocabsbaseclass_ptr": 294}}, {"model": "apis_vocabularies.professiontype", "pk": 295, "fields": {"vocabsbaseclass_ptr": 295}}, {"model": "apis_vocabularies.professiontype", "pk": 296, "fields": {"vocabsbaseclass_ptr": 296}}, {"model": "apis_vocabularies.professiontype", "pk": 297, "fields": {"vocabsbaseclass_ptr": 297}}, {"model": "apis_vocabularies.professiontype", "pk": 298, "fields": {"vocabsbaseclass_ptr": 298}}, {"model": "apis_vocabularies.professiontype", "pk": 300, "fields": {"vocabsbaseclass_ptr": 300}}, {"model": "apis_vocabularies.professiontype", "pk": 302, "fields": {"vocabsbaseclass_ptr": 302}}, {"model": "apis_vocabularies.professiontype", "pk": 304, "fields": {"vocabsbaseclass_ptr": 304}}, {"model": "apis_vocabularies.professiontype", "pk": 305, "fields": {"vocabsbaseclass_ptr": 305}}, {"model": "apis_vocabularies.professiontype", "pk": 307, "fields": {"vocabsbaseclass_ptr": 307}}, {"model": "apis_vocabularies.professiontype", "pk": 309, "fields": {"vocabsbaseclass_ptr": 309}}, {"model": "apis_vocabularies.professiontype", "pk": 310, "fields": {"vocabsbaseclass_ptr": 310}}, {"model": "apis_vocabularies.professiontype", "pk": 311, "fields": {"vocabsbaseclass_ptr": 311}}, {"model": "apis_vocabularies.professiontype", "pk": 313, "fields": {"vocabsbaseclass_ptr": 313}}, {"model": "apis_vocabularies.professiontype", "pk": 314, "fields": {"vocabsbaseclass_ptr": 314}}, {"model": "apis_vocabularies.professiontype", "pk": 315, "fields": {"vocabsbaseclass_ptr": 315}}, {"model": "apis_vocabularies.professiontype", "pk": 316, "fields": {"vocabsbaseclass_ptr": 316}}, {"model": "apis_vocabularies.professiontype", "pk": 317, "fields": {"vocabsbaseclass_ptr": 317}}, {"model": "apis_vocabularies.professiontype", "pk": 318, "fields": {"vocabsbaseclass_ptr": 318}}, {"model": "apis_vocabularies.professiontype", "pk": 321, "fields": {"vocabsbaseclass_ptr": 321}}, {"model": "apis_vocabularies.professiontype", "pk": 322, "fields": {"vocabsbaseclass_ptr": 322}}, {"model": "apis_vocabularies.professiontype", "pk": 323, "fields": {"vocabsbaseclass_ptr": 323}}, {"model": "apis_vocabularies.professiontype", "pk": 324, "fields": {"vocabsbaseclass_ptr": 324}}, {"model": "apis_vocabularies.professiontype", "pk": 325, "fields": {"vocabsbaseclass_ptr": 325}}, {"model": "apis_vocabularies.professiontype", "pk": 326, "fields": {"vocabsbaseclass_ptr": 326}}, {"model": "apis_vocabularies.professiontype", "pk": 327, "fields": {"vocabsbaseclass_ptr": 327}}, {"model": "apis_vocabularies.professiontype", "pk": 328, "fields": {"vocabsbaseclass_ptr": 328}}, {"model": "apis_vocabularies.professiontype", "pk": 329, "fields": {"vocabsbaseclass_ptr": 329}}, {"model": "apis_vocabularies.professiontype", "pk": 331, "fields": {"vocabsbaseclass_ptr": 331}}, {"model": "apis_vocabularies.professiontype", "pk": 332, "fields": {"vocabsbaseclass_ptr": 332}}, {"model": "apis_vocabularies.professiontype", "pk": 333, "fields": {"vocabsbaseclass_ptr": 333}}, {"model": "apis_vocabularies.professiontype", "pk": 334, "fields": {"vocabsbaseclass_ptr": 334}}, {"model": "apis_vocabularies.professiontype", "pk": 335, "fields": {"vocabsbaseclass_ptr": 335}}, {"model": "apis_vocabularies.professiontype", "pk": 336, "fields": {"vocabsbaseclass_ptr": 336}}, {"model": "apis_vocabularies.professiontype", "pk": 338, "fields": {"vocabsbaseclass_ptr": 338}}, {"model": "apis_vocabularies.professiontype", "pk": 339, "fields": {"vocabsbaseclass_ptr": 339}}, {"model": "apis_vocabularies.professiontype", "pk": 340, "fields": {"vocabsbaseclass_ptr": 340}}, {"model": "apis_vocabularies.professiontype", "pk": 341, "fields": {"vocabsbaseclass_ptr": 341}}, {"model": "apis_vocabularies.professiontype", "pk": 343, "fields": {"vocabsbaseclass_ptr": 343}}, {"model": "apis_vocabularies.professiontype", "pk": 344, "fields": {"vocabsbaseclass_ptr": 344}}, {"model": "apis_vocabularies.professiontype", "pk": 345, "fields": {"vocabsbaseclass_ptr": 345}}, {"model": "apis_vocabularies.professiontype", "pk": 346, "fields": {"vocabsbaseclass_ptr": 346}}, {"model": "apis_vocabularies.professiontype", "pk": 348, "fields": {"vocabsbaseclass_ptr": 348}}, {"model": "apis_vocabularies.professiontype", "pk": 350, "fields": {"vocabsbaseclass_ptr": 350}}, {"model": "apis_vocabularies.professiontype", "pk": 351, "fields": {"vocabsbaseclass_ptr": 351}}, {"model": "apis_vocabularies.professiontype", "pk": 352, "fields": {"vocabsbaseclass_ptr": 352}}, {"model": "apis_vocabularies.professiontype", "pk": 353, "fields": {"vocabsbaseclass_ptr": 353}}, {"model": "apis_vocabularies.professiontype", "pk": 354, "fields": {"vocabsbaseclass_ptr": 354}}, {"model": "apis_vocabularies.professiontype", "pk": 356, "fields": {"vocabsbaseclass_ptr": 356}}, {"model": "apis_vocabularies.professiontype", "pk": 358, "fields": {"vocabsbaseclass_ptr": 358}}, {"model": "apis_vocabularies.professiontype", "pk": 359, "fields": {"vocabsbaseclass_ptr": 359}}, {"model": "apis_vocabularies.professiontype", "pk": 360, "fields": {"vocabsbaseclass_ptr": 360}}, {"model": "apis_vocabularies.professiontype", "pk": 361, "fields": {"vocabsbaseclass_ptr": 361}}, {"model": "apis_vocabularies.professiontype", "pk": 362, "fields": {"vocabsbaseclass_ptr": 362}}, {"model": "apis_vocabularies.professiontype", "pk": 363, "fields": {"vocabsbaseclass_ptr": 363}}, {"model": "apis_vocabularies.professiontype", "pk": 364, "fields": {"vocabsbaseclass_ptr": 364}}, {"model": "apis_vocabularies.professiontype", "pk": 365, "fields": {"vocabsbaseclass_ptr": 365}}, {"model": "apis_vocabularies.professiontype", "pk": 366, "fields": {"vocabsbaseclass_ptr": 366}}, {"model": "apis_vocabularies.professiontype", "pk": 367, "fields": {"vocabsbaseclass_ptr": 367}}, {"model": "apis_vocabularies.professiontype", "pk": 368, "fields": {"vocabsbaseclass_ptr": 368}}, {"model": "apis_vocabularies.professiontype", "pk": 369, "fields": {"vocabsbaseclass_ptr": 369}}, {"model": "apis_vocabularies.professiontype", "pk": 370, "fields": {"vocabsbaseclass_ptr": 370}}, {"model": "apis_vocabularies.professiontype", "pk": 372, "fields": {"vocabsbaseclass_ptr": 372}}, {"model": "apis_vocabularies.professiontype", "pk": 373, "fields": {"vocabsbaseclass_ptr": 373}}, {"model": "apis_vocabularies.professiontype", "pk": 374, "fields": {"vocabsbaseclass_ptr": 374}}, {"model": "apis_vocabularies.professiontype", "pk": 375, "fields": {"vocabsbaseclass_ptr": 375}}, {"model": "apis_vocabularies.professiontype", "pk": 376, "fields": {"vocabsbaseclass_ptr": 376}}, {"model": "apis_vocabularies.professiontype", "pk": 378, "fields": {"vocabsbaseclass_ptr": 378}}, {"model": "apis_vocabularies.professiontype", "pk": 379, "fields": {"vocabsbaseclass_ptr": 379}}, {"model": "apis_vocabularies.professiontype", "pk": 380, "fields": {"vocabsbaseclass_ptr": 380}}, {"model": "apis_vocabularies.professiontype", "pk": 381, "fields": {"vocabsbaseclass_ptr": 381}}, {"model": "apis_vocabularies.professiontype", "pk": 382, "fields": {"vocabsbaseclass_ptr": 382}}, {"model": "apis_vocabularies.professiontype", "pk": 385, "fields": {"vocabsbaseclass_ptr": 385}}, {"model": "apis_vocabularies.professiontype", "pk": 386, "fields": {"vocabsbaseclass_ptr": 386}}, {"model": "apis_vocabularies.professiontype", "pk": 387, "fields": {"vocabsbaseclass_ptr": 387}}, {"model": "apis_vocabularies.professiontype", "pk": 388, "fields": {"vocabsbaseclass_ptr": 388}}, {"model": "apis_vocabularies.professiontype", "pk": 390, "fields": {"vocabsbaseclass_ptr": 390}}, {"model": "apis_vocabularies.professiontype", "pk": 391, "fields": {"vocabsbaseclass_ptr": 391}}, {"model": "apis_vocabularies.professiontype", "pk": 393, "fields": {"vocabsbaseclass_ptr": 393}}, {"model": "apis_vocabularies.professiontype", "pk": 395, "fields": {"vocabsbaseclass_ptr": 395}}, {"model": "apis_vocabularies.professiontype", "pk": 396, "fields": {"vocabsbaseclass_ptr": 396}}, {"model": "apis_vocabularies.professiontype", "pk": 398, "fields": {"vocabsbaseclass_ptr": 398}}, {"model": "apis_vocabularies.professiontype", "pk": 399, "fields": {"vocabsbaseclass_ptr": 399}}, {"model": "apis_vocabularies.professiontype", "pk": 400, "fields": {"vocabsbaseclass_ptr": 400}}, {"model": "apis_vocabularies.professiontype", "pk": 401, "fields": {"vocabsbaseclass_ptr": 401}}, {"model": "apis_vocabularies.professiontype", "pk": 404, "fields": {"vocabsbaseclass_ptr": 404}}, {"model": "apis_vocabularies.professiontype", "pk": 406, "fields": {"vocabsbaseclass_ptr": 406}}, {"model": "apis_vocabularies.professiontype", "pk": 409, "fields": {"vocabsbaseclass_ptr": 409}}, {"model": "apis_vocabularies.professiontype", "pk": 410, "fields": {"vocabsbaseclass_ptr": 410}}, {"model": "apis_vocabularies.professiontype", "pk": 411, "fields": {"vocabsbaseclass_ptr": 411}}, {"model": "apis_vocabularies.professiontype", "pk": 413, "fields": {"vocabsbaseclass_ptr": 413}}, {"model": "apis_vocabularies.professiontype", "pk": 414, "fields": {"vocabsbaseclass_ptr": 414}}, {"model": "apis_vocabularies.professiontype", "pk": 415, "fields": {"vocabsbaseclass_ptr": 415}}, {"model": "apis_vocabularies.professiontype", "pk": 416, "fields": {"vocabsbaseclass_ptr": 416}}, {"model": "apis_vocabularies.professiontype", "pk": 417, "fields": {"vocabsbaseclass_ptr": 417}}, {"model": "apis_vocabularies.professiontype", "pk": 419, "fields": {"vocabsbaseclass_ptr": 419}}, {"model": "apis_vocabularies.professiontype", "pk": 420, "fields": {"vocabsbaseclass_ptr": 420}}, {"model": "apis_vocabularies.professiontype", "pk": 421, "fields": {"vocabsbaseclass_ptr": 421}}, {"model": "apis_vocabularies.professiontype", "pk": 422, "fields": {"vocabsbaseclass_ptr": 422}}, {"model": "apis_vocabularies.professiontype", "pk": 424, "fields": {"vocabsbaseclass_ptr": 424}}, {"model": "apis_vocabularies.professiontype", "pk": 425, "fields": {"vocabsbaseclass_ptr": 425}}, {"model": "apis_vocabularies.professiontype", "pk": 426, "fields": {"vocabsbaseclass_ptr": 426}}, {"model": "apis_vocabularies.professiontype", "pk": 428, "fields": {"vocabsbaseclass_ptr": 428}}, {"model": "apis_vocabularies.professiontype", "pk": 429, "fields": {"vocabsbaseclass_ptr": 429}}, {"model": "apis_vocabularies.professiontype", "pk": 430, "fields": {"vocabsbaseclass_ptr": 430}}, {"model": "apis_vocabularies.professiontype", "pk": 431, "fields": {"vocabsbaseclass_ptr": 431}}, {"model": "apis_vocabularies.professiontype", "pk": 433, "fields": {"vocabsbaseclass_ptr": 433}}, {"model": "apis_vocabularies.professiontype", "pk": 434, "fields": {"vocabsbaseclass_ptr": 434}}, {"model": "apis_vocabularies.professiontype", "pk": 436, "fields": {"vocabsbaseclass_ptr": 436}}, {"model": "apis_vocabularies.professiontype", "pk": 437, "fields": {"vocabsbaseclass_ptr": 437}}, {"model": "apis_vocabularies.professiontype", "pk": 438, "fields": {"vocabsbaseclass_ptr": 438}}, {"model": "apis_vocabularies.professiontype", "pk": 440, "fields": {"vocabsbaseclass_ptr": 440}}, {"model": "apis_vocabularies.professiontype", "pk": 441, "fields": {"vocabsbaseclass_ptr": 441}}, {"model": "apis_vocabularies.professiontype", "pk": 442, "fields": {"vocabsbaseclass_ptr": 442}}, {"model": "apis_vocabularies.professiontype", "pk": 443, "fields": {"vocabsbaseclass_ptr": 443}}, {"model": "apis_vocabularies.professiontype", "pk": 445, "fields": {"vocabsbaseclass_ptr": 445}}, {"model": "apis_vocabularies.professiontype", "pk": 446, "fields": {"vocabsbaseclass_ptr": 446}}, {"model": "apis_vocabularies.professiontype", "pk": 447, "fields": {"vocabsbaseclass_ptr": 447}}, {"model": "apis_vocabularies.professiontype", "pk": 448, "fields": {"vocabsbaseclass_ptr": 448}}, {"model": "apis_vocabularies.professiontype", "pk": 449, "fields": {"vocabsbaseclass_ptr": 449}}, {"model": "apis_vocabularies.professiontype", "pk": 450, "fields": {"vocabsbaseclass_ptr": 450}}, {"model": "apis_vocabularies.professiontype", "pk": 451, "fields": {"vocabsbaseclass_ptr": 451}}, {"model": "apis_vocabularies.professiontype", "pk": 453, "fields": {"vocabsbaseclass_ptr": 453}}, {"model": "apis_vocabularies.professiontype", "pk": 454, "fields": {"vocabsbaseclass_ptr": 454}}, {"model": "apis_vocabularies.professiontype", "pk": 457, "fields": {"vocabsbaseclass_ptr": 457}}, {"model": "apis_vocabularies.professiontype", "pk": 458, "fields": {"vocabsbaseclass_ptr": 458}}, {"model": "apis_vocabularies.professiontype", "pk": 460, "fields": {"vocabsbaseclass_ptr": 460}}, {"model": "apis_vocabularies.professiontype", "pk": 461, "fields": {"vocabsbaseclass_ptr": 461}}, {"model": "apis_vocabularies.professiontype", "pk": 463, "fields": {"vocabsbaseclass_ptr": 463}}, {"model": "apis_vocabularies.professiontype", "pk": 464, "fields": {"vocabsbaseclass_ptr": 464}}, {"model": "apis_vocabularies.professiontype", "pk": 465, "fields": {"vocabsbaseclass_ptr": 465}}, {"model": "apis_vocabularies.professiontype", "pk": 467, "fields": {"vocabsbaseclass_ptr": 467}}, {"model": "apis_vocabularies.professiontype", "pk": 468, "fields": {"vocabsbaseclass_ptr": 468}}, {"model": "apis_vocabularies.professiontype", "pk": 469, "fields": {"vocabsbaseclass_ptr": 469}}, {"model": "apis_vocabularies.professiontype", "pk": 472, "fields": {"vocabsbaseclass_ptr": 472}}, {"model": "apis_vocabularies.professiontype", "pk": 473, "fields": {"vocabsbaseclass_ptr": 473}}, {"model": "apis_vocabularies.professiontype", "pk": 474, "fields": {"vocabsbaseclass_ptr": 474}}, {"model": "apis_vocabularies.professiontype", "pk": 477, "fields": {"vocabsbaseclass_ptr": 477}}, {"model": "apis_vocabularies.professiontype", "pk": 478, "fields": {"vocabsbaseclass_ptr": 478}}, {"model": "apis_vocabularies.professiontype", "pk": 479, "fields": {"vocabsbaseclass_ptr": 479}}, {"model": "apis_vocabularies.professiontype", "pk": 481, "fields": {"vocabsbaseclass_ptr": 481}}, {"model": "apis_vocabularies.professiontype", "pk": 482, "fields": {"vocabsbaseclass_ptr": 482}}, {"model": "apis_vocabularies.professiontype", "pk": 484, "fields": {"vocabsbaseclass_ptr": 484}}, {"model": "apis_vocabularies.professiontype", "pk": 485, "fields": {"vocabsbaseclass_ptr": 485}}, {"model": "apis_vocabularies.professiontype", "pk": 486, "fields": {"vocabsbaseclass_ptr": 486}}, {"model": "apis_vocabularies.professiontype", "pk": 487, "fields": {"vocabsbaseclass_ptr": 487}}, {"model": "apis_vocabularies.professiontype", "pk": 488, "fields": {"vocabsbaseclass_ptr": 488}}, {"model": "apis_vocabularies.professiontype", "pk": 489, "fields": {"vocabsbaseclass_ptr": 489}}, {"model": "apis_vocabularies.professiontype", "pk": 491, "fields": {"vocabsbaseclass_ptr": 491}}, {"model": "apis_vocabularies.professiontype", "pk": 492, "fields": {"vocabsbaseclass_ptr": 492}}, {"model": "apis_vocabularies.professiontype", "pk": 493, "fields": {"vocabsbaseclass_ptr": 493}}, {"model": "apis_vocabularies.professiontype", "pk": 495, "fields": {"vocabsbaseclass_ptr": 495}}, {"model": "apis_vocabularies.professiontype", "pk": 496, "fields": {"vocabsbaseclass_ptr": 496}}, {"model": "apis_vocabularies.professiontype", "pk": 503, "fields": {"vocabsbaseclass_ptr": 503}}, {"model": "apis_vocabularies.professiontype", "pk": 504, "fields": {"vocabsbaseclass_ptr": 504}}, {"model": "apis_vocabularies.professiontype", "pk": 505, "fields": {"vocabsbaseclass_ptr": 505}}, {"model": "apis_vocabularies.professiontype", "pk": 506, "fields": {"vocabsbaseclass_ptr": 506}}, {"model": "apis_vocabularies.professiontype", "pk": 511, "fields": {"vocabsbaseclass_ptr": 511}}, {"model": "apis_vocabularies.professiontype", "pk": 512, "fields": {"vocabsbaseclass_ptr": 512}}, {"model": "apis_vocabularies.professiontype", "pk": 513, "fields": {"vocabsbaseclass_ptr": 513}}, {"model": "apis_vocabularies.professiontype", "pk": 514, "fields": {"vocabsbaseclass_ptr": 514}}, {"model": "apis_vocabularies.professiontype", "pk": 515, "fields": {"vocabsbaseclass_ptr": 515}}, {"model": "apis_vocabularies.professiontype", "pk": 522, "fields": {"vocabsbaseclass_ptr": 522}}, {"model": "apis_vocabularies.professiontype", "pk": 523, "fields": {"vocabsbaseclass_ptr": 523}}, {"model": "apis_vocabularies.professiontype", "pk": 524, "fields": {"vocabsbaseclass_ptr": 524}}, {"model": "apis_vocabularies.professiontype", "pk": 525, "fields": {"vocabsbaseclass_ptr": 525}}, {"model": "apis_vocabularies.professiontype", "pk": 527, "fields": {"vocabsbaseclass_ptr": 527}}, {"model": "apis_vocabularies.professiontype", "pk": 528, "fields": {"vocabsbaseclass_ptr": 528}}, {"model": "apis_vocabularies.professiontype", "pk": 530, "fields": {"vocabsbaseclass_ptr": 530}}, {"model": "apis_vocabularies.professiontype", "pk": 531, "fields": {"vocabsbaseclass_ptr": 531}}, {"model": "apis_vocabularies.professiontype", "pk": 532, "fields": {"vocabsbaseclass_ptr": 532}}, {"model": "apis_vocabularies.professiontype", "pk": 533, "fields": {"vocabsbaseclass_ptr": 533}}, {"model": "apis_vocabularies.professiontype", "pk": 535, "fields": {"vocabsbaseclass_ptr": 535}}, {"model": "apis_vocabularies.professiontype", "pk": 536, "fields": {"vocabsbaseclass_ptr": 536}}, {"model": "apis_vocabularies.professiontype", "pk": 537, "fields": {"vocabsbaseclass_ptr": 537}}, {"model": "apis_vocabularies.professiontype", "pk": 538, "fields": {"vocabsbaseclass_ptr": 538}}, {"model": "apis_vocabularies.professiontype", "pk": 540, "fields": {"vocabsbaseclass_ptr": 540}}, {"model": "apis_vocabularies.professiontype", "pk": 541, "fields": {"vocabsbaseclass_ptr": 541}}, {"model": "apis_vocabularies.professiontype", "pk": 542, "fields": {"vocabsbaseclass_ptr": 542}}, {"model": "apis_vocabularies.professiontype", "pk": 544, "fields": {"vocabsbaseclass_ptr": 544}}, {"model": "apis_vocabularies.professiontype", "pk": 547, "fields": {"vocabsbaseclass_ptr": 547}}, {"model": "apis_vocabularies.professiontype", "pk": 550, "fields": {"vocabsbaseclass_ptr": 550}}, {"model": "apis_vocabularies.professiontype", "pk": 551, "fields": {"vocabsbaseclass_ptr": 551}}, {"model": "apis_vocabularies.professiontype", "pk": 552, "fields": {"vocabsbaseclass_ptr": 552}}, {"model": "apis_vocabularies.professiontype", "pk": 553, "fields": {"vocabsbaseclass_ptr": 553}}, {"model": "apis_vocabularies.professiontype", "pk": 554, "fields": {"vocabsbaseclass_ptr": 554}}, {"model": "apis_vocabularies.professiontype", "pk": 556, "fields": {"vocabsbaseclass_ptr": 556}}, {"model": "apis_vocabularies.professiontype", "pk": 559, "fields": {"vocabsbaseclass_ptr": 559}}, {"model": "apis_vocabularies.professiontype", "pk": 560, "fields": {"vocabsbaseclass_ptr": 560}}, {"model": "apis_vocabularies.professiontype", "pk": 561, "fields": {"vocabsbaseclass_ptr": 561}}, {"model": "apis_vocabularies.professiontype", "pk": 562, "fields": {"vocabsbaseclass_ptr": 562}}, {"model": "apis_vocabularies.professiontype", "pk": 564, "fields": {"vocabsbaseclass_ptr": 564}}, {"model": "apis_vocabularies.professiontype", "pk": 565, "fields": {"vocabsbaseclass_ptr": 565}}, {"model": "apis_vocabularies.professiontype", "pk": 567, "fields": {"vocabsbaseclass_ptr": 567}}, {"model": "apis_vocabularies.professiontype", "pk": 568, "fields": {"vocabsbaseclass_ptr": 568}}, {"model": "apis_vocabularies.professiontype", "pk": 570, "fields": {"vocabsbaseclass_ptr": 570}}, {"model": "apis_vocabularies.professiontype", "pk": 572, "fields": {"vocabsbaseclass_ptr": 572}}, {"model": "apis_vocabularies.professiontype", "pk": 574, "fields": {"vocabsbaseclass_ptr": 574}}, {"model": "apis_vocabularies.professiontype", "pk": 575, "fields": {"vocabsbaseclass_ptr": 575}}, {"model": "apis_vocabularies.professiontype", "pk": 576, "fields": {"vocabsbaseclass_ptr": 576}}, {"model": "apis_vocabularies.professiontype", "pk": 577, "fields": {"vocabsbaseclass_ptr": 577}}, {"model": "apis_vocabularies.professiontype", "pk": 578, "fields": {"vocabsbaseclass_ptr": 578}}, {"model": "apis_vocabularies.professiontype", "pk": 580, "fields": {"vocabsbaseclass_ptr": 580}}, {"model": "apis_vocabularies.professiontype", "pk": 581, "fields": {"vocabsbaseclass_ptr": 581}}, {"model": "apis_vocabularies.professiontype", "pk": 582, "fields": {"vocabsbaseclass_ptr": 582}}, {"model": "apis_vocabularies.professiontype", "pk": 583, "fields": {"vocabsbaseclass_ptr": 583}}, {"model": "apis_vocabularies.professiontype", "pk": 584, "fields": {"vocabsbaseclass_ptr": 584}}, {"model": "apis_vocabularies.professiontype", "pk": 585, "fields": {"vocabsbaseclass_ptr": 585}}, {"model": "apis_vocabularies.professiontype", "pk": 586, "fields": {"vocabsbaseclass_ptr": 586}}, {"model": "apis_vocabularies.professiontype", "pk": 587, "fields": {"vocabsbaseclass_ptr": 587}}, {"model": "apis_vocabularies.professiontype", "pk": 588, "fields": {"vocabsbaseclass_ptr": 588}}, {"model": "apis_vocabularies.professiontype", "pk": 589, "fields": {"vocabsbaseclass_ptr": 589}}, {"model": "apis_vocabularies.professiontype", "pk": 590, "fields": {"vocabsbaseclass_ptr": 590}}, {"model": "apis_vocabularies.professiontype", "pk": 591, "fields": {"vocabsbaseclass_ptr": 591}}, {"model": "apis_vocabularies.professiontype", "pk": 592, "fields": {"vocabsbaseclass_ptr": 592}}, {"model": "apis_vocabularies.professiontype", "pk": 593, "fields": {"vocabsbaseclass_ptr": 593}}, {"model": "apis_vocabularies.professiontype", "pk": 595, "fields": {"vocabsbaseclass_ptr": 595}}, {"model": "apis_vocabularies.professiontype", "pk": 596, "fields": {"vocabsbaseclass_ptr": 596}}, {"model": "apis_vocabularies.professiontype", "pk": 597, "fields": {"vocabsbaseclass_ptr": 597}}, {"model": "apis_vocabularies.professiontype", "pk": 600, "fields": {"vocabsbaseclass_ptr": 600}}, {"model": "apis_vocabularies.professiontype", "pk": 601, "fields": {"vocabsbaseclass_ptr": 601}}, {"model": "apis_vocabularies.professiontype", "pk": 602, "fields": {"vocabsbaseclass_ptr": 602}}, {"model": "apis_vocabularies.professiontype", "pk": 604, "fields": {"vocabsbaseclass_ptr": 604}}, {"model": "apis_vocabularies.professiontype", "pk": 605, "fields": {"vocabsbaseclass_ptr": 605}}, {"model": "apis_vocabularies.professiontype", "pk": 607, "fields": {"vocabsbaseclass_ptr": 607}}, {"model": "apis_vocabularies.professiontype", "pk": 608, "fields": {"vocabsbaseclass_ptr": 608}}, {"model": "apis_vocabularies.professiontype", "pk": 609, "fields": {"vocabsbaseclass_ptr": 609}}, {"model": "apis_vocabularies.professiontype", "pk": 610, "fields": {"vocabsbaseclass_ptr": 610}}, {"model": "apis_vocabularies.professiontype", "pk": 611, "fields": {"vocabsbaseclass_ptr": 611}}, {"model": "apis_vocabularies.professiontype", "pk": 612, "fields": {"vocabsbaseclass_ptr": 612}}, {"model": "apis_vocabularies.professiontype", "pk": 615, "fields": {"vocabsbaseclass_ptr": 615}}, {"model": "apis_vocabularies.professiontype", "pk": 616, "fields": {"vocabsbaseclass_ptr": 616}}, {"model": "apis_vocabularies.professiontype", "pk": 617, "fields": {"vocabsbaseclass_ptr": 617}}, {"model": "apis_vocabularies.professiontype", "pk": 618, "fields": {"vocabsbaseclass_ptr": 618}}, {"model": "apis_vocabularies.professiontype", "pk": 619, "fields": {"vocabsbaseclass_ptr": 619}}, {"model": "apis_vocabularies.professiontype", "pk": 623, "fields": {"vocabsbaseclass_ptr": 623}}, {"model": "apis_vocabularies.professiontype", "pk": 624, "fields": {"vocabsbaseclass_ptr": 624}}, {"model": "apis_vocabularies.professiontype", "pk": 627, "fields": {"vocabsbaseclass_ptr": 627}}, {"model": "apis_vocabularies.professiontype", "pk": 628, "fields": {"vocabsbaseclass_ptr": 628}}, {"model": "apis_vocabularies.professiontype", "pk": 629, "fields": {"vocabsbaseclass_ptr": 629}}, {"model": "apis_vocabularies.professiontype", "pk": 632, "fields": {"vocabsbaseclass_ptr": 632}}, {"model": "apis_vocabularies.professiontype", "pk": 633, "fields": {"vocabsbaseclass_ptr": 633}}, {"model": "apis_vocabularies.professiontype", "pk": 635, "fields": {"vocabsbaseclass_ptr": 635}}, {"model": "apis_vocabularies.professiontype", "pk": 636, "fields": {"vocabsbaseclass_ptr": 636}}, {"model": "apis_vocabularies.professiontype", "pk": 638, "fields": {"vocabsbaseclass_ptr": 638}}, {"model": "apis_vocabularies.professiontype", "pk": 640, "fields": {"vocabsbaseclass_ptr": 640}}, {"model": "apis_vocabularies.professiontype", "pk": 641, "fields": {"vocabsbaseclass_ptr": 641}}, {"model": "apis_vocabularies.professiontype", "pk": 642, "fields": {"vocabsbaseclass_ptr": 642}}, {"model": "apis_vocabularies.professiontype", "pk": 643, "fields": {"vocabsbaseclass_ptr": 643}}, {"model": "apis_vocabularies.professiontype", "pk": 644, "fields": {"vocabsbaseclass_ptr": 644}}, {"model": "apis_vocabularies.professiontype", "pk": 645, "fields": {"vocabsbaseclass_ptr": 645}}, {"model": "apis_vocabularies.professiontype", "pk": 646, "fields": {"vocabsbaseclass_ptr": 646}}, {"model": "apis_vocabularies.professiontype", "pk": 647, "fields": {"vocabsbaseclass_ptr": 647}}, {"model": "apis_vocabularies.professiontype", "pk": 648, "fields": {"vocabsbaseclass_ptr": 648}}, {"model": "apis_vocabularies.professiontype", "pk": 649, "fields": {"vocabsbaseclass_ptr": 649}}, {"model": "apis_vocabularies.professiontype", "pk": 650, "fields": {"vocabsbaseclass_ptr": 650}}, {"model": "apis_vocabularies.professiontype", "pk": 651, "fields": {"vocabsbaseclass_ptr": 651}}, {"model": "apis_vocabularies.professiontype", "pk": 654, "fields": {"vocabsbaseclass_ptr": 654}}, {"model": "apis_vocabularies.professiontype", "pk": 655, "fields": {"vocabsbaseclass_ptr": 655}}, {"model": "apis_vocabularies.professiontype", "pk": 656, "fields": {"vocabsbaseclass_ptr": 656}}, {"model": "apis_vocabularies.professiontype", "pk": 657, "fields": {"vocabsbaseclass_ptr": 657}}, {"model": "apis_vocabularies.professiontype", "pk": 658, "fields": {"vocabsbaseclass_ptr": 658}}, {"model": "apis_vocabularies.professiontype", "pk": 659, "fields": {"vocabsbaseclass_ptr": 659}}, {"model": "apis_vocabularies.professiontype", "pk": 666, "fields": {"vocabsbaseclass_ptr": 666}}, {"model": "apis_vocabularies.professiontype", "pk": 667, "fields": {"vocabsbaseclass_ptr": 667}}, {"model": "apis_vocabularies.professiontype", "pk": 669, "fields": {"vocabsbaseclass_ptr": 669}}, {"model": "apis_vocabularies.professiontype", "pk": 670, "fields": {"vocabsbaseclass_ptr": 670}}, {"model": "apis_vocabularies.professiontype", "pk": 671, "fields": {"vocabsbaseclass_ptr": 671}}, {"model": "apis_vocabularies.professiontype", "pk": 673, "fields": {"vocabsbaseclass_ptr": 673}}, {"model": "apis_vocabularies.professiontype", "pk": 674, "fields": {"vocabsbaseclass_ptr": 674}}, {"model": "apis_vocabularies.professiontype", "pk": 676, "fields": {"vocabsbaseclass_ptr": 676}}, {"model": "apis_vocabularies.professiontype", "pk": 677, "fields": {"vocabsbaseclass_ptr": 677}}, {"model": "apis_vocabularies.professiontype", "pk": 678, "fields": {"vocabsbaseclass_ptr": 678}}, {"model": "apis_vocabularies.professiontype", "pk": 679, "fields": {"vocabsbaseclass_ptr": 679}}, {"model": "apis_vocabularies.professiontype", "pk": 681, "fields": {"vocabsbaseclass_ptr": 681}}, {"model": "apis_vocabularies.professiontype", "pk": 683, "fields": {"vocabsbaseclass_ptr": 683}}, {"model": "apis_vocabularies.professiontype", "pk": 684, "fields": {"vocabsbaseclass_ptr": 684}}, {"model": "apis_vocabularies.professiontype", "pk": 685, "fields": {"vocabsbaseclass_ptr": 685}}, {"model": "apis_vocabularies.professiontype", "pk": 686, "fields": {"vocabsbaseclass_ptr": 686}}, {"model": "apis_vocabularies.professiontype", "pk": 687, "fields": {"vocabsbaseclass_ptr": 687}}, {"model": "apis_vocabularies.professiontype", "pk": 688, "fields": {"vocabsbaseclass_ptr": 688}}, {"model": "apis_vocabularies.professiontype", "pk": 689, "fields": {"vocabsbaseclass_ptr": 689}}, {"model": "apis_vocabularies.professiontype", "pk": 692, "fields": {"vocabsbaseclass_ptr": 692}}, {"model": "apis_vocabularies.professiontype", "pk": 693, "fields": {"vocabsbaseclass_ptr": 693}}, {"model": "apis_vocabularies.professiontype", "pk": 695, "fields": {"vocabsbaseclass_ptr": 695}}, {"model": "apis_vocabularies.professiontype", "pk": 696, "fields": {"vocabsbaseclass_ptr": 696}}, {"model": "apis_vocabularies.professiontype", "pk": 698, "fields": {"vocabsbaseclass_ptr": 698}}, {"model": "apis_vocabularies.professiontype", "pk": 700, "fields": {"vocabsbaseclass_ptr": 700}}, {"model": "apis_vocabularies.professiontype", "pk": 701, "fields": {"vocabsbaseclass_ptr": 701}}, {"model": "apis_vocabularies.professiontype", "pk": 702, "fields": {"vocabsbaseclass_ptr": 702}}, {"model": "apis_vocabularies.professiontype", "pk": 704, "fields": {"vocabsbaseclass_ptr": 704}}, {"model": "apis_vocabularies.professiontype", "pk": 706, "fields": {"vocabsbaseclass_ptr": 706}}, {"model": "apis_vocabularies.professiontype", "pk": 708, "fields": {"vocabsbaseclass_ptr": 708}}, {"model": "apis_vocabularies.professiontype", "pk": 709, "fields": {"vocabsbaseclass_ptr": 709}}, {"model": "apis_vocabularies.professiontype", "pk": 710, "fields": {"vocabsbaseclass_ptr": 710}}, {"model": "apis_vocabularies.professiontype", "pk": 711, "fields": {"vocabsbaseclass_ptr": 711}}, {"model": "apis_vocabularies.professiontype", "pk": 712, "fields": {"vocabsbaseclass_ptr": 712}}, {"model": "apis_vocabularies.professiontype", "pk": 713, "fields": {"vocabsbaseclass_ptr": 713}}, {"model": "apis_vocabularies.professiontype", "pk": 715, "fields": {"vocabsbaseclass_ptr": 715}}, {"model": "apis_vocabularies.professiontype", "pk": 716, "fields": {"vocabsbaseclass_ptr": 716}}, {"model": "apis_vocabularies.professiontype", "pk": 717, "fields": {"vocabsbaseclass_ptr": 717}}, {"model": "apis_vocabularies.professiontype", "pk": 719, "fields": {"vocabsbaseclass_ptr": 719}}, {"model": "apis_vocabularies.professiontype", "pk": 721, "fields": {"vocabsbaseclass_ptr": 721}}, {"model": "apis_vocabularies.professiontype", "pk": 722, "fields": {"vocabsbaseclass_ptr": 722}}, {"model": "apis_vocabularies.professiontype", "pk": 723, "fields": {"vocabsbaseclass_ptr": 723}}, {"model": "apis_vocabularies.professiontype", "pk": 725, "fields": {"vocabsbaseclass_ptr": 725}}, {"model": "apis_vocabularies.professiontype", "pk": 726, "fields": {"vocabsbaseclass_ptr": 726}}, {"model": "apis_vocabularies.professiontype", "pk": 727, "fields": {"vocabsbaseclass_ptr": 727}}, {"model": "apis_vocabularies.professiontype", "pk": 728, "fields": {"vocabsbaseclass_ptr": 728}}, {"model": "apis_vocabularies.professiontype", "pk": 732, "fields": {"vocabsbaseclass_ptr": 732}}, {"model": "apis_vocabularies.professiontype", "pk": 733, "fields": {"vocabsbaseclass_ptr": 733}}, {"model": "apis_vocabularies.professiontype", "pk": 734, "fields": {"vocabsbaseclass_ptr": 734}}, {"model": "apis_vocabularies.professiontype", "pk": 735, "fields": {"vocabsbaseclass_ptr": 735}}, {"model": "apis_vocabularies.professiontype", "pk": 737, "fields": {"vocabsbaseclass_ptr": 737}}, {"model": "apis_vocabularies.professiontype", "pk": 739, "fields": {"vocabsbaseclass_ptr": 739}}, {"model": "apis_vocabularies.professiontype", "pk": 740, "fields": {"vocabsbaseclass_ptr": 740}}, {"model": "apis_vocabularies.professiontype", "pk": 743, "fields": {"vocabsbaseclass_ptr": 743}}, {"model": "apis_vocabularies.professiontype", "pk": 744, "fields": {"vocabsbaseclass_ptr": 744}}, {"model": "apis_vocabularies.professiontype", "pk": 745, "fields": {"vocabsbaseclass_ptr": 745}}, {"model": "apis_vocabularies.professiontype", "pk": 746, "fields": {"vocabsbaseclass_ptr": 746}}, {"model": "apis_vocabularies.professiontype", "pk": 748, "fields": {"vocabsbaseclass_ptr": 748}}, {"model": "apis_vocabularies.professiontype", "pk": 749, "fields": {"vocabsbaseclass_ptr": 749}}, {"model": "apis_vocabularies.professiontype", "pk": 750, "fields": {"vocabsbaseclass_ptr": 750}}, {"model": "apis_vocabularies.professiontype", "pk": 752, "fields": {"vocabsbaseclass_ptr": 752}}, {"model": "apis_vocabularies.professiontype", "pk": 753, "fields": {"vocabsbaseclass_ptr": 753}}, {"model": "apis_vocabularies.professiontype", "pk": 755, "fields": {"vocabsbaseclass_ptr": 755}}, {"model": "apis_vocabularies.professiontype", "pk": 756, "fields": {"vocabsbaseclass_ptr": 756}}, {"model": "apis_vocabularies.professiontype", "pk": 757, "fields": {"vocabsbaseclass_ptr": 757}}, {"model": "apis_vocabularies.professiontype", "pk": 760, "fields": {"vocabsbaseclass_ptr": 760}}, {"model": "apis_vocabularies.professiontype", "pk": 761, "fields": {"vocabsbaseclass_ptr": 761}}, {"model": "apis_vocabularies.professiontype", "pk": 762, "fields": {"vocabsbaseclass_ptr": 762}}, {"model": "apis_vocabularies.professiontype", "pk": 763, "fields": {"vocabsbaseclass_ptr": 763}}, {"model": "apis_vocabularies.professiontype", "pk": 764, "fields": {"vocabsbaseclass_ptr": 764}}, {"model": "apis_vocabularies.professiontype", "pk": 765, "fields": {"vocabsbaseclass_ptr": 765}}, {"model": "apis_vocabularies.professiontype", "pk": 766, "fields": {"vocabsbaseclass_ptr": 766}}, {"model": "apis_vocabularies.professiontype", "pk": 767, "fields": {"vocabsbaseclass_ptr": 767}}, {"model": "apis_vocabularies.professiontype", "pk": 768, "fields": {"vocabsbaseclass_ptr": 768}}, {"model": "apis_vocabularies.professiontype", "pk": 770, "fields": {"vocabsbaseclass_ptr": 770}}, {"model": "apis_vocabularies.professiontype", "pk": 771, "fields": {"vocabsbaseclass_ptr": 771}}, {"model": "apis_vocabularies.professiontype", "pk": 775, "fields": {"vocabsbaseclass_ptr": 775}}, {"model": "apis_vocabularies.professiontype", "pk": 776, "fields": {"vocabsbaseclass_ptr": 776}}, {"model": "apis_vocabularies.professiontype", "pk": 779, "fields": {"vocabsbaseclass_ptr": 779}}, {"model": "apis_vocabularies.professiontype", "pk": 780, "fields": {"vocabsbaseclass_ptr": 780}}, {"model": "apis_vocabularies.professiontype", "pk": 782, "fields": {"vocabsbaseclass_ptr": 782}}, {"model": "apis_vocabularies.professiontype", "pk": 783, "fields": {"vocabsbaseclass_ptr": 783}}, {"model": "apis_vocabularies.professiontype", "pk": 785, "fields": {"vocabsbaseclass_ptr": 785}}, {"model": "apis_vocabularies.professiontype", "pk": 786, "fields": {"vocabsbaseclass_ptr": 786}}, {"model": "apis_vocabularies.professiontype", "pk": 787, "fields": {"vocabsbaseclass_ptr": 787}}, {"model": "apis_vocabularies.professiontype", "pk": 788, "fields": {"vocabsbaseclass_ptr": 788}}, {"model": "apis_vocabularies.professiontype", "pk": 791, "fields": {"vocabsbaseclass_ptr": 791}}, {"model": "apis_vocabularies.professiontype", "pk": 793, "fields": {"vocabsbaseclass_ptr": 793}}, {"model": "apis_vocabularies.professiontype", "pk": 795, "fields": {"vocabsbaseclass_ptr": 795}}, {"model": "apis_vocabularies.professiontype", "pk": 796, "fields": {"vocabsbaseclass_ptr": 796}}, {"model": "apis_vocabularies.professiontype", "pk": 797, "fields": {"vocabsbaseclass_ptr": 797}}, {"model": "apis_vocabularies.professiontype", "pk": 798, "fields": {"vocabsbaseclass_ptr": 798}}, {"model": "apis_vocabularies.professiontype", "pk": 799, "fields": {"vocabsbaseclass_ptr": 799}}, {"model": "apis_vocabularies.professiontype", "pk": 800, "fields": {"vocabsbaseclass_ptr": 800}}, {"model": "apis_vocabularies.professiontype", "pk": 801, "fields": {"vocabsbaseclass_ptr": 801}}, {"model": "apis_vocabularies.professiontype", "pk": 803, "fields": {"vocabsbaseclass_ptr": 803}}, {"model": "apis_vocabularies.professiontype", "pk": 805, "fields": {"vocabsbaseclass_ptr": 805}}, {"model": "apis_vocabularies.professiontype", "pk": 806, "fields": {"vocabsbaseclass_ptr": 806}}, {"model": "apis_vocabularies.professiontype", "pk": 807, "fields": {"vocabsbaseclass_ptr": 807}}, {"model": "apis_vocabularies.professiontype", "pk": 811, "fields": {"vocabsbaseclass_ptr": 811}}, {"model": "apis_vocabularies.professiontype", "pk": 812, "fields": {"vocabsbaseclass_ptr": 812}}, {"model": "apis_vocabularies.professiontype", "pk": 813, "fields": {"vocabsbaseclass_ptr": 813}}, {"model": "apis_vocabularies.professiontype", "pk": 814, "fields": {"vocabsbaseclass_ptr": 814}}, {"model": "apis_vocabularies.professiontype", "pk": 816, "fields": {"vocabsbaseclass_ptr": 816}}, {"model": "apis_vocabularies.professiontype", "pk": 817, "fields": {"vocabsbaseclass_ptr": 817}}, {"model": "apis_vocabularies.professiontype", "pk": 818, "fields": {"vocabsbaseclass_ptr": 818}}, {"model": "apis_vocabularies.professiontype", "pk": 819, "fields": {"vocabsbaseclass_ptr": 819}}, {"model": "apis_vocabularies.professiontype", "pk": 820, "fields": {"vocabsbaseclass_ptr": 820}}, {"model": "apis_vocabularies.professiontype", "pk": 821, "fields": {"vocabsbaseclass_ptr": 821}}, {"model": "apis_vocabularies.professiontype", "pk": 824, "fields": {"vocabsbaseclass_ptr": 824}}, {"model": "apis_vocabularies.professiontype", "pk": 826, "fields": {"vocabsbaseclass_ptr": 826}}, {"model": "apis_vocabularies.professiontype", "pk": 830, "fields": {"vocabsbaseclass_ptr": 830}}, {"model": "apis_vocabularies.professiontype", "pk": 831, "fields": {"vocabsbaseclass_ptr": 831}}, {"model": "apis_vocabularies.professiontype", "pk": 833, "fields": {"vocabsbaseclass_ptr": 833}}, {"model": "apis_vocabularies.professiontype", "pk": 834, "fields": {"vocabsbaseclass_ptr": 834}}, {"model": "apis_vocabularies.professiontype", "pk": 836, "fields": {"vocabsbaseclass_ptr": 836}}, {"model": "apis_vocabularies.professiontype", "pk": 838, "fields": {"vocabsbaseclass_ptr": 838}}, {"model": "apis_vocabularies.professiontype", "pk": 842, "fields": {"vocabsbaseclass_ptr": 842}}, {"model": "apis_vocabularies.professiontype", "pk": 844, "fields": {"vocabsbaseclass_ptr": 844}}, {"model": "apis_vocabularies.professiontype", "pk": 845, "fields": {"vocabsbaseclass_ptr": 845}}, {"model": "apis_vocabularies.professiontype", "pk": 854, "fields": {"vocabsbaseclass_ptr": 854}}, {"model": "apis_vocabularies.professiontype", "pk": 862, "fields": {"vocabsbaseclass_ptr": 862}}, {"model": "apis_vocabularies.professiontype", "pk": 863, "fields": {"vocabsbaseclass_ptr": 863}}, {"model": "apis_vocabularies.professiontype", "pk": 864, "fields": {"vocabsbaseclass_ptr": 864}}, {"model": "apis_vocabularies.professiontype", "pk": 866, "fields": {"vocabsbaseclass_ptr": 866}}, {"model": "apis_vocabularies.professiontype", "pk": 867, "fields": {"vocabsbaseclass_ptr": 867}}, {"model": "apis_vocabularies.professiontype", "pk": 873, "fields": {"vocabsbaseclass_ptr": 873}}, {"model": "apis_vocabularies.professiontype", "pk": 875, "fields": {"vocabsbaseclass_ptr": 875}}, {"model": "apis_vocabularies.professiontype", "pk": 879, "fields": {"vocabsbaseclass_ptr": 879}}, {"model": "apis_vocabularies.professiontype", "pk": 885, "fields": {"vocabsbaseclass_ptr": 885}}, {"model": "apis_vocabularies.professiontype", "pk": 896, "fields": {"vocabsbaseclass_ptr": 896}}, {"model": "apis_vocabularies.professiontype", "pk": 903, "fields": {"vocabsbaseclass_ptr": 903}}, {"model": "apis_vocabularies.professiontype", "pk": 905, "fields": {"vocabsbaseclass_ptr": 905}}, {"model": "apis_vocabularies.professiontype", "pk": 906, "fields": {"vocabsbaseclass_ptr": 906}}, {"model": "apis_vocabularies.professiontype", "pk": 907, "fields": {"vocabsbaseclass_ptr": 907}}, {"model": "apis_vocabularies.professiontype", "pk": 909, "fields": {"vocabsbaseclass_ptr": 909}}, {"model": "apis_vocabularies.professiontype", "pk": 911, "fields": {"vocabsbaseclass_ptr": 911}}, {"model": "apis_vocabularies.professiontype", "pk": 913, "fields": {"vocabsbaseclass_ptr": 913}}, {"model": "apis_vocabularies.professiontype", "pk": 917, "fields": {"vocabsbaseclass_ptr": 917}}, {"model": "apis_vocabularies.professiontype", "pk": 918, "fields": {"vocabsbaseclass_ptr": 918}}, {"model": "apis_vocabularies.professiontype", "pk": 919, "fields": {"vocabsbaseclass_ptr": 919}}, {"model": "apis_vocabularies.professiontype", "pk": 920, "fields": {"vocabsbaseclass_ptr": 920}}, {"model": "apis_vocabularies.professiontype", "pk": 921, "fields": {"vocabsbaseclass_ptr": 921}}, {"model": "apis_vocabularies.professiontype", "pk": 922, "fields": {"vocabsbaseclass_ptr": 922}}, {"model": "apis_vocabularies.professiontype", "pk": 923, "fields": {"vocabsbaseclass_ptr": 923}}, {"model": "apis_vocabularies.professiontype", "pk": 926, "fields": {"vocabsbaseclass_ptr": 926}}, {"model": "apis_vocabularies.professiontype", "pk": 929, "fields": {"vocabsbaseclass_ptr": 929}}, {"model": "apis_vocabularies.professiontype", "pk": 931, "fields": {"vocabsbaseclass_ptr": 931}}, {"model": "apis_vocabularies.professiontype", "pk": 932, "fields": {"vocabsbaseclass_ptr": 932}}, {"model": "apis_vocabularies.professiontype", "pk": 935, "fields": {"vocabsbaseclass_ptr": 935}}, {"model": "apis_vocabularies.professiontype", "pk": 936, "fields": {"vocabsbaseclass_ptr": 936}}, {"model": "apis_vocabularies.professiontype", "pk": 938, "fields": {"vocabsbaseclass_ptr": 938}}, {"model": "apis_vocabularies.professiontype", "pk": 939, "fields": {"vocabsbaseclass_ptr": 939}}, {"model": "apis_vocabularies.professiontype", "pk": 940, "fields": {"vocabsbaseclass_ptr": 940}}, {"model": "apis_vocabularies.professiontype", "pk": 941, "fields": {"vocabsbaseclass_ptr": 941}}, {"model": "apis_vocabularies.professiontype", "pk": 943, "fields": {"vocabsbaseclass_ptr": 943}}, {"model": "apis_vocabularies.professiontype", "pk": 944, "fields": {"vocabsbaseclass_ptr": 944}}, {"model": "apis_vocabularies.professiontype", "pk": 945, "fields": {"vocabsbaseclass_ptr": 945}}, {"model": "apis_vocabularies.professiontype", "pk": 946, "fields": {"vocabsbaseclass_ptr": 946}}, {"model": "apis_vocabularies.professiontype", "pk": 949, "fields": {"vocabsbaseclass_ptr": 949}}, {"model": "apis_vocabularies.professiontype", "pk": 950, "fields": {"vocabsbaseclass_ptr": 950}}, {"model": "apis_vocabularies.professiontype", "pk": 952, "fields": {"vocabsbaseclass_ptr": 952}}, {"model": "apis_vocabularies.professiontype", "pk": 953, "fields": {"vocabsbaseclass_ptr": 953}}, {"model": "apis_vocabularies.professiontype", "pk": 958, "fields": {"vocabsbaseclass_ptr": 958}}, {"model": "apis_vocabularies.professiontype", "pk": 959, "fields": {"vocabsbaseclass_ptr": 959}}, {"model": "apis_vocabularies.professiontype", "pk": 961, "fields": {"vocabsbaseclass_ptr": 961}}, {"model": "apis_vocabularies.professiontype", "pk": 962, "fields": {"vocabsbaseclass_ptr": 962}}, {"model": "apis_vocabularies.professiontype", "pk": 963, "fields": {"vocabsbaseclass_ptr": 963}}, {"model": "apis_vocabularies.professiontype", "pk": 964, "fields": {"vocabsbaseclass_ptr": 964}}, {"model": "apis_vocabularies.professiontype", "pk": 967, "fields": {"vocabsbaseclass_ptr": 967}}, {"model": "apis_vocabularies.professiontype", "pk": 968, "fields": {"vocabsbaseclass_ptr": 968}}, {"model": "apis_vocabularies.professiontype", "pk": 969, "fields": {"vocabsbaseclass_ptr": 969}}, {"model": "apis_vocabularies.professiontype", "pk": 1172, "fields": {"vocabsbaseclass_ptr": 1172}}, {"model": "apis_vocabularies.professiontype", "pk": 1245, "fields": {"vocabsbaseclass_ptr": 1245}}, {"model": "apis_vocabularies.professiontype", "pk": 1246, "fields": {"vocabsbaseclass_ptr": 1246}}, {"model": "apis_vocabularies.professiontype", "pk": 1248, "fields": {"vocabsbaseclass_ptr": 1248}}, {"model": "apis_vocabularies.professiontype", "pk": 1259, "fields": {"vocabsbaseclass_ptr": 1259}}, {"model": "apis_vocabularies.professiontype", "pk": 1263, "fields": {"vocabsbaseclass_ptr": 1263}}, {"model": "apis_vocabularies.professiontype", "pk": 1264, "fields": {"vocabsbaseclass_ptr": 1264}}, {"model": "apis_vocabularies.professiontype", "pk": 1265, "fields": {"vocabsbaseclass_ptr": 1265}}, {"model": "apis_vocabularies.professiontype", "pk": 1267, "fields": {"vocabsbaseclass_ptr": 1267}}, {"model": "apis_vocabularies.professiontype", "pk": 1269, "fields": {"vocabsbaseclass_ptr": 1269}}, {"model": "apis_vocabularies.professiontype", "pk": 1270, "fields": {"vocabsbaseclass_ptr": 1270}}, {"model": "apis_vocabularies.professiontype", "pk": 1271, "fields": {"vocabsbaseclass_ptr": 1271}}, {"model": "apis_vocabularies.professiontype", "pk": 1272, "fields": {"vocabsbaseclass_ptr": 1272}}, {"model": "apis_vocabularies.professiontype", "pk": 1273, "fields": {"vocabsbaseclass_ptr": 1273}}, {"model": "apis_vocabularies.professiontype", "pk": 1274, "fields": {"vocabsbaseclass_ptr": 1274}}, {"model": "apis_vocabularies.professiontype", "pk": 1275, "fields": {"vocabsbaseclass_ptr": 1275}}, {"model": "apis_vocabularies.professiontype", "pk": 1276, "fields": {"vocabsbaseclass_ptr": 1276}}, {"model": "apis_vocabularies.professiontype", "pk": 1279, "fields": {"vocabsbaseclass_ptr": 1279}}, {"model": "apis_vocabularies.professiontype", "pk": 1280, "fields": {"vocabsbaseclass_ptr": 1280}}, {"model": "apis_vocabularies.professiontype", "pk": 1281, "fields": {"vocabsbaseclass_ptr": 1281}}, {"model": "apis_vocabularies.professiontype", "pk": 1282, "fields": {"vocabsbaseclass_ptr": 1282}}, {"model": "apis_vocabularies.professiontype", "pk": 1283, "fields": {"vocabsbaseclass_ptr": 1283}}, {"model": "apis_vocabularies.professiontype", "pk": 1286, "fields": {"vocabsbaseclass_ptr": 1286}}, {"model": "apis_vocabularies.professiontype", "pk": 1289, "fields": {"vocabsbaseclass_ptr": 1289}}, {"model": "apis_vocabularies.professiontype", "pk": 1290, "fields": {"vocabsbaseclass_ptr": 1290}}, {"model": "apis_vocabularies.professiontype", "pk": 1292, "fields": {"vocabsbaseclass_ptr": 1292}}, {"model": "apis_vocabularies.professiontype", "pk": 1293, "fields": {"vocabsbaseclass_ptr": 1293}}, {"model": "apis_vocabularies.professiontype", "pk": 1299, "fields": {"vocabsbaseclass_ptr": 1299}}, {"model": "apis_vocabularies.professiontype", "pk": 1300, "fields": {"vocabsbaseclass_ptr": 1300}}, {"model": "apis_vocabularies.professiontype", "pk": 1301, "fields": {"vocabsbaseclass_ptr": 1301}}, {"model": "apis_vocabularies.professiontype", "pk": 1303, "fields": {"vocabsbaseclass_ptr": 1303}}, {"model": "apis_vocabularies.professiontype", "pk": 1304, "fields": {"vocabsbaseclass_ptr": 1304}}, {"model": "apis_vocabularies.professiontype", "pk": 1305, "fields": {"vocabsbaseclass_ptr": 1305}}, {"model": "apis_vocabularies.professiontype", "pk": 1306, "fields": {"vocabsbaseclass_ptr": 1306}}, {"model": "apis_vocabularies.professiontype", "pk": 1307, "fields": {"vocabsbaseclass_ptr": 1307}}, {"model": "apis_vocabularies.professiontype", "pk": 1311, "fields": {"vocabsbaseclass_ptr": 1311}}, {"model": "apis_vocabularies.professiontype", "pk": 1312, "fields": {"vocabsbaseclass_ptr": 1312}}, {"model": "apis_vocabularies.professiontype", "pk": 1315, "fields": {"vocabsbaseclass_ptr": 1315}}, {"model": "apis_vocabularies.professiontype", "pk": 1316, "fields": {"vocabsbaseclass_ptr": 1316}}, {"model": "apis_vocabularies.professiontype", "pk": 1317, "fields": {"vocabsbaseclass_ptr": 1317}}, {"model": "apis_vocabularies.professiontype", "pk": 1318, "fields": {"vocabsbaseclass_ptr": 1318}}, {"model": "apis_vocabularies.professiontype", "pk": 1319, "fields": {"vocabsbaseclass_ptr": 1319}}, {"model": "apis_vocabularies.professiontype", "pk": 1320, "fields": {"vocabsbaseclass_ptr": 1320}}, {"model": "apis_vocabularies.professiontype", "pk": 1321, "fields": {"vocabsbaseclass_ptr": 1321}}, {"model": "apis_vocabularies.professiontype", "pk": 1322, "fields": {"vocabsbaseclass_ptr": 1322}}, {"model": "apis_vocabularies.professiontype", "pk": 1323, "fields": {"vocabsbaseclass_ptr": 1323}}, {"model": "apis_vocabularies.professiontype", "pk": 1324, "fields": {"vocabsbaseclass_ptr": 1324}}, {"model": "apis_vocabularies.professiontype", "pk": 1327, "fields": {"vocabsbaseclass_ptr": 1327}}, {"model": "apis_vocabularies.professiontype", "pk": 1328, "fields": {"vocabsbaseclass_ptr": 1328}}, {"model": "apis_vocabularies.professiontype", "pk": 1329, "fields": {"vocabsbaseclass_ptr": 1329}}, {"model": "apis_vocabularies.professiontype", "pk": 1331, "fields": {"vocabsbaseclass_ptr": 1331}}, {"model": "apis_vocabularies.professiontype", "pk": 1339, "fields": {"vocabsbaseclass_ptr": 1339}}, {"model": "apis_vocabularies.professiontype", "pk": 1341, "fields": {"vocabsbaseclass_ptr": 1341}}, {"model": "apis_vocabularies.professiontype", "pk": 1355, "fields": {"vocabsbaseclass_ptr": 1355}}, {"model": "apis_vocabularies.professiontype", "pk": 1365, "fields": {"vocabsbaseclass_ptr": 1365}}, {"model": "apis_vocabularies.professiontype", "pk": 1379, "fields": {"vocabsbaseclass_ptr": 1379}}, {"model": "apis_vocabularies.professiontype", "pk": 1381, "fields": {"vocabsbaseclass_ptr": 1381}}, {"model": "apis_vocabularies.professiontype", "pk": 1383, "fields": {"vocabsbaseclass_ptr": 1383}}, {"model": "apis_vocabularies.professiontype", "pk": 1390, "fields": {"vocabsbaseclass_ptr": 1390}}, {"model": "apis_vocabularies.professiontype", "pk": 1391, "fields": {"vocabsbaseclass_ptr": 1391}}, {"model": "apis_vocabularies.professiontype", "pk": 1393, "fields": {"vocabsbaseclass_ptr": 1393}}, {"model": "apis_vocabularies.professiontype", "pk": 1397, "fields": {"vocabsbaseclass_ptr": 1397}}, {"model": "apis_vocabularies.professiontype", "pk": 1400, "fields": {"vocabsbaseclass_ptr": 1400}}, {"model": "apis_vocabularies.professiontype", "pk": 1404, "fields": {"vocabsbaseclass_ptr": 1404}}, {"model": "apis_vocabularies.professiontype", "pk": 1422, "fields": {"vocabsbaseclass_ptr": 1422}}, {"model": "apis_vocabularies.professiontype", "pk": 1423, "fields": {"vocabsbaseclass_ptr": 1423}}, {"model": "apis_vocabularies.professiontype", "pk": 1425, "fields": {"vocabsbaseclass_ptr": 1425}}, {"model": "apis_vocabularies.professiontype", "pk": 1430, "fields": {"vocabsbaseclass_ptr": 1430}}, {"model": "apis_vocabularies.professiontype", "pk": 1432, "fields": {"vocabsbaseclass_ptr": 1432}}, {"model": "apis_vocabularies.professiontype", "pk": 1433, "fields": {"vocabsbaseclass_ptr": 1433}}, {"model": "apis_vocabularies.professiontype", "pk": 1444, "fields": {"vocabsbaseclass_ptr": 1444}}, {"model": "apis_vocabularies.professiontype", "pk": 1449, "fields": {"vocabsbaseclass_ptr": 1449}}, {"model": "apis_vocabularies.professiontype", "pk": 1450, "fields": {"vocabsbaseclass_ptr": 1450}}, {"model": "apis_vocabularies.professiontype", "pk": 1452, "fields": {"vocabsbaseclass_ptr": 1452}}, {"model": "apis_vocabularies.professiontype", "pk": 1458, "fields": {"vocabsbaseclass_ptr": 1458}}, {"model": "apis_vocabularies.professiontype", "pk": 1459, "fields": {"vocabsbaseclass_ptr": 1459}}, {"model": "apis_vocabularies.professiontype", "pk": 1468, "fields": {"vocabsbaseclass_ptr": 1468}}, {"model": "apis_vocabularies.professiontype", "pk": 1472, "fields": {"vocabsbaseclass_ptr": 1472}}, {"model": "apis_vocabularies.professiontype", "pk": 1473, "fields": {"vocabsbaseclass_ptr": 1473}}, {"model": "apis_vocabularies.professiontype", "pk": 1494, "fields": {"vocabsbaseclass_ptr": 1494}}, {"model": "apis_vocabularies.professiontype", "pk": 1501, "fields": {"vocabsbaseclass_ptr": 1501}}, {"model": "apis_vocabularies.professiontype", "pk": 1503, "fields": {"vocabsbaseclass_ptr": 1503}}, {"model": "apis_vocabularies.professiontype", "pk": 1506, "fields": {"vocabsbaseclass_ptr": 1506}}, {"model": "apis_vocabularies.professiontype", "pk": 1535, "fields": {"vocabsbaseclass_ptr": 1535}}, {"model": "apis_vocabularies.professiontype", "pk": 1540, "fields": {"vocabsbaseclass_ptr": 1540}}, {"model": "apis_vocabularies.professiontype", "pk": 1544, "fields": {"vocabsbaseclass_ptr": 1544}}, {"model": "apis_vocabularies.professiontype", "pk": 1556, "fields": {"vocabsbaseclass_ptr": 1556}}, {"model": "apis_vocabularies.professiontype", "pk": 1562, "fields": {"vocabsbaseclass_ptr": 1562}}, {"model": "apis_vocabularies.professiontype", "pk": 1584, "fields": {"vocabsbaseclass_ptr": 1584}}, {"model": "apis_vocabularies.professiontype", "pk": 1588, "fields": {"vocabsbaseclass_ptr": 1588}}, {"model": "apis_vocabularies.professiontype", "pk": 1591, "fields": {"vocabsbaseclass_ptr": 1591}}, {"model": "apis_vocabularies.professiontype", "pk": 1601, "fields": {"vocabsbaseclass_ptr": 1601}}, {"model": "apis_vocabularies.professiontype", "pk": 1602, "fields": {"vocabsbaseclass_ptr": 1602}}, {"model": "apis_vocabularies.professiontype", "pk": 1609, "fields": {"vocabsbaseclass_ptr": 1609}}, {"model": "apis_vocabularies.professiontype", "pk": 1619, "fields": {"vocabsbaseclass_ptr": 1619}}, {"model": "apis_vocabularies.professiontype", "pk": 1628, "fields": {"vocabsbaseclass_ptr": 1628}}, {"model": "apis_vocabularies.professiontype", "pk": 1639, "fields": {"vocabsbaseclass_ptr": 1639}}, {"model": "apis_vocabularies.professiontype", "pk": 1650, "fields": {"vocabsbaseclass_ptr": 1650}}, {"model": "apis_vocabularies.professiontype", "pk": 1654, "fields": {"vocabsbaseclass_ptr": 1654}}, {"model": "apis_vocabularies.professiontype", "pk": 1658, "fields": {"vocabsbaseclass_ptr": 1658}}, {"model": "apis_vocabularies.professiontype", "pk": 1660, "fields": {"vocabsbaseclass_ptr": 1660}}, {"model": "apis_vocabularies.professiontype", "pk": 1661, "fields": {"vocabsbaseclass_ptr": 1661}}, {"model": "apis_vocabularies.professiontype", "pk": 1665, "fields": {"vocabsbaseclass_ptr": 1665}}, {"model": "apis_vocabularies.professiontype", "pk": 1679, "fields": {"vocabsbaseclass_ptr": 1679}}, {"model": "apis_vocabularies.professiontype", "pk": 1683, "fields": {"vocabsbaseclass_ptr": 1683}}, {"model": "apis_vocabularies.professiontype", "pk": 1692, "fields": {"vocabsbaseclass_ptr": 1692}}, {"model": "apis_vocabularies.professiontype", "pk": 1693, "fields": {"vocabsbaseclass_ptr": 1693}}, {"model": "apis_vocabularies.professiontype", "pk": 1708, "fields": {"vocabsbaseclass_ptr": 1708}}, {"model": "apis_vocabularies.professiontype", "pk": 1739, "fields": {"vocabsbaseclass_ptr": 1739}}, {"model": "apis_vocabularies.professiontype", "pk": 1748, "fields": {"vocabsbaseclass_ptr": 1748}}, {"model": "apis_vocabularies.professiontype", "pk": 1774, "fields": {"vocabsbaseclass_ptr": 1774}}, {"model": "apis_vocabularies.professiontype", "pk": 1786, "fields": {"vocabsbaseclass_ptr": 1786}}, {"model": "apis_vocabularies.professiontype", "pk": 1837, "fields": {"vocabsbaseclass_ptr": 1837}}, {"model": "apis_vocabularies.professiontype", "pk": 1838, "fields": {"vocabsbaseclass_ptr": 1838}}, {"model": "apis_vocabularies.professiontype", "pk": 1839, "fields": {"vocabsbaseclass_ptr": 1839}}, {"model": "apis_vocabularies.professiontype", "pk": 1866, "fields": {"vocabsbaseclass_ptr": 1866}}, {"model": "apis_vocabularies.professiontype", "pk": 1870, "fields": {"vocabsbaseclass_ptr": 1870}}, {"model": "apis_vocabularies.professiontype", "pk": 1878, "fields": {"vocabsbaseclass_ptr": 1878}}, {"model": "apis_vocabularies.professiontype", "pk": 1879, "fields": {"vocabsbaseclass_ptr": 1879}}, {"model": "apis_vocabularies.professiontype", "pk": 1883, "fields": {"vocabsbaseclass_ptr": 1883}}, {"model": "apis_vocabularies.professiontype", "pk": 1886, "fields": {"vocabsbaseclass_ptr": 1886}}, {"model": "apis_vocabularies.professiontype", "pk": 1887, "fields": {"vocabsbaseclass_ptr": 1887}}, {"model": "apis_vocabularies.professiontype", "pk": 1888, "fields": {"vocabsbaseclass_ptr": 1888}}, {"model": "apis_vocabularies.professiontype", "pk": 1889, "fields": {"vocabsbaseclass_ptr": 1889}}, {"model": "apis_vocabularies.professiontype", "pk": 1890, "fields": {"vocabsbaseclass_ptr": 1890}}, {"model": "apis_vocabularies.professiontype", "pk": 1891, "fields": {"vocabsbaseclass_ptr": 1891}}, {"model": "apis_vocabularies.professiontype", "pk": 1892, "fields": {"vocabsbaseclass_ptr": 1892}}, {"model": "apis_vocabularies.professiontype", "pk": 1893, "fields": {"vocabsbaseclass_ptr": 1893}}, {"model": "apis_vocabularies.professiontype", "pk": 1894, "fields": {"vocabsbaseclass_ptr": 1894}}, {"model": "apis_vocabularies.professiontype", "pk": 1895, "fields": {"vocabsbaseclass_ptr": 1895}}, {"model": "apis_vocabularies.professiontype", "pk": 1896, "fields": {"vocabsbaseclass_ptr": 1896}}, {"model": "apis_vocabularies.professiontype", "pk": 1897, "fields": {"vocabsbaseclass_ptr": 1897}}, {"model": "apis_vocabularies.professiontype", "pk": 1918, "fields": {"vocabsbaseclass_ptr": 1918}}, {"model": "apis_vocabularies.professiontype", "pk": 2088, "fields": {"vocabsbaseclass_ptr": 2088}}, {"model": "apis_vocabularies.professiontype", "pk": 2090, "fields": {"vocabsbaseclass_ptr": 2090}}, {"model": "apis_vocabularies.professiontype", "pk": 2098, "fields": {"vocabsbaseclass_ptr": 2098}}, {"model": "apis_vocabularies.professiontype", "pk": 2099, "fields": {"vocabsbaseclass_ptr": 2099}}, {"model": "apis_vocabularies.professiontype", "pk": 2100, "fields": {"vocabsbaseclass_ptr": 2100}}, {"model": "apis_vocabularies.professiontype", "pk": 2101, "fields": {"vocabsbaseclass_ptr": 2101}}, {"model": "apis_vocabularies.professiontype", "pk": 2102, "fields": {"vocabsbaseclass_ptr": 2102}}, {"model": "apis_vocabularies.professiontype", "pk": 2105, "fields": {"vocabsbaseclass_ptr": 2105}}, {"model": "apis_vocabularies.professiontype", "pk": 2107, "fields": {"vocabsbaseclass_ptr": 2107}}, {"model": "apis_vocabularies.professiontype", "pk": 2109, "fields": {"vocabsbaseclass_ptr": 2109}}, {"model": "apis_vocabularies.professiontype", "pk": 2110, "fields": {"vocabsbaseclass_ptr": 2110}}, {"model": "apis_vocabularies.professiontype", "pk": 2112, "fields": {"vocabsbaseclass_ptr": 2112}}, {"model": "apis_vocabularies.professiontype", "pk": 2118, "fields": {"vocabsbaseclass_ptr": 2118}}, {"model": "apis_vocabularies.professiontype", "pk": 2119, "fields": {"vocabsbaseclass_ptr": 2119}}, {"model": "apis_vocabularies.professiontype", "pk": 2120, "fields": {"vocabsbaseclass_ptr": 2120}}, {"model": "apis_vocabularies.professiontype", "pk": 2124, "fields": {"vocabsbaseclass_ptr": 2124}}, {"model": "apis_vocabularies.professiontype", "pk": 2125, "fields": {"vocabsbaseclass_ptr": 2125}}, {"model": "apis_vocabularies.professiontype", "pk": 2126, "fields": {"vocabsbaseclass_ptr": 2126}}, {"model": "apis_vocabularies.professiontype", "pk": 2129, "fields": {"vocabsbaseclass_ptr": 2129}}, {"model": "apis_vocabularies.professiontype", "pk": 2130, "fields": {"vocabsbaseclass_ptr": 2130}}, {"model": "apis_vocabularies.professiontype", "pk": 2134, "fields": {"vocabsbaseclass_ptr": 2134}}, {"model": "apis_vocabularies.professiontype", "pk": 2137, "fields": {"vocabsbaseclass_ptr": 2137}}, {"model": "apis_vocabularies.professiontype", "pk": 2138, "fields": {"vocabsbaseclass_ptr": 2138}}, {"model": "apis_vocabularies.professiontype", "pk": 2139, "fields": {"vocabsbaseclass_ptr": 2139}}, {"model": "apis_vocabularies.professiontype", "pk": 2140, "fields": {"vocabsbaseclass_ptr": 2140}}, {"model": "apis_vocabularies.professiontype", "pk": 2150, "fields": {"vocabsbaseclass_ptr": 2150}}, {"model": "apis_vocabularies.professiontype", "pk": 2154, "fields": {"vocabsbaseclass_ptr": 2154}}, {"model": "apis_vocabularies.professiontype", "pk": 2156, "fields": {"vocabsbaseclass_ptr": 2156}}, {"model": "apis_vocabularies.professiontype", "pk": 2159, "fields": {"vocabsbaseclass_ptr": 2159}}, {"model": "apis_vocabularies.professiontype", "pk": 2160, "fields": {"vocabsbaseclass_ptr": 2160}}, {"model": "apis_vocabularies.professiontype", "pk": 2162, "fields": {"vocabsbaseclass_ptr": 2162}}, {"model": "apis_vocabularies.professiontype", "pk": 2163, "fields": {"vocabsbaseclass_ptr": 2163}}, {"model": "apis_vocabularies.professiontype", "pk": 2165, "fields": {"vocabsbaseclass_ptr": 2165}}, {"model": "apis_vocabularies.professiontype", "pk": 2167, "fields": {"vocabsbaseclass_ptr": 2167}}, {"model": "apis_vocabularies.professiontype", "pk": 2169, "fields": {"vocabsbaseclass_ptr": 2169}}, {"model": "apis_vocabularies.professiontype", "pk": 2176, "fields": {"vocabsbaseclass_ptr": 2176}}, {"model": "apis_vocabularies.professiontype", "pk": 2177, "fields": {"vocabsbaseclass_ptr": 2177}}, {"model": "apis_vocabularies.professiontype", "pk": 2180, "fields": {"vocabsbaseclass_ptr": 2180}}, {"model": "apis_vocabularies.professiontype", "pk": 2182, "fields": {"vocabsbaseclass_ptr": 2182}}, {"model": "apis_vocabularies.professiontype", "pk": 2184, "fields": {"vocabsbaseclass_ptr": 2184}}, {"model": "apis_vocabularies.professiontype", "pk": 2186, "fields": {"vocabsbaseclass_ptr": 2186}}, {"model": "apis_vocabularies.professiontype", "pk": 2187, "fields": {"vocabsbaseclass_ptr": 2187}}, {"model": "apis_vocabularies.professiontype", "pk": 2194, "fields": {"vocabsbaseclass_ptr": 2194}}, {"model": "apis_vocabularies.professiontype", "pk": 2195, "fields": {"vocabsbaseclass_ptr": 2195}}, {"model": "apis_vocabularies.professiontype", "pk": 2197, "fields": {"vocabsbaseclass_ptr": 2197}}, {"model": "apis_vocabularies.professiontype", "pk": 2199, "fields": {"vocabsbaseclass_ptr": 2199}}, {"model": "apis_vocabularies.professiontype", "pk": 2204, "fields": {"vocabsbaseclass_ptr": 2204}}, {"model": "apis_vocabularies.professiontype", "pk": 2205, "fields": {"vocabsbaseclass_ptr": 2205}}, {"model": "apis_vocabularies.professiontype", "pk": 2207, "fields": {"vocabsbaseclass_ptr": 2207}}, {"model": "apis_vocabularies.professiontype", "pk": 2217, "fields": {"vocabsbaseclass_ptr": 2217}}, {"model": "apis_vocabularies.professiontype", "pk": 2221, "fields": {"vocabsbaseclass_ptr": 2221}}, {"model": "apis_vocabularies.professiontype", "pk": 2222, "fields": {"vocabsbaseclass_ptr": 2222}}, {"model": "apis_vocabularies.professiontype", "pk": 2224, "fields": {"vocabsbaseclass_ptr": 2224}}, {"model": "apis_vocabularies.professiontype", "pk": 2225, "fields": {"vocabsbaseclass_ptr": 2225}}, {"model": "apis_vocabularies.professiontype", "pk": 2230, "fields": {"vocabsbaseclass_ptr": 2230}}, {"model": "apis_vocabularies.professiontype", "pk": 2231, "fields": {"vocabsbaseclass_ptr": 2231}}, {"model": "apis_vocabularies.professiontype", "pk": 2232, "fields": {"vocabsbaseclass_ptr": 2232}}, {"model": "apis_vocabularies.professiontype", "pk": 2234, "fields": {"vocabsbaseclass_ptr": 2234}}, {"model": "apis_vocabularies.professiontype", "pk": 2237, "fields": {"vocabsbaseclass_ptr": 2237}}, {"model": "apis_vocabularies.professiontype", "pk": 2239, "fields": {"vocabsbaseclass_ptr": 2239}}, {"model": "apis_vocabularies.professiontype", "pk": 2242, "fields": {"vocabsbaseclass_ptr": 2242}}, {"model": "apis_vocabularies.professiontype", "pk": 2246, "fields": {"vocabsbaseclass_ptr": 2246}}, {"model": "apis_vocabularies.professiontype", "pk": 2250, "fields": {"vocabsbaseclass_ptr": 2250}}, {"model": "apis_vocabularies.professiontype", "pk": 2251, "fields": {"vocabsbaseclass_ptr": 2251}}, {"model": "apis_vocabularies.professiontype", "pk": 2254, "fields": {"vocabsbaseclass_ptr": 2254}}, {"model": "apis_vocabularies.professiontype", "pk": 2261, "fields": {"vocabsbaseclass_ptr": 2261}}, {"model": "apis_vocabularies.professiontype", "pk": 2264, "fields": {"vocabsbaseclass_ptr": 2264}}, {"model": "apis_vocabularies.professiontype", "pk": 2267, "fields": {"vocabsbaseclass_ptr": 2267}}, {"model": "apis_vocabularies.professiontype", "pk": 2270, "fields": {"vocabsbaseclass_ptr": 2270}}, {"model": "apis_vocabularies.professiontype", "pk": 2271, "fields": {"vocabsbaseclass_ptr": 2271}}, {"model": "apis_vocabularies.professiontype", "pk": 2279, "fields": {"vocabsbaseclass_ptr": 2279}}, {"model": "apis_vocabularies.professiontype", "pk": 2281, "fields": {"vocabsbaseclass_ptr": 2281}}, {"model": "apis_vocabularies.professiontype", "pk": 2284, "fields": {"vocabsbaseclass_ptr": 2284}}, {"model": "apis_vocabularies.professiontype", "pk": 2286, "fields": {"vocabsbaseclass_ptr": 2286}}, {"model": "apis_vocabularies.professiontype", "pk": 2289, "fields": {"vocabsbaseclass_ptr": 2289}}, {"model": "apis_vocabularies.professiontype", "pk": 2290, "fields": {"vocabsbaseclass_ptr": 2290}}, {"model": "apis_vocabularies.professiontype", "pk": 2291, "fields": {"vocabsbaseclass_ptr": 2291}}, {"model": "apis_vocabularies.professiontype", "pk": 2292, "fields": {"vocabsbaseclass_ptr": 2292}}, {"model": "apis_vocabularies.professiontype", "pk": 2295, "fields": {"vocabsbaseclass_ptr": 2295}}, {"model": "apis_vocabularies.professiontype", "pk": 2297, "fields": {"vocabsbaseclass_ptr": 2297}}, {"model": "apis_vocabularies.professiontype", "pk": 2298, "fields": {"vocabsbaseclass_ptr": 2298}}, {"model": "apis_vocabularies.professiontype", "pk": 2304, "fields": {"vocabsbaseclass_ptr": 2304}}, {"model": "apis_vocabularies.professiontype", "pk": 2308, "fields": {"vocabsbaseclass_ptr": 2308}}, {"model": "apis_vocabularies.professiontype", "pk": 2309, "fields": {"vocabsbaseclass_ptr": 2309}}, {"model": "apis_vocabularies.professiontype", "pk": 2310, "fields": {"vocabsbaseclass_ptr": 2310}}, {"model": "apis_vocabularies.professiontype", "pk": 2311, "fields": {"vocabsbaseclass_ptr": 2311}}, {"model": "apis_vocabularies.professiontype", "pk": 2312, "fields": {"vocabsbaseclass_ptr": 2312}}, {"model": "apis_vocabularies.professiontype", "pk": 2313, "fields": {"vocabsbaseclass_ptr": 2313}}, {"model": "apis_vocabularies.professiontype", "pk": 2317, "fields": {"vocabsbaseclass_ptr": 2317}}, {"model": "apis_vocabularies.professiontype", "pk": 2318, "fields": {"vocabsbaseclass_ptr": 2318}}, {"model": "apis_vocabularies.professiontype", "pk": 2319, "fields": {"vocabsbaseclass_ptr": 2319}}, {"model": "apis_vocabularies.professiontype", "pk": 2321, "fields": {"vocabsbaseclass_ptr": 2321}}, {"model": "apis_vocabularies.professiontype", "pk": 2325, "fields": {"vocabsbaseclass_ptr": 2325}}, {"model": "apis_vocabularies.professiontype", "pk": 2327, "fields": {"vocabsbaseclass_ptr": 2327}}, {"model": "apis_vocabularies.professiontype", "pk": 2328, "fields": {"vocabsbaseclass_ptr": 2328}}, {"model": "apis_vocabularies.professiontype", "pk": 2337, "fields": {"vocabsbaseclass_ptr": 2337}}, {"model": "apis_vocabularies.professiontype", "pk": 2338, "fields": {"vocabsbaseclass_ptr": 2338}}, {"model": "apis_vocabularies.professiontype", "pk": 2339, "fields": {"vocabsbaseclass_ptr": 2339}}, {"model": "apis_vocabularies.professiontype", "pk": 2340, "fields": {"vocabsbaseclass_ptr": 2340}}, {"model": "apis_vocabularies.professiontype", "pk": 2341, "fields": {"vocabsbaseclass_ptr": 2341}}, {"model": "apis_vocabularies.professiontype", "pk": 2343, "fields": {"vocabsbaseclass_ptr": 2343}}, {"model": "apis_vocabularies.professiontype", "pk": 2345, "fields": {"vocabsbaseclass_ptr": 2345}}, {"model": "apis_vocabularies.professiontype", "pk": 2346, "fields": {"vocabsbaseclass_ptr": 2346}}, {"model": "apis_vocabularies.professiontype", "pk": 2347, "fields": {"vocabsbaseclass_ptr": 2347}}, {"model": "apis_vocabularies.professiontype", "pk": 2355, "fields": {"vocabsbaseclass_ptr": 2355}}, {"model": "apis_vocabularies.professiontype", "pk": 2357, "fields": {"vocabsbaseclass_ptr": 2357}}, {"model": "apis_vocabularies.professiontype", "pk": 2358, "fields": {"vocabsbaseclass_ptr": 2358}}, {"model": "apis_vocabularies.professiontype", "pk": 2359, "fields": {"vocabsbaseclass_ptr": 2359}}, {"model": "apis_vocabularies.professiontype", "pk": 2361, "fields": {"vocabsbaseclass_ptr": 2361}}, {"model": "apis_vocabularies.professiontype", "pk": 2365, "fields": {"vocabsbaseclass_ptr": 2365}}, {"model": "apis_vocabularies.professiontype", "pk": 2368, "fields": {"vocabsbaseclass_ptr": 2368}}, {"model": "apis_vocabularies.professiontype", "pk": 2369, "fields": {"vocabsbaseclass_ptr": 2369}}, {"model": "apis_vocabularies.professiontype", "pk": 2372, "fields": {"vocabsbaseclass_ptr": 2372}}, {"model": "apis_vocabularies.professiontype", "pk": 2374, "fields": {"vocabsbaseclass_ptr": 2374}}, {"model": "apis_vocabularies.professiontype", "pk": 2378, "fields": {"vocabsbaseclass_ptr": 2378}}, {"model": "apis_vocabularies.professiontype", "pk": 2379, "fields": {"vocabsbaseclass_ptr": 2379}}, {"model": "apis_vocabularies.professiontype", "pk": 2381, "fields": {"vocabsbaseclass_ptr": 2381}}, {"model": "apis_vocabularies.professiontype", "pk": 2384, "fields": {"vocabsbaseclass_ptr": 2384}}, {"model": "apis_vocabularies.professiontype", "pk": 2385, "fields": {"vocabsbaseclass_ptr": 2385}}, {"model": "apis_vocabularies.professiontype", "pk": 2386, "fields": {"vocabsbaseclass_ptr": 2386}}, {"model": "apis_vocabularies.professiontype", "pk": 2388, "fields": {"vocabsbaseclass_ptr": 2388}}, {"model": "apis_vocabularies.professiontype", "pk": 2390, "fields": {"vocabsbaseclass_ptr": 2390}}, {"model": "apis_vocabularies.professiontype", "pk": 2393, "fields": {"vocabsbaseclass_ptr": 2393}}, {"model": "apis_vocabularies.professiontype", "pk": 2394, "fields": {"vocabsbaseclass_ptr": 2394}}, {"model": "apis_vocabularies.professiontype", "pk": 2395, "fields": {"vocabsbaseclass_ptr": 2395}}, {"model": "apis_vocabularies.professiontype", "pk": 2398, "fields": {"vocabsbaseclass_ptr": 2398}}, {"model": "apis_vocabularies.professiontype", "pk": 2401, "fields": {"vocabsbaseclass_ptr": 2401}}, {"model": "apis_vocabularies.professiontype", "pk": 2404, "fields": {"vocabsbaseclass_ptr": 2404}}, {"model": "apis_vocabularies.professiontype", "pk": 2405, "fields": {"vocabsbaseclass_ptr": 2405}}, {"model": "apis_vocabularies.professiontype", "pk": 2406, "fields": {"vocabsbaseclass_ptr": 2406}}, {"model": "apis_vocabularies.professiontype", "pk": 2409, "fields": {"vocabsbaseclass_ptr": 2409}}, {"model": "apis_vocabularies.professiontype", "pk": 2411, "fields": {"vocabsbaseclass_ptr": 2411}}, {"model": "apis_vocabularies.professiontype", "pk": 2412, "fields": {"vocabsbaseclass_ptr": 2412}}, {"model": "apis_vocabularies.professiontype", "pk": 2414, "fields": {"vocabsbaseclass_ptr": 2414}}, {"model": "apis_vocabularies.professiontype", "pk": 2419, "fields": {"vocabsbaseclass_ptr": 2419}}, {"model": "apis_vocabularies.professiontype", "pk": 2421, "fields": {"vocabsbaseclass_ptr": 2421}}, {"model": "apis_vocabularies.professiontype", "pk": 2424, "fields": {"vocabsbaseclass_ptr": 2424}}, {"model": "apis_vocabularies.professiontype", "pk": 2426, "fields": {"vocabsbaseclass_ptr": 2426}}, {"model": "apis_vocabularies.professiontype", "pk": 2427, "fields": {"vocabsbaseclass_ptr": 2427}}, {"model": "apis_vocabularies.professiontype", "pk": 2432, "fields": {"vocabsbaseclass_ptr": 2432}}, {"model": "apis_vocabularies.professiontype", "pk": 2433, "fields": {"vocabsbaseclass_ptr": 2433}}, {"model": "apis_vocabularies.professiontype", "pk": 2434, "fields": {"vocabsbaseclass_ptr": 2434}}, {"model": "apis_vocabularies.professiontype", "pk": 2436, "fields": {"vocabsbaseclass_ptr": 2436}}, {"model": "apis_vocabularies.professiontype", "pk": 2438, "fields": {"vocabsbaseclass_ptr": 2438}}, {"model": "apis_vocabularies.professiontype", "pk": 2439, "fields": {"vocabsbaseclass_ptr": 2439}}, {"model": "apis_vocabularies.professiontype", "pk": 2440, "fields": {"vocabsbaseclass_ptr": 2440}}, {"model": "apis_vocabularies.professiontype", "pk": 2441, "fields": {"vocabsbaseclass_ptr": 2441}}, {"model": "apis_vocabularies.professiontype", "pk": 2442, "fields": {"vocabsbaseclass_ptr": 2442}}, {"model": "apis_vocabularies.professiontype", "pk": 2443, "fields": {"vocabsbaseclass_ptr": 2443}}, {"model": "apis_vocabularies.professiontype", "pk": 2444, "fields": {"vocabsbaseclass_ptr": 2444}}, {"model": "apis_vocabularies.professiontype", "pk": 2445, "fields": {"vocabsbaseclass_ptr": 2445}}, {"model": "apis_vocabularies.professiontype", "pk": 2446, "fields": {"vocabsbaseclass_ptr": 2446}}, {"model": "apis_vocabularies.professiontype", "pk": 2448, "fields": {"vocabsbaseclass_ptr": 2448}}, {"model": "apis_vocabularies.professiontype", "pk": 2449, "fields": {"vocabsbaseclass_ptr": 2449}}, {"model": "apis_vocabularies.professiontype", "pk": 2450, "fields": {"vocabsbaseclass_ptr": 2450}}, {"model": "apis_vocabularies.professiontype", "pk": 2455, "fields": {"vocabsbaseclass_ptr": 2455}}, {"model": "apis_vocabularies.professiontype", "pk": 2458, "fields": {"vocabsbaseclass_ptr": 2458}}, {"model": "apis_vocabularies.professiontype", "pk": 2459, "fields": {"vocabsbaseclass_ptr": 2459}}, {"model": "apis_vocabularies.professiontype", "pk": 2460, "fields": {"vocabsbaseclass_ptr": 2460}}, {"model": "apis_vocabularies.professiontype", "pk": 2464, "fields": {"vocabsbaseclass_ptr": 2464}}, {"model": "apis_vocabularies.professiontype", "pk": 2465, "fields": {"vocabsbaseclass_ptr": 2465}}, {"model": "apis_vocabularies.professiontype", "pk": 2466, "fields": {"vocabsbaseclass_ptr": 2466}}, {"model": "apis_vocabularies.professiontype", "pk": 2467, "fields": {"vocabsbaseclass_ptr": 2467}}, {"model": "apis_vocabularies.professiontype", "pk": 2470, "fields": {"vocabsbaseclass_ptr": 2470}}, {"model": "apis_vocabularies.professiontype", "pk": 2478, "fields": {"vocabsbaseclass_ptr": 2478}}, {"model": "apis_vocabularies.professiontype", "pk": 2480, "fields": {"vocabsbaseclass_ptr": 2480}}, {"model": "apis_vocabularies.professiontype", "pk": 2481, "fields": {"vocabsbaseclass_ptr": 2481}}, {"model": "apis_vocabularies.professiontype", "pk": 2482, "fields": {"vocabsbaseclass_ptr": 2482}}, {"model": "apis_vocabularies.professiontype", "pk": 2483, "fields": {"vocabsbaseclass_ptr": 2483}}, {"model": "apis_vocabularies.professiontype", "pk": 2484, "fields": {"vocabsbaseclass_ptr": 2484}}, {"model": "apis_vocabularies.professiontype", "pk": 2486, "fields": {"vocabsbaseclass_ptr": 2486}}, {"model": "apis_vocabularies.professiontype", "pk": 2488, "fields": {"vocabsbaseclass_ptr": 2488}}, {"model": "apis_vocabularies.professiontype", "pk": 2496, "fields": {"vocabsbaseclass_ptr": 2496}}, {"model": "apis_vocabularies.professiontype", "pk": 2497, "fields": {"vocabsbaseclass_ptr": 2497}}, {"model": "apis_vocabularies.professiontype", "pk": 2502, "fields": {"vocabsbaseclass_ptr": 2502}}, {"model": "apis_vocabularies.professiontype", "pk": 2504, "fields": {"vocabsbaseclass_ptr": 2504}}, {"model": "apis_vocabularies.professiontype", "pk": 2505, "fields": {"vocabsbaseclass_ptr": 2505}}, {"model": "apis_vocabularies.professiontype", "pk": 2506, "fields": {"vocabsbaseclass_ptr": 2506}}, {"model": "apis_vocabularies.professiontype", "pk": 2507, "fields": {"vocabsbaseclass_ptr": 2507}}, {"model": "apis_vocabularies.professiontype", "pk": 2508, "fields": {"vocabsbaseclass_ptr": 2508}}, {"model": "apis_vocabularies.professiontype", "pk": 2509, "fields": {"vocabsbaseclass_ptr": 2509}}, {"model": "apis_vocabularies.professiontype", "pk": 2510, "fields": {"vocabsbaseclass_ptr": 2510}}, {"model": "apis_vocabularies.professiontype", "pk": 2511, "fields": {"vocabsbaseclass_ptr": 2511}}, {"model": "apis_vocabularies.professiontype", "pk": 2513, "fields": {"vocabsbaseclass_ptr": 2513}}, {"model": "apis_vocabularies.professiontype", "pk": 2515, "fields": {"vocabsbaseclass_ptr": 2515}}, {"model": "apis_vocabularies.professiontype", "pk": 2517, "fields": {"vocabsbaseclass_ptr": 2517}}, {"model": "apis_vocabularies.professiontype", "pk": 2518, "fields": {"vocabsbaseclass_ptr": 2518}}, {"model": "apis_vocabularies.professiontype", "pk": 2519, "fields": {"vocabsbaseclass_ptr": 2519}}, {"model": "apis_vocabularies.professiontype", "pk": 2521, "fields": {"vocabsbaseclass_ptr": 2521}}, {"model": "apis_vocabularies.professiontype", "pk": 2522, "fields": {"vocabsbaseclass_ptr": 2522}}, {"model": "apis_vocabularies.professiontype", "pk": 2523, "fields": {"vocabsbaseclass_ptr": 2523}}, {"model": "apis_vocabularies.professiontype", "pk": 2524, "fields": {"vocabsbaseclass_ptr": 2524}}, {"model": "apis_vocabularies.professiontype", "pk": 2526, "fields": {"vocabsbaseclass_ptr": 2526}}, {"model": "apis_vocabularies.professiontype", "pk": 2527, "fields": {"vocabsbaseclass_ptr": 2527}}, {"model": "apis_vocabularies.professiontype", "pk": 2528, "fields": {"vocabsbaseclass_ptr": 2528}}, {"model": "apis_vocabularies.professiontype", "pk": 2529, "fields": {"vocabsbaseclass_ptr": 2529}}, {"model": "apis_vocabularies.professiontype", "pk": 2534, "fields": {"vocabsbaseclass_ptr": 2534}}, {"model": "apis_vocabularies.professiontype", "pk": 2535, "fields": {"vocabsbaseclass_ptr": 2535}}, {"model": "apis_vocabularies.professiontype", "pk": 2536, "fields": {"vocabsbaseclass_ptr": 2536}}, {"model": "apis_vocabularies.professiontype", "pk": 2537, "fields": {"vocabsbaseclass_ptr": 2537}}, {"model": "apis_vocabularies.professiontype", "pk": 2540, "fields": {"vocabsbaseclass_ptr": 2540}}, {"model": "apis_vocabularies.professiontype", "pk": 2542, "fields": {"vocabsbaseclass_ptr": 2542}}, {"model": "apis_vocabularies.professiontype", "pk": 2543, "fields": {"vocabsbaseclass_ptr": 2543}}, {"model": "apis_vocabularies.professiontype", "pk": 2544, "fields": {"vocabsbaseclass_ptr": 2544}}, {"model": "apis_vocabularies.professiontype", "pk": 2547, "fields": {"vocabsbaseclass_ptr": 2547}}, {"model": "apis_vocabularies.professiontype", "pk": 2550, "fields": {"vocabsbaseclass_ptr": 2550}}, {"model": "apis_vocabularies.professiontype", "pk": 2551, "fields": {"vocabsbaseclass_ptr": 2551}}, {"model": "apis_vocabularies.professiontype", "pk": 2552, "fields": {"vocabsbaseclass_ptr": 2552}}, {"model": "apis_vocabularies.professiontype", "pk": 2553, "fields": {"vocabsbaseclass_ptr": 2553}}, {"model": "apis_vocabularies.professiontype", "pk": 2554, "fields": {"vocabsbaseclass_ptr": 2554}}, {"model": "apis_vocabularies.professiontype", "pk": 2557, "fields": {"vocabsbaseclass_ptr": 2557}}, {"model": "apis_vocabularies.professiontype", "pk": 2558, "fields": {"vocabsbaseclass_ptr": 2558}}, {"model": "apis_vocabularies.professiontype", "pk": 2559, "fields": {"vocabsbaseclass_ptr": 2559}}, {"model": "apis_vocabularies.professiontype", "pk": 2560, "fields": {"vocabsbaseclass_ptr": 2560}}, {"model": "apis_vocabularies.professiontype", "pk": 2561, "fields": {"vocabsbaseclass_ptr": 2561}}, {"model": "apis_vocabularies.professiontype", "pk": 2564, "fields": {"vocabsbaseclass_ptr": 2564}}, {"model": "apis_vocabularies.professiontype", "pk": 2565, "fields": {"vocabsbaseclass_ptr": 2565}}, {"model": "apis_vocabularies.professiontype", "pk": 2566, "fields": {"vocabsbaseclass_ptr": 2566}}, {"model": "apis_vocabularies.professiontype", "pk": 2567, "fields": {"vocabsbaseclass_ptr": 2567}}, {"model": "apis_vocabularies.professiontype", "pk": 2570, "fields": {"vocabsbaseclass_ptr": 2570}}, {"model": "apis_vocabularies.professiontype", "pk": 2571, "fields": {"vocabsbaseclass_ptr": 2571}}, {"model": "apis_vocabularies.professiontype", "pk": 2572, "fields": {"vocabsbaseclass_ptr": 2572}}, {"model": "apis_vocabularies.professiontype", "pk": 2575, "fields": {"vocabsbaseclass_ptr": 2575}}, {"model": "apis_vocabularies.professiontype", "pk": 2578, "fields": {"vocabsbaseclass_ptr": 2578}}, {"model": "apis_vocabularies.professiontype", "pk": 2579, "fields": {"vocabsbaseclass_ptr": 2579}}, {"model": "apis_vocabularies.professiontype", "pk": 2580, "fields": {"vocabsbaseclass_ptr": 2580}}, {"model": "apis_vocabularies.professiontype", "pk": 2584, "fields": {"vocabsbaseclass_ptr": 2584}}, {"model": "apis_vocabularies.professiontype", "pk": 2586, "fields": {"vocabsbaseclass_ptr": 2586}}, {"model": "apis_vocabularies.professiontype", "pk": 2587, "fields": {"vocabsbaseclass_ptr": 2587}}, {"model": "apis_vocabularies.professiontype", "pk": 2588, "fields": {"vocabsbaseclass_ptr": 2588}}, {"model": "apis_vocabularies.professiontype", "pk": 2589, "fields": {"vocabsbaseclass_ptr": 2589}}, {"model": "apis_vocabularies.professiontype", "pk": 2592, "fields": {"vocabsbaseclass_ptr": 2592}}, {"model": "apis_vocabularies.professiontype", "pk": 2598, "fields": {"vocabsbaseclass_ptr": 2598}}, {"model": "apis_vocabularies.professiontype", "pk": 2599, "fields": {"vocabsbaseclass_ptr": 2599}}, {"model": "apis_vocabularies.professiontype", "pk": 2600, "fields": {"vocabsbaseclass_ptr": 2600}}, {"model": "apis_vocabularies.professiontype", "pk": 2601, "fields": {"vocabsbaseclass_ptr": 2601}}, {"model": "apis_vocabularies.professiontype", "pk": 2603, "fields": {"vocabsbaseclass_ptr": 2603}}, {"model": "apis_vocabularies.professiontype", "pk": 2604, "fields": {"vocabsbaseclass_ptr": 2604}}, {"model": "apis_vocabularies.professiontype", "pk": 2605, "fields": {"vocabsbaseclass_ptr": 2605}}, {"model": "apis_vocabularies.professiontype", "pk": 2606, "fields": {"vocabsbaseclass_ptr": 2606}}, {"model": "apis_vocabularies.professiontype", "pk": 2608, "fields": {"vocabsbaseclass_ptr": 2608}}, {"model": "apis_vocabularies.professiontype", "pk": 2609, "fields": {"vocabsbaseclass_ptr": 2609}}, {"model": "apis_vocabularies.professiontype", "pk": 2610, "fields": {"vocabsbaseclass_ptr": 2610}}, {"model": "apis_vocabularies.professiontype", "pk": 2611, "fields": {"vocabsbaseclass_ptr": 2611}}, {"model": "apis_vocabularies.professiontype", "pk": 2612, "fields": {"vocabsbaseclass_ptr": 2612}}, {"model": "apis_vocabularies.professiontype", "pk": 2614, "fields": {"vocabsbaseclass_ptr": 2614}}, {"model": "apis_vocabularies.professiontype", "pk": 2615, "fields": {"vocabsbaseclass_ptr": 2615}}, {"model": "apis_vocabularies.professiontype", "pk": 2618, "fields": {"vocabsbaseclass_ptr": 2618}}, {"model": "apis_vocabularies.professiontype", "pk": 2620, "fields": {"vocabsbaseclass_ptr": 2620}}, {"model": "apis_vocabularies.professiontype", "pk": 2622, "fields": {"vocabsbaseclass_ptr": 2622}}, {"model": "apis_vocabularies.professiontype", "pk": 2623, "fields": {"vocabsbaseclass_ptr": 2623}}, {"model": "apis_vocabularies.professiontype", "pk": 2624, "fields": {"vocabsbaseclass_ptr": 2624}}, {"model": "apis_vocabularies.professiontype", "pk": 2626, "fields": {"vocabsbaseclass_ptr": 2626}}, {"model": "apis_vocabularies.professiontype", "pk": 2629, "fields": {"vocabsbaseclass_ptr": 2629}}, {"model": "apis_vocabularies.professiontype", "pk": 2630, "fields": {"vocabsbaseclass_ptr": 2630}}, {"model": "apis_vocabularies.professiontype", "pk": 2631, "fields": {"vocabsbaseclass_ptr": 2631}}, {"model": "apis_vocabularies.professiontype", "pk": 2633, "fields": {"vocabsbaseclass_ptr": 2633}}, {"model": "apis_vocabularies.professiontype", "pk": 2635, "fields": {"vocabsbaseclass_ptr": 2635}}, {"model": "apis_vocabularies.professiontype", "pk": 2637, "fields": {"vocabsbaseclass_ptr": 2637}}, {"model": "apis_vocabularies.professiontype", "pk": 2638, "fields": {"vocabsbaseclass_ptr": 2638}}, {"model": "apis_vocabularies.professiontype", "pk": 2639, "fields": {"vocabsbaseclass_ptr": 2639}}, {"model": "apis_vocabularies.professiontype", "pk": 2640, "fields": {"vocabsbaseclass_ptr": 2640}}, {"model": "apis_vocabularies.professiontype", "pk": 2641, "fields": {"vocabsbaseclass_ptr": 2641}}, {"model": "apis_vocabularies.professiontype", "pk": 2642, "fields": {"vocabsbaseclass_ptr": 2642}}, {"model": "apis_vocabularies.professiontype", "pk": 2643, "fields": {"vocabsbaseclass_ptr": 2643}}, {"model": "apis_vocabularies.professiontype", "pk": 2645, "fields": {"vocabsbaseclass_ptr": 2645}}, {"model": "apis_vocabularies.professiontype", "pk": 2646, "fields": {"vocabsbaseclass_ptr": 2646}}, {"model": "apis_vocabularies.professiontype", "pk": 2647, "fields": {"vocabsbaseclass_ptr": 2647}}, {"model": "apis_vocabularies.professiontype", "pk": 2649, "fields": {"vocabsbaseclass_ptr": 2649}}, {"model": "apis_vocabularies.professiontype", "pk": 2651, "fields": {"vocabsbaseclass_ptr": 2651}}, {"model": "apis_vocabularies.professiontype", "pk": 2652, "fields": {"vocabsbaseclass_ptr": 2652}}, {"model": "apis_vocabularies.professiontype", "pk": 2654, "fields": {"vocabsbaseclass_ptr": 2654}}, {"model": "apis_vocabularies.professiontype", "pk": 2655, "fields": {"vocabsbaseclass_ptr": 2655}}, {"model": "apis_vocabularies.professiontype", "pk": 2657, "fields": {"vocabsbaseclass_ptr": 2657}}, {"model": "apis_vocabularies.professiontype", "pk": 2658, "fields": {"vocabsbaseclass_ptr": 2658}}, {"model": "apis_vocabularies.professiontype", "pk": 2661, "fields": {"vocabsbaseclass_ptr": 2661}}, {"model": "apis_vocabularies.professiontype", "pk": 2665, "fields": {"vocabsbaseclass_ptr": 2665}}, {"model": "apis_vocabularies.professiontype", "pk": 2667, "fields": {"vocabsbaseclass_ptr": 2667}}, {"model": "apis_vocabularies.professiontype", "pk": 2668, "fields": {"vocabsbaseclass_ptr": 2668}}, {"model": "apis_vocabularies.professiontype", "pk": 2669, "fields": {"vocabsbaseclass_ptr": 2669}}, {"model": "apis_vocabularies.professiontype", "pk": 2670, "fields": {"vocabsbaseclass_ptr": 2670}}, {"model": "apis_vocabularies.professiontype", "pk": 2672, "fields": {"vocabsbaseclass_ptr": 2672}}, {"model": "apis_vocabularies.professiontype", "pk": 2673, "fields": {"vocabsbaseclass_ptr": 2673}}, {"model": "apis_vocabularies.professiontype", "pk": 2677, "fields": {"vocabsbaseclass_ptr": 2677}}, {"model": "apis_vocabularies.professiontype", "pk": 2678, "fields": {"vocabsbaseclass_ptr": 2678}}, {"model": "apis_vocabularies.professiontype", "pk": 2679, "fields": {"vocabsbaseclass_ptr": 2679}}, {"model": "apis_vocabularies.professiontype", "pk": 2680, "fields": {"vocabsbaseclass_ptr": 2680}}, {"model": "apis_vocabularies.professiontype", "pk": 2684, "fields": {"vocabsbaseclass_ptr": 2684}}, {"model": "apis_vocabularies.professiontype", "pk": 2686, "fields": {"vocabsbaseclass_ptr": 2686}}, {"model": "apis_vocabularies.professiontype", "pk": 2687, "fields": {"vocabsbaseclass_ptr": 2687}}, {"model": "apis_vocabularies.professiontype", "pk": 2688, "fields": {"vocabsbaseclass_ptr": 2688}}, {"model": "apis_vocabularies.professiontype", "pk": 2689, "fields": {"vocabsbaseclass_ptr": 2689}}, {"model": "apis_vocabularies.professiontype", "pk": 2690, "fields": {"vocabsbaseclass_ptr": 2690}}, {"model": "apis_vocabularies.professiontype", "pk": 2692, "fields": {"vocabsbaseclass_ptr": 2692}}, {"model": "apis_vocabularies.professiontype", "pk": 2694, "fields": {"vocabsbaseclass_ptr": 2694}}, {"model": "apis_vocabularies.professiontype", "pk": 2696, "fields": {"vocabsbaseclass_ptr": 2696}}, {"model": "apis_vocabularies.professiontype", "pk": 2698, "fields": {"vocabsbaseclass_ptr": 2698}}, {"model": "apis_vocabularies.professiontype", "pk": 2699, "fields": {"vocabsbaseclass_ptr": 2699}}, {"model": "apis_vocabularies.professiontype", "pk": 2700, "fields": {"vocabsbaseclass_ptr": 2700}}, {"model": "apis_vocabularies.professiontype", "pk": 2701, "fields": {"vocabsbaseclass_ptr": 2701}}, {"model": "apis_vocabularies.professiontype", "pk": 2702, "fields": {"vocabsbaseclass_ptr": 2702}}, {"model": "apis_vocabularies.professiontype", "pk": 2703, "fields": {"vocabsbaseclass_ptr": 2703}}, {"model": "apis_vocabularies.professiontype", "pk": 2704, "fields": {"vocabsbaseclass_ptr": 2704}}, {"model": "apis_vocabularies.professiontype", "pk": 2705, "fields": {"vocabsbaseclass_ptr": 2705}}, {"model": "apis_vocabularies.professiontype", "pk": 2710, "fields": {"vocabsbaseclass_ptr": 2710}}, {"model": "apis_vocabularies.professiontype", "pk": 2711, "fields": {"vocabsbaseclass_ptr": 2711}}, {"model": "apis_vocabularies.professiontype", "pk": 2713, "fields": {"vocabsbaseclass_ptr": 2713}}, {"model": "apis_vocabularies.professiontype", "pk": 2716, "fields": {"vocabsbaseclass_ptr": 2716}}, {"model": "apis_vocabularies.professiontype", "pk": 2717, "fields": {"vocabsbaseclass_ptr": 2717}}, {"model": "apis_vocabularies.professiontype", "pk": 2719, "fields": {"vocabsbaseclass_ptr": 2719}}, {"model": "apis_vocabularies.professiontype", "pk": 2720, "fields": {"vocabsbaseclass_ptr": 2720}}, {"model": "apis_vocabularies.professiontype", "pk": 2721, "fields": {"vocabsbaseclass_ptr": 2721}}, {"model": "apis_vocabularies.professiontype", "pk": 2722, "fields": {"vocabsbaseclass_ptr": 2722}}, {"model": "apis_vocabularies.professiontype", "pk": 2723, "fields": {"vocabsbaseclass_ptr": 2723}}, {"model": "apis_vocabularies.professiontype", "pk": 2725, "fields": {"vocabsbaseclass_ptr": 2725}}, {"model": "apis_vocabularies.professiontype", "pk": 2727, "fields": {"vocabsbaseclass_ptr": 2727}}, {"model": "apis_vocabularies.professiontype", "pk": 2728, "fields": {"vocabsbaseclass_ptr": 2728}}, {"model": "apis_vocabularies.professiontype", "pk": 2729, "fields": {"vocabsbaseclass_ptr": 2729}}, {"model": "apis_vocabularies.professiontype", "pk": 2730, "fields": {"vocabsbaseclass_ptr": 2730}}, {"model": "apis_vocabularies.professiontype", "pk": 2732, "fields": {"vocabsbaseclass_ptr": 2732}}, {"model": "apis_vocabularies.professiontype", "pk": 2734, "fields": {"vocabsbaseclass_ptr": 2734}}, {"model": "apis_vocabularies.professiontype", "pk": 2736, "fields": {"vocabsbaseclass_ptr": 2736}}, {"model": "apis_vocabularies.professiontype", "pk": 2737, "fields": {"vocabsbaseclass_ptr": 2737}}, {"model": "apis_vocabularies.professiontype", "pk": 2738, "fields": {"vocabsbaseclass_ptr": 2738}}, {"model": "apis_vocabularies.professiontype", "pk": 2739, "fields": {"vocabsbaseclass_ptr": 2739}}, {"model": "apis_vocabularies.professiontype", "pk": 2740, "fields": {"vocabsbaseclass_ptr": 2740}}, {"model": "apis_vocabularies.professiontype", "pk": 2741, "fields": {"vocabsbaseclass_ptr": 2741}}, {"model": "apis_vocabularies.professiontype", "pk": 2743, "fields": {"vocabsbaseclass_ptr": 2743}}, {"model": "apis_vocabularies.professiontype", "pk": 2744, "fields": {"vocabsbaseclass_ptr": 2744}}, {"model": "apis_vocabularies.professiontype", "pk": 2745, "fields": {"vocabsbaseclass_ptr": 2745}}, {"model": "apis_vocabularies.professiontype", "pk": 2747, "fields": {"vocabsbaseclass_ptr": 2747}}, {"model": "apis_vocabularies.professiontype", "pk": 2748, "fields": {"vocabsbaseclass_ptr": 2748}}, {"model": "apis_vocabularies.professiontype", "pk": 2750, "fields": {"vocabsbaseclass_ptr": 2750}}, {"model": "apis_vocabularies.professiontype", "pk": 2752, "fields": {"vocabsbaseclass_ptr": 2752}}, {"model": "apis_vocabularies.professiontype", "pk": 2753, "fields": {"vocabsbaseclass_ptr": 2753}}, {"model": "apis_vocabularies.professiontype", "pk": 2755, "fields": {"vocabsbaseclass_ptr": 2755}}, {"model": "apis_vocabularies.professiontype", "pk": 2759, "fields": {"vocabsbaseclass_ptr": 2759}}, {"model": "apis_vocabularies.professiontype", "pk": 2760, "fields": {"vocabsbaseclass_ptr": 2760}}, {"model": "apis_vocabularies.professiontype", "pk": 2761, "fields": {"vocabsbaseclass_ptr": 2761}}, {"model": "apis_vocabularies.professiontype", "pk": 2762, "fields": {"vocabsbaseclass_ptr": 2762}}, {"model": "apis_vocabularies.professiontype", "pk": 2763, "fields": {"vocabsbaseclass_ptr": 2763}}, {"model": "apis_vocabularies.professiontype", "pk": 2766, "fields": {"vocabsbaseclass_ptr": 2766}}, {"model": "apis_vocabularies.professiontype", "pk": 2768, "fields": {"vocabsbaseclass_ptr": 2768}}, {"model": "apis_vocabularies.professiontype", "pk": 2769, "fields": {"vocabsbaseclass_ptr": 2769}}, {"model": "apis_vocabularies.professiontype", "pk": 2770, "fields": {"vocabsbaseclass_ptr": 2770}}, {"model": "apis_vocabularies.professiontype", "pk": 2772, "fields": {"vocabsbaseclass_ptr": 2772}}, {"model": "apis_vocabularies.professiontype", "pk": 2773, "fields": {"vocabsbaseclass_ptr": 2773}}, {"model": "apis_vocabularies.professiontype", "pk": 2774, "fields": {"vocabsbaseclass_ptr": 2774}}, {"model": "apis_vocabularies.professiontype", "pk": 2776, "fields": {"vocabsbaseclass_ptr": 2776}}, {"model": "apis_vocabularies.professiontype", "pk": 2778, "fields": {"vocabsbaseclass_ptr": 2778}}, {"model": "apis_vocabularies.professiontype", "pk": 2779, "fields": {"vocabsbaseclass_ptr": 2779}}, {"model": "apis_vocabularies.professiontype", "pk": 2781, "fields": {"vocabsbaseclass_ptr": 2781}}, {"model": "apis_vocabularies.professiontype", "pk": 2782, "fields": {"vocabsbaseclass_ptr": 2782}}, {"model": "apis_vocabularies.professiontype", "pk": 2785, "fields": {"vocabsbaseclass_ptr": 2785}}, {"model": "apis_vocabularies.professiontype", "pk": 2787, "fields": {"vocabsbaseclass_ptr": 2787}}, {"model": "apis_vocabularies.professiontype", "pk": 2789, "fields": {"vocabsbaseclass_ptr": 2789}}, {"model": "apis_vocabularies.professiontype", "pk": 2794, "fields": {"vocabsbaseclass_ptr": 2794}}, {"model": "apis_vocabularies.professiontype", "pk": 2795, "fields": {"vocabsbaseclass_ptr": 2795}}, {"model": "apis_vocabularies.professiontype", "pk": 2796, "fields": {"vocabsbaseclass_ptr": 2796}}, {"model": "apis_vocabularies.professiontype", "pk": 2797, "fields": {"vocabsbaseclass_ptr": 2797}}, {"model": "apis_vocabularies.professiontype", "pk": 2798, "fields": {"vocabsbaseclass_ptr": 2798}}, {"model": "apis_vocabularies.professiontype", "pk": 2799, "fields": {"vocabsbaseclass_ptr": 2799}}, {"model": "apis_vocabularies.professiontype", "pk": 2800, "fields": {"vocabsbaseclass_ptr": 2800}}, {"model": "apis_vocabularies.professiontype", "pk": 2801, "fields": {"vocabsbaseclass_ptr": 2801}}, {"model": "apis_vocabularies.professiontype", "pk": 2803, "fields": {"vocabsbaseclass_ptr": 2803}}, {"model": "apis_vocabularies.professiontype", "pk": 2804, "fields": {"vocabsbaseclass_ptr": 2804}}, {"model": "apis_vocabularies.professiontype", "pk": 2805, "fields": {"vocabsbaseclass_ptr": 2805}}, {"model": "apis_vocabularies.professiontype", "pk": 2806, "fields": {"vocabsbaseclass_ptr": 2806}}, {"model": "apis_vocabularies.professiontype", "pk": 2807, "fields": {"vocabsbaseclass_ptr": 2807}}, {"model": "apis_vocabularies.professiontype", "pk": 2808, "fields": {"vocabsbaseclass_ptr": 2808}}, {"model": "apis_vocabularies.professiontype", "pk": 2812, "fields": {"vocabsbaseclass_ptr": 2812}}, {"model": "apis_vocabularies.professiontype", "pk": 2814, "fields": {"vocabsbaseclass_ptr": 2814}}, {"model": "apis_vocabularies.professiontype", "pk": 2815, "fields": {"vocabsbaseclass_ptr": 2815}}, {"model": "apis_vocabularies.professiontype", "pk": 2816, "fields": {"vocabsbaseclass_ptr": 2816}}, {"model": "apis_vocabularies.professiontype", "pk": 2817, "fields": {"vocabsbaseclass_ptr": 2817}}, {"model": "apis_vocabularies.professiontype", "pk": 2821, "fields": {"vocabsbaseclass_ptr": 2821}}, {"model": "apis_vocabularies.professiontype", "pk": 2823, "fields": {"vocabsbaseclass_ptr": 2823}}, {"model": "apis_vocabularies.professiontype", "pk": 2824, "fields": {"vocabsbaseclass_ptr": 2824}}, {"model": "apis_vocabularies.professiontype", "pk": 2825, "fields": {"vocabsbaseclass_ptr": 2825}}, {"model": "apis_vocabularies.professiontype", "pk": 2827, "fields": {"vocabsbaseclass_ptr": 2827}}, {"model": "apis_vocabularies.professiontype", "pk": 2829, "fields": {"vocabsbaseclass_ptr": 2829}}, {"model": "apis_vocabularies.professiontype", "pk": 2830, "fields": {"vocabsbaseclass_ptr": 2830}}, {"model": "apis_vocabularies.professiontype", "pk": 2831, "fields": {"vocabsbaseclass_ptr": 2831}}, {"model": "apis_vocabularies.professiontype", "pk": 2833, "fields": {"vocabsbaseclass_ptr": 2833}}, {"model": "apis_vocabularies.professiontype", "pk": 2835, "fields": {"vocabsbaseclass_ptr": 2835}}, {"model": "apis_vocabularies.professiontype", "pk": 2836, "fields": {"vocabsbaseclass_ptr": 2836}}, {"model": "apis_vocabularies.professiontype", "pk": 2840, "fields": {"vocabsbaseclass_ptr": 2840}}, {"model": "apis_vocabularies.professiontype", "pk": 2842, "fields": {"vocabsbaseclass_ptr": 2842}}, {"model": "apis_vocabularies.professiontype", "pk": 2843, "fields": {"vocabsbaseclass_ptr": 2843}}, {"model": "apis_vocabularies.professiontype", "pk": 2844, "fields": {"vocabsbaseclass_ptr": 2844}}, {"model": "apis_vocabularies.professiontype", "pk": 2845, "fields": {"vocabsbaseclass_ptr": 2845}}, {"model": "apis_vocabularies.professiontype", "pk": 2847, "fields": {"vocabsbaseclass_ptr": 2847}}, {"model": "apis_vocabularies.professiontype", "pk": 2848, "fields": {"vocabsbaseclass_ptr": 2848}}, {"model": "apis_vocabularies.professiontype", "pk": 2850, "fields": {"vocabsbaseclass_ptr": 2850}}, {"model": "apis_vocabularies.professiontype", "pk": 2852, "fields": {"vocabsbaseclass_ptr": 2852}}, {"model": "apis_vocabularies.professiontype", "pk": 2853, "fields": {"vocabsbaseclass_ptr": 2853}}, {"model": "apis_vocabularies.professiontype", "pk": 2854, "fields": {"vocabsbaseclass_ptr": 2854}}, {"model": "apis_vocabularies.professiontype", "pk": 2855, "fields": {"vocabsbaseclass_ptr": 2855}}, {"model": "apis_vocabularies.professiontype", "pk": 2856, "fields": {"vocabsbaseclass_ptr": 2856}}, {"model": "apis_vocabularies.professiontype", "pk": 2857, "fields": {"vocabsbaseclass_ptr": 2857}}, {"model": "apis_vocabularies.professiontype", "pk": 2859, "fields": {"vocabsbaseclass_ptr": 2859}}, {"model": "apis_vocabularies.professiontype", "pk": 2860, "fields": {"vocabsbaseclass_ptr": 2860}}, {"model": "apis_vocabularies.professiontype", "pk": 2861, "fields": {"vocabsbaseclass_ptr": 2861}}, {"model": "apis_vocabularies.professiontype", "pk": 2862, "fields": {"vocabsbaseclass_ptr": 2862}}, {"model": "apis_vocabularies.professiontype", "pk": 2865, "fields": {"vocabsbaseclass_ptr": 2865}}, {"model": "apis_vocabularies.professiontype", "pk": 2867, "fields": {"vocabsbaseclass_ptr": 2867}}, {"model": "apis_vocabularies.professiontype", "pk": 2869, "fields": {"vocabsbaseclass_ptr": 2869}}, {"model": "apis_vocabularies.professiontype", "pk": 2871, "fields": {"vocabsbaseclass_ptr": 2871}}, {"model": "apis_vocabularies.professiontype", "pk": 2872, "fields": {"vocabsbaseclass_ptr": 2872}}, {"model": "apis_vocabularies.professiontype", "pk": 2876, "fields": {"vocabsbaseclass_ptr": 2876}}, {"model": "apis_vocabularies.professiontype", "pk": 2877, "fields": {"vocabsbaseclass_ptr": 2877}}, {"model": "apis_vocabularies.professiontype", "pk": 2878, "fields": {"vocabsbaseclass_ptr": 2878}}, {"model": "apis_vocabularies.professiontype", "pk": 2879, "fields": {"vocabsbaseclass_ptr": 2879}}, {"model": "apis_vocabularies.professiontype", "pk": 2880, "fields": {"vocabsbaseclass_ptr": 2880}}, {"model": "apis_vocabularies.professiontype", "pk": 2884, "fields": {"vocabsbaseclass_ptr": 2884}}, {"model": "apis_vocabularies.professiontype", "pk": 2886, "fields": {"vocabsbaseclass_ptr": 2886}}, {"model": "apis_vocabularies.professiontype", "pk": 2887, "fields": {"vocabsbaseclass_ptr": 2887}}, {"model": "apis_vocabularies.professiontype", "pk": 2888, "fields": {"vocabsbaseclass_ptr": 2888}}, {"model": "apis_vocabularies.professiontype", "pk": 2889, "fields": {"vocabsbaseclass_ptr": 2889}}, {"model": "apis_vocabularies.professiontype", "pk": 2891, "fields": {"vocabsbaseclass_ptr": 2891}}, {"model": "apis_vocabularies.professiontype", "pk": 2894, "fields": {"vocabsbaseclass_ptr": 2894}}, {"model": "apis_vocabularies.professiontype", "pk": 2895, "fields": {"vocabsbaseclass_ptr": 2895}}, {"model": "apis_vocabularies.professiontype", "pk": 2896, "fields": {"vocabsbaseclass_ptr": 2896}}, {"model": "apis_vocabularies.professiontype", "pk": 2897, "fields": {"vocabsbaseclass_ptr": 2897}}, {"model": "apis_vocabularies.professiontype", "pk": 2898, "fields": {"vocabsbaseclass_ptr": 2898}}, {"model": "apis_vocabularies.professiontype", "pk": 2899, "fields": {"vocabsbaseclass_ptr": 2899}}, {"model": "apis_vocabularies.professiontype", "pk": 2900, "fields": {"vocabsbaseclass_ptr": 2900}}, {"model": "apis_vocabularies.professiontype", "pk": 2901, "fields": {"vocabsbaseclass_ptr": 2901}}, {"model": "apis_vocabularies.professiontype", "pk": 2902, "fields": {"vocabsbaseclass_ptr": 2902}}, {"model": "apis_vocabularies.professiontype", "pk": 2904, "fields": {"vocabsbaseclass_ptr": 2904}}, {"model": "apis_vocabularies.professiontype", "pk": 2905, "fields": {"vocabsbaseclass_ptr": 2905}}, {"model": "apis_vocabularies.professiontype", "pk": 2907, "fields": {"vocabsbaseclass_ptr": 2907}}, {"model": "apis_vocabularies.professiontype", "pk": 2908, "fields": {"vocabsbaseclass_ptr": 2908}}, {"model": "apis_vocabularies.professiontype", "pk": 2909, "fields": {"vocabsbaseclass_ptr": 2909}}, {"model": "apis_vocabularies.professiontype", "pk": 2910, "fields": {"vocabsbaseclass_ptr": 2910}}, {"model": "apis_vocabularies.professiontype", "pk": 2911, "fields": {"vocabsbaseclass_ptr": 2911}}, {"model": "apis_vocabularies.professiontype", "pk": 2912, "fields": {"vocabsbaseclass_ptr": 2912}}, {"model": "apis_vocabularies.professiontype", "pk": 2913, "fields": {"vocabsbaseclass_ptr": 2913}}, {"model": "apis_vocabularies.professiontype", "pk": 2914, "fields": {"vocabsbaseclass_ptr": 2914}}, {"model": "apis_vocabularies.professiontype", "pk": 2918, "fields": {"vocabsbaseclass_ptr": 2918}}, {"model": "apis_vocabularies.professiontype", "pk": 2920, "fields": {"vocabsbaseclass_ptr": 2920}}, {"model": "apis_vocabularies.professiontype", "pk": 2921, "fields": {"vocabsbaseclass_ptr": 2921}}, {"model": "apis_vocabularies.professiontype", "pk": 2922, "fields": {"vocabsbaseclass_ptr": 2922}}, {"model": "apis_vocabularies.professiontype", "pk": 2924, "fields": {"vocabsbaseclass_ptr": 2924}}, {"model": "apis_vocabularies.professiontype", "pk": 2925, "fields": {"vocabsbaseclass_ptr": 2925}}, {"model": "apis_vocabularies.professiontype", "pk": 2926, "fields": {"vocabsbaseclass_ptr": 2926}}, {"model": "apis_vocabularies.professiontype", "pk": 2927, "fields": {"vocabsbaseclass_ptr": 2927}}, {"model": "apis_vocabularies.professiontype", "pk": 2928, "fields": {"vocabsbaseclass_ptr": 2928}}, {"model": "apis_vocabularies.professiontype", "pk": 2929, "fields": {"vocabsbaseclass_ptr": 2929}}, {"model": "apis_vocabularies.professiontype", "pk": 2930, "fields": {"vocabsbaseclass_ptr": 2930}}, {"model": "apis_vocabularies.professiontype", "pk": 2931, "fields": {"vocabsbaseclass_ptr": 2931}}, {"model": "apis_vocabularies.professiontype", "pk": 2934, "fields": {"vocabsbaseclass_ptr": 2934}}, {"model": "apis_vocabularies.professiontype", "pk": 2935, "fields": {"vocabsbaseclass_ptr": 2935}}, {"model": "apis_vocabularies.professiontype", "pk": 2937, "fields": {"vocabsbaseclass_ptr": 2937}}, {"model": "apis_vocabularies.professiontype", "pk": 2938, "fields": {"vocabsbaseclass_ptr": 2938}}, {"model": "apis_vocabularies.professiontype", "pk": 2939, "fields": {"vocabsbaseclass_ptr": 2939}}, {"model": "apis_vocabularies.professiontype", "pk": 2940, "fields": {"vocabsbaseclass_ptr": 2940}}, {"model": "apis_vocabularies.professiontype", "pk": 2942, "fields": {"vocabsbaseclass_ptr": 2942}}, {"model": "apis_vocabularies.professiontype", "pk": 2943, "fields": {"vocabsbaseclass_ptr": 2943}}, {"model": "apis_vocabularies.professiontype", "pk": 2944, "fields": {"vocabsbaseclass_ptr": 2944}}, {"model": "apis_vocabularies.professiontype", "pk": 2946, "fields": {"vocabsbaseclass_ptr": 2946}}, {"model": "apis_vocabularies.professiontype", "pk": 2953, "fields": {"vocabsbaseclass_ptr": 2953}}, {"model": "apis_vocabularies.professiontype", "pk": 2955, "fields": {"vocabsbaseclass_ptr": 2955}}, {"model": "apis_vocabularies.professiontype", "pk": 2956, "fields": {"vocabsbaseclass_ptr": 2956}}, {"model": "apis_vocabularies.professiontype", "pk": 2958, "fields": {"vocabsbaseclass_ptr": 2958}}, {"model": "apis_vocabularies.professiontype", "pk": 2959, "fields": {"vocabsbaseclass_ptr": 2959}}, {"model": "apis_vocabularies.professiontype", "pk": 2960, "fields": {"vocabsbaseclass_ptr": 2960}}, {"model": "apis_vocabularies.professiontype", "pk": 2961, "fields": {"vocabsbaseclass_ptr": 2961}}, {"model": "apis_vocabularies.professiontype", "pk": 2967, "fields": {"vocabsbaseclass_ptr": 2967}}, {"model": "apis_vocabularies.professiontype", "pk": 2968, "fields": {"vocabsbaseclass_ptr": 2968}}, {"model": "apis_vocabularies.professiontype", "pk": 2972, "fields": {"vocabsbaseclass_ptr": 2972}}, {"model": "apis_vocabularies.professiontype", "pk": 2974, "fields": {"vocabsbaseclass_ptr": 2974}}, {"model": "apis_vocabularies.professiontype", "pk": 2975, "fields": {"vocabsbaseclass_ptr": 2975}}, {"model": "apis_vocabularies.professiontype", "pk": 2976, "fields": {"vocabsbaseclass_ptr": 2976}}, {"model": "apis_vocabularies.professiontype", "pk": 2977, "fields": {"vocabsbaseclass_ptr": 2977}}, {"model": "apis_vocabularies.professiontype", "pk": 2978, "fields": {"vocabsbaseclass_ptr": 2978}}, {"model": "apis_vocabularies.professiontype", "pk": 2979, "fields": {"vocabsbaseclass_ptr": 2979}}, {"model": "apis_vocabularies.professiontype", "pk": 2981, "fields": {"vocabsbaseclass_ptr": 2981}}, {"model": "apis_vocabularies.professiontype", "pk": 2982, "fields": {"vocabsbaseclass_ptr": 2982}}, {"model": "apis_vocabularies.professiontype", "pk": 2983, "fields": {"vocabsbaseclass_ptr": 2983}}, {"model": "apis_vocabularies.professiontype", "pk": 2984, "fields": {"vocabsbaseclass_ptr": 2984}}, {"model": "apis_vocabularies.professiontype", "pk": 2987, "fields": {"vocabsbaseclass_ptr": 2987}}, {"model": "apis_vocabularies.professiontype", "pk": 2989, "fields": {"vocabsbaseclass_ptr": 2989}}, {"model": "apis_vocabularies.professiontype", "pk": 2991, "fields": {"vocabsbaseclass_ptr": 2991}}, {"model": "apis_vocabularies.professiontype", "pk": 2992, "fields": {"vocabsbaseclass_ptr": 2992}}, {"model": "apis_vocabularies.professiontype", "pk": 2993, "fields": {"vocabsbaseclass_ptr": 2993}}, {"model": "apis_vocabularies.professiontype", "pk": 2994, "fields": {"vocabsbaseclass_ptr": 2994}}, {"model": "apis_vocabularies.professiontype", "pk": 2996, "fields": {"vocabsbaseclass_ptr": 2996}}, {"model": "apis_vocabularies.professiontype", "pk": 2997, "fields": {"vocabsbaseclass_ptr": 2997}}, {"model": "apis_vocabularies.professiontype", "pk": 2999, "fields": {"vocabsbaseclass_ptr": 2999}}, {"model": "apis_vocabularies.professiontype", "pk": 3000, "fields": {"vocabsbaseclass_ptr": 3000}}, {"model": "apis_vocabularies.professiontype", "pk": 3003, "fields": {"vocabsbaseclass_ptr": 3003}}, {"model": "apis_vocabularies.professiontype", "pk": 3004, "fields": {"vocabsbaseclass_ptr": 3004}}, {"model": "apis_vocabularies.professiontype", "pk": 3006, "fields": {"vocabsbaseclass_ptr": 3006}}, {"model": "apis_vocabularies.professiontype", "pk": 3009, "fields": {"vocabsbaseclass_ptr": 3009}}, {"model": "apis_vocabularies.professiontype", "pk": 3011, "fields": {"vocabsbaseclass_ptr": 3011}}, {"model": "apis_vocabularies.professiontype", "pk": 3012, "fields": {"vocabsbaseclass_ptr": 3012}}, {"model": "apis_vocabularies.professiontype", "pk": 3014, "fields": {"vocabsbaseclass_ptr": 3014}}, {"model": "apis_vocabularies.professiontype", "pk": 3015, "fields": {"vocabsbaseclass_ptr": 3015}}, {"model": "apis_vocabularies.professiontype", "pk": 3017, "fields": {"vocabsbaseclass_ptr": 3017}}, {"model": "apis_vocabularies.professiontype", "pk": 3018, "fields": {"vocabsbaseclass_ptr": 3018}}, {"model": "apis_vocabularies.professiontype", "pk": 3019, "fields": {"vocabsbaseclass_ptr": 3019}}, {"model": "apis_vocabularies.professiontype", "pk": 3021, "fields": {"vocabsbaseclass_ptr": 3021}}, {"model": "apis_vocabularies.professiontype", "pk": 3022, "fields": {"vocabsbaseclass_ptr": 3022}}, {"model": "apis_vocabularies.professiontype", "pk": 3026, "fields": {"vocabsbaseclass_ptr": 3026}}, {"model": "apis_vocabularies.professiontype", "pk": 3028, "fields": {"vocabsbaseclass_ptr": 3028}}, {"model": "apis_vocabularies.professiontype", "pk": 3029, "fields": {"vocabsbaseclass_ptr": 3029}}, {"model": "apis_vocabularies.professiontype", "pk": 3031, "fields": {"vocabsbaseclass_ptr": 3031}}, {"model": "apis_vocabularies.professiontype", "pk": 3034, "fields": {"vocabsbaseclass_ptr": 3034}}, {"model": "apis_vocabularies.professiontype", "pk": 3035, "fields": {"vocabsbaseclass_ptr": 3035}}, {"model": "apis_vocabularies.professiontype", "pk": 3036, "fields": {"vocabsbaseclass_ptr": 3036}}, {"model": "apis_vocabularies.professiontype", "pk": 3037, "fields": {"vocabsbaseclass_ptr": 3037}}, {"model": "apis_vocabularies.professiontype", "pk": 3039, "fields": {"vocabsbaseclass_ptr": 3039}}, {"model": "apis_vocabularies.professiontype", "pk": 3040, "fields": {"vocabsbaseclass_ptr": 3040}}, {"model": "apis_vocabularies.professiontype", "pk": 3041, "fields": {"vocabsbaseclass_ptr": 3041}}, {"model": "apis_vocabularies.professiontype", "pk": 3045, "fields": {"vocabsbaseclass_ptr": 3045}}, {"model": "apis_vocabularies.professiontype", "pk": 3047, "fields": {"vocabsbaseclass_ptr": 3047}}, {"model": "apis_vocabularies.professiontype", "pk": 3049, "fields": {"vocabsbaseclass_ptr": 3049}}, {"model": "apis_vocabularies.professiontype", "pk": 3054, "fields": {"vocabsbaseclass_ptr": 3054}}, {"model": "apis_vocabularies.professiontype", "pk": 3055, "fields": {"vocabsbaseclass_ptr": 3055}}, {"model": "apis_vocabularies.professiontype", "pk": 3056, "fields": {"vocabsbaseclass_ptr": 3056}}, {"model": "apis_vocabularies.professiontype", "pk": 3057, "fields": {"vocabsbaseclass_ptr": 3057}}, {"model": "apis_vocabularies.professiontype", "pk": 3058, "fields": {"vocabsbaseclass_ptr": 3058}}, {"model": "apis_vocabularies.professiontype", "pk": 3059, "fields": {"vocabsbaseclass_ptr": 3059}}, {"model": "apis_vocabularies.professiontype", "pk": 3060, "fields": {"vocabsbaseclass_ptr": 3060}}, {"model": "apis_vocabularies.professiontype", "pk": 3061, "fields": {"vocabsbaseclass_ptr": 3061}}, {"model": "apis_vocabularies.professiontype", "pk": 3063, "fields": {"vocabsbaseclass_ptr": 3063}}, {"model": "apis_vocabularies.professiontype", "pk": 3064, "fields": {"vocabsbaseclass_ptr": 3064}}, {"model": "apis_vocabularies.professiontype", "pk": 3065, "fields": {"vocabsbaseclass_ptr": 3065}}, {"model": "apis_vocabularies.professiontype", "pk": 3066, "fields": {"vocabsbaseclass_ptr": 3066}}, {"model": "apis_vocabularies.professiontype", "pk": 3067, "fields": {"vocabsbaseclass_ptr": 3067}}, {"model": "apis_vocabularies.professiontype", "pk": 3068, "fields": {"vocabsbaseclass_ptr": 3068}}, {"model": "apis_vocabularies.professiontype", "pk": 3069, "fields": {"vocabsbaseclass_ptr": 3069}}, {"model": "apis_vocabularies.professiontype", "pk": 3071, "fields": {"vocabsbaseclass_ptr": 3071}}, {"model": "apis_vocabularies.professiontype", "pk": 3072, "fields": {"vocabsbaseclass_ptr": 3072}}, {"model": "apis_vocabularies.professiontype", "pk": 3073, "fields": {"vocabsbaseclass_ptr": 3073}}, {"model": "apis_vocabularies.professiontype", "pk": 3074, "fields": {"vocabsbaseclass_ptr": 3074}}, {"model": "apis_vocabularies.professiontype", "pk": 3075, "fields": {"vocabsbaseclass_ptr": 3075}}, {"model": "apis_vocabularies.professiontype", "pk": 3078, "fields": {"vocabsbaseclass_ptr": 3078}}, {"model": "apis_vocabularies.professiontype", "pk": 3080, "fields": {"vocabsbaseclass_ptr": 3080}}, {"model": "apis_vocabularies.professiontype", "pk": 3081, "fields": {"vocabsbaseclass_ptr": 3081}}, {"model": "apis_vocabularies.professiontype", "pk": 3082, "fields": {"vocabsbaseclass_ptr": 3082}}, {"model": "apis_vocabularies.professiontype", "pk": 3085, "fields": {"vocabsbaseclass_ptr": 3085}}, {"model": "apis_vocabularies.professiontype", "pk": 3086, "fields": {"vocabsbaseclass_ptr": 3086}}, {"model": "apis_vocabularies.professiontype", "pk": 3087, "fields": {"vocabsbaseclass_ptr": 3087}}, {"model": "apis_vocabularies.professiontype", "pk": 3088, "fields": {"vocabsbaseclass_ptr": 3088}}, {"model": "apis_vocabularies.professiontype", "pk": 3089, "fields": {"vocabsbaseclass_ptr": 3089}}, {"model": "apis_vocabularies.professiontype", "pk": 3090, "fields": {"vocabsbaseclass_ptr": 3090}}, {"model": "apis_vocabularies.professiontype", "pk": 3091, "fields": {"vocabsbaseclass_ptr": 3091}}, {"model": "apis_vocabularies.professiontype", "pk": 3093, "fields": {"vocabsbaseclass_ptr": 3093}}, {"model": "apis_vocabularies.professiontype", "pk": 3094, "fields": {"vocabsbaseclass_ptr": 3094}}, {"model": "apis_vocabularies.professiontype", "pk": 3096, "fields": {"vocabsbaseclass_ptr": 3096}}, {"model": "apis_vocabularies.professiontype", "pk": 3097, "fields": {"vocabsbaseclass_ptr": 3097}}, {"model": "apis_vocabularies.professiontype", "pk": 3098, "fields": {"vocabsbaseclass_ptr": 3098}}, {"model": "apis_vocabularies.professiontype", "pk": 3099, "fields": {"vocabsbaseclass_ptr": 3099}}, {"model": "apis_vocabularies.professiontype", "pk": 3100, "fields": {"vocabsbaseclass_ptr": 3100}}, {"model": "apis_vocabularies.professiontype", "pk": 3116, "fields": {"vocabsbaseclass_ptr": 3116}}, {"model": "apis_vocabularies.professiontype", "pk": 3117, "fields": {"vocabsbaseclass_ptr": 3117}}, {"model": "apis_vocabularies.professiontype", "pk": 3120, "fields": {"vocabsbaseclass_ptr": 3120}}, {"model": "apis_vocabularies.professiontype", "pk": 3121, "fields": {"vocabsbaseclass_ptr": 3121}}, {"model": "apis_vocabularies.professiontype", "pk": 3122, "fields": {"vocabsbaseclass_ptr": 3122}}, {"model": "apis_vocabularies.professiontype", "pk": 3123, "fields": {"vocabsbaseclass_ptr": 3123}}, {"model": "apis_vocabularies.professiontype", "pk": 3124, "fields": {"vocabsbaseclass_ptr": 3124}}, {"model": "apis_vocabularies.professiontype", "pk": 3125, "fields": {"vocabsbaseclass_ptr": 3125}}, {"model": "apis_vocabularies.professiontype", "pk": 3126, "fields": {"vocabsbaseclass_ptr": 3126}}, {"model": "apis_vocabularies.professiontype", "pk": 3127, "fields": {"vocabsbaseclass_ptr": 3127}}, {"model": "apis_vocabularies.professiontype", "pk": 3128, "fields": {"vocabsbaseclass_ptr": 3128}}, {"model": "apis_vocabularies.professiontype", "pk": 3129, "fields": {"vocabsbaseclass_ptr": 3129}}, {"model": "apis_vocabularies.professiontype", "pk": 3130, "fields": {"vocabsbaseclass_ptr": 3130}}, {"model": "apis_vocabularies.professiontype", "pk": 3131, "fields": {"vocabsbaseclass_ptr": 3131}}, {"model": "apis_vocabularies.professiontype", "pk": 3132, "fields": {"vocabsbaseclass_ptr": 3132}}, {"model": "apis_vocabularies.professiontype", "pk": 3133, "fields": {"vocabsbaseclass_ptr": 3133}}, {"model": "apis_vocabularies.professiontype", "pk": 3134, "fields": {"vocabsbaseclass_ptr": 3134}}, {"model": "apis_vocabularies.professiontype", "pk": 3135, "fields": {"vocabsbaseclass_ptr": 3135}}, {"model": "apis_vocabularies.professiontype", "pk": 3136, "fields": {"vocabsbaseclass_ptr": 3136}}, {"model": "apis_vocabularies.professiontype", "pk": 3137, "fields": {"vocabsbaseclass_ptr": 3137}}, {"model": "apis_vocabularies.professiontype", "pk": 3138, "fields": {"vocabsbaseclass_ptr": 3138}}, {"model": "apis_vocabularies.professiontype", "pk": 3139, "fields": {"vocabsbaseclass_ptr": 3139}}, {"model": "apis_vocabularies.professiontype", "pk": 3140, "fields": {"vocabsbaseclass_ptr": 3140}}, {"model": "apis_vocabularies.professiontype", "pk": 3141, "fields": {"vocabsbaseclass_ptr": 3141}}, {"model": "apis_vocabularies.professiontype", "pk": 3142, "fields": {"vocabsbaseclass_ptr": 3142}}, {"model": "apis_vocabularies.professiontype", "pk": 3143, "fields": {"vocabsbaseclass_ptr": 3143}}, {"model": "apis_vocabularies.professiontype", "pk": 3144, "fields": {"vocabsbaseclass_ptr": 3144}}, {"model": "apis_vocabularies.professiontype", "pk": 3145, "fields": {"vocabsbaseclass_ptr": 3145}}, {"model": "apis_vocabularies.professiontype", "pk": 3146, "fields": {"vocabsbaseclass_ptr": 3146}}, {"model": "apis_vocabularies.professiontype", "pk": 3147, "fields": {"vocabsbaseclass_ptr": 3147}}, {"model": "apis_vocabularies.professiontype", "pk": 3148, "fields": {"vocabsbaseclass_ptr": 3148}}, {"model": "apis_vocabularies.professiontype", "pk": 3149, "fields": {"vocabsbaseclass_ptr": 3149}}, {"model": "apis_vocabularies.professiontype", "pk": 3150, "fields": {"vocabsbaseclass_ptr": 3150}}, {"model": "apis_vocabularies.professiontype", "pk": 3151, "fields": {"vocabsbaseclass_ptr": 3151}}, {"model": "apis_vocabularies.professiontype", "pk": 3152, "fields": {"vocabsbaseclass_ptr": 3152}}, {"model": "apis_vocabularies.professiontype", "pk": 3153, "fields": {"vocabsbaseclass_ptr": 3153}}, {"model": "apis_vocabularies.professiontype", "pk": 3154, "fields": {"vocabsbaseclass_ptr": 3154}}, {"model": "apis_vocabularies.professiontype", "pk": 3155, "fields": {"vocabsbaseclass_ptr": 3155}}, {"model": "apis_vocabularies.professiontype", "pk": 3156, "fields": {"vocabsbaseclass_ptr": 3156}}, {"model": "apis_vocabularies.professiontype", "pk": 3157, "fields": {"vocabsbaseclass_ptr": 3157}}, {"model": "apis_vocabularies.professiontype", "pk": 3158, "fields": {"vocabsbaseclass_ptr": 3158}}, {"model": "apis_vocabularies.professiontype", "pk": 3159, "fields": {"vocabsbaseclass_ptr": 3159}}, {"model": "apis_vocabularies.professiontype", "pk": 3160, "fields": {"vocabsbaseclass_ptr": 3160}}, {"model": "apis_vocabularies.professiontype", "pk": 3161, "fields": {"vocabsbaseclass_ptr": 3161}}, {"model": "apis_vocabularies.professiontype", "pk": 3162, "fields": {"vocabsbaseclass_ptr": 3162}}, {"model": "apis_vocabularies.professiontype", "pk": 3163, "fields": {"vocabsbaseclass_ptr": 3163}}, {"model": "apis_vocabularies.professiontype", "pk": 3164, "fields": {"vocabsbaseclass_ptr": 3164}}, {"model": "apis_vocabularies.professiontype", "pk": 3165, "fields": {"vocabsbaseclass_ptr": 3165}}, {"model": "apis_vocabularies.professiontype", "pk": 3166, "fields": {"vocabsbaseclass_ptr": 3166}}, {"model": "apis_vocabularies.professiontype", "pk": 3167, "fields": {"vocabsbaseclass_ptr": 3167}}, {"model": "apis_vocabularies.professiontype", "pk": 3168, "fields": {"vocabsbaseclass_ptr": 3168}}, {"model": "apis_vocabularies.professiontype", "pk": 3169, "fields": {"vocabsbaseclass_ptr": 3169}}, {"model": "apis_vocabularies.professiontype", "pk": 3170, "fields": {"vocabsbaseclass_ptr": 3170}}, {"model": "apis_vocabularies.professiontype", "pk": 3171, "fields": {"vocabsbaseclass_ptr": 3171}}, {"model": "apis_vocabularies.professiontype", "pk": 3172, "fields": {"vocabsbaseclass_ptr": 3172}}, {"model": "apis_vocabularies.professiontype", "pk": 3173, "fields": {"vocabsbaseclass_ptr": 3173}}, {"model": "apis_vocabularies.professiontype", "pk": 3174, "fields": {"vocabsbaseclass_ptr": 3174}}, {"model": "apis_vocabularies.professiontype", "pk": 3175, "fields": {"vocabsbaseclass_ptr": 3175}}, {"model": "apis_vocabularies.professiontype", "pk": 3176, "fields": {"vocabsbaseclass_ptr": 3176}}, {"model": "apis_vocabularies.professiontype", "pk": 3177, "fields": {"vocabsbaseclass_ptr": 3177}}, {"model": "apis_vocabularies.professiontype", "pk": 3178, "fields": {"vocabsbaseclass_ptr": 3178}}, {"model": "apis_vocabularies.professiontype", "pk": 3179, "fields": {"vocabsbaseclass_ptr": 3179}}, {"model": "apis_vocabularies.professiontype", "pk": 3180, "fields": {"vocabsbaseclass_ptr": 3180}}, {"model": "apis_vocabularies.professiontype", "pk": 3181, "fields": {"vocabsbaseclass_ptr": 3181}}, {"model": "apis_vocabularies.professiontype", "pk": 3182, "fields": {"vocabsbaseclass_ptr": 3182}}, {"model": "apis_vocabularies.professiontype", "pk": 3183, "fields": {"vocabsbaseclass_ptr": 3183}}, {"model": "apis_vocabularies.professiontype", "pk": 3184, "fields": {"vocabsbaseclass_ptr": 3184}}, {"model": "apis_vocabularies.professiontype", "pk": 3185, "fields": {"vocabsbaseclass_ptr": 3185}}, {"model": "apis_vocabularies.professiontype", "pk": 3186, "fields": {"vocabsbaseclass_ptr": 3186}}, {"model": "apis_vocabularies.professiontype", "pk": 3187, "fields": {"vocabsbaseclass_ptr": 3187}}, {"model": "apis_vocabularies.professiontype", "pk": 3188, "fields": {"vocabsbaseclass_ptr": 3188}}, {"model": "apis_vocabularies.professiontype", "pk": 3189, "fields": {"vocabsbaseclass_ptr": 3189}}, {"model": "apis_vocabularies.professiontype", "pk": 3190, "fields": {"vocabsbaseclass_ptr": 3190}}, {"model": "apis_vocabularies.professiontype", "pk": 3191, "fields": {"vocabsbaseclass_ptr": 3191}}, {"model": "apis_vocabularies.professiontype", "pk": 3192, "fields": {"vocabsbaseclass_ptr": 3192}}, {"model": "apis_vocabularies.professiontype", "pk": 3193, "fields": {"vocabsbaseclass_ptr": 3193}}, {"model": "apis_vocabularies.professiontype", "pk": 3194, "fields": {"vocabsbaseclass_ptr": 3194}}, {"model": "apis_vocabularies.professiontype", "pk": 3195, "fields": {"vocabsbaseclass_ptr": 3195}}, {"model": "apis_vocabularies.professiontype", "pk": 3196, "fields": {"vocabsbaseclass_ptr": 3196}}, {"model": "apis_vocabularies.professiontype", "pk": 3197, "fields": {"vocabsbaseclass_ptr": 3197}}, {"model": "apis_vocabularies.professiontype", "pk": 3198, "fields": {"vocabsbaseclass_ptr": 3198}}, {"model": "apis_vocabularies.professiontype", "pk": 3199, "fields": {"vocabsbaseclass_ptr": 3199}}, {"model": "apis_vocabularies.professiontype", "pk": 3200, "fields": {"vocabsbaseclass_ptr": 3200}}, {"model": "apis_vocabularies.professiontype", "pk": 3201, "fields": {"vocabsbaseclass_ptr": 3201}}, {"model": "apis_vocabularies.professiontype", "pk": 3202, "fields": {"vocabsbaseclass_ptr": 3202}}, {"model": "apis_vocabularies.professiontype", "pk": 3203, "fields": {"vocabsbaseclass_ptr": 3203}}, {"model": "apis_vocabularies.professiontype", "pk": 3204, "fields": {"vocabsbaseclass_ptr": 3204}}, {"model": "apis_vocabularies.professiontype", "pk": 3205, "fields": {"vocabsbaseclass_ptr": 3205}}, {"model": "apis_vocabularies.professiontype", "pk": 3206, "fields": {"vocabsbaseclass_ptr": 3206}}, {"model": "apis_vocabularies.professiontype", "pk": 3207, "fields": {"vocabsbaseclass_ptr": 3207}}, {"model": "apis_vocabularies.professiontype", "pk": 3208, "fields": {"vocabsbaseclass_ptr": 3208}}, {"model": "apis_vocabularies.professiontype", "pk": 3209, "fields": {"vocabsbaseclass_ptr": 3209}}, {"model": "apis_vocabularies.professiontype", "pk": 3210, "fields": {"vocabsbaseclass_ptr": 3210}}, {"model": "apis_vocabularies.professiontype", "pk": 3211, "fields": {"vocabsbaseclass_ptr": 3211}}, {"model": "apis_vocabularies.professiontype", "pk": 3212, "fields": {"vocabsbaseclass_ptr": 3212}}, {"model": "apis_vocabularies.professiontype", "pk": 3213, "fields": {"vocabsbaseclass_ptr": 3213}}, {"model": "apis_vocabularies.professiontype", "pk": 3214, "fields": {"vocabsbaseclass_ptr": 3214}}, {"model": "apis_vocabularies.professiontype", "pk": 3215, "fields": {"vocabsbaseclass_ptr": 3215}}, {"model": "apis_vocabularies.professiontype", "pk": 3216, "fields": {"vocabsbaseclass_ptr": 3216}}, {"model": "apis_vocabularies.professiontype", "pk": 3217, "fields": {"vocabsbaseclass_ptr": 3217}}, {"model": "apis_vocabularies.professiontype", "pk": 3218, "fields": {"vocabsbaseclass_ptr": 3218}}, {"model": "apis_vocabularies.professiontype", "pk": 3219, "fields": {"vocabsbaseclass_ptr": 3219}}, {"model": "apis_vocabularies.professiontype", "pk": 3220, "fields": {"vocabsbaseclass_ptr": 3220}}, {"model": "apis_vocabularies.professiontype", "pk": 3221, "fields": {"vocabsbaseclass_ptr": 3221}}, {"model": "apis_vocabularies.professiontype", "pk": 3222, "fields": {"vocabsbaseclass_ptr": 3222}}, {"model": "apis_vocabularies.professiontype", "pk": 3223, "fields": {"vocabsbaseclass_ptr": 3223}}, {"model": "apis_vocabularies.professiontype", "pk": 3224, "fields": {"vocabsbaseclass_ptr": 3224}}, {"model": "apis_vocabularies.professiontype", "pk": 3225, "fields": {"vocabsbaseclass_ptr": 3225}}, {"model": "apis_vocabularies.professiontype", "pk": 3226, "fields": {"vocabsbaseclass_ptr": 3226}}, {"model": "apis_vocabularies.professiontype", "pk": 3227, "fields": {"vocabsbaseclass_ptr": 3227}}, {"model": "apis_vocabularies.professiontype", "pk": 3228, "fields": {"vocabsbaseclass_ptr": 3228}}, {"model": "apis_vocabularies.professiontype", "pk": 3229, "fields": {"vocabsbaseclass_ptr": 3229}}, {"model": "apis_vocabularies.professiontype", "pk": 3230, "fields": {"vocabsbaseclass_ptr": 3230}}, {"model": "apis_vocabularies.professiontype", "pk": 3231, "fields": {"vocabsbaseclass_ptr": 3231}}, {"model": "apis_vocabularies.professiontype", "pk": 3232, "fields": {"vocabsbaseclass_ptr": 3232}}, {"model": "apis_vocabularies.professiontype", "pk": 3233, "fields": {"vocabsbaseclass_ptr": 3233}}, {"model": "apis_vocabularies.professiontype", "pk": 3234, "fields": {"vocabsbaseclass_ptr": 3234}}, {"model": "apis_vocabularies.professiontype", "pk": 3235, "fields": {"vocabsbaseclass_ptr": 3235}}, {"model": "apis_vocabularies.professiontype", "pk": 3236, "fields": {"vocabsbaseclass_ptr": 3236}}, {"model": "apis_vocabularies.professiontype", "pk": 3237, "fields": {"vocabsbaseclass_ptr": 3237}}, {"model": "apis_vocabularies.professiontype", "pk": 3238, "fields": {"vocabsbaseclass_ptr": 3238}}, {"model": "apis_vocabularies.professiontype", "pk": 3239, "fields": {"vocabsbaseclass_ptr": 3239}}, {"model": "apis_vocabularies.professiontype", "pk": 3240, "fields": {"vocabsbaseclass_ptr": 3240}}, {"model": "apis_vocabularies.professiontype", "pk": 3241, "fields": {"vocabsbaseclass_ptr": 3241}}, {"model": "apis_vocabularies.professiontype", "pk": 3242, "fields": {"vocabsbaseclass_ptr": 3242}}, {"model": "apis_vocabularies.professiontype", "pk": 3243, "fields": {"vocabsbaseclass_ptr": 3243}}, {"model": "apis_vocabularies.professiontype", "pk": 3244, "fields": {"vocabsbaseclass_ptr": 3244}}, {"model": "apis_vocabularies.professiontype", "pk": 3245, "fields": {"vocabsbaseclass_ptr": 3245}}, {"model": "apis_vocabularies.professiontype", "pk": 3246, "fields": {"vocabsbaseclass_ptr": 3246}}, {"model": "apis_vocabularies.professiontype", "pk": 3247, "fields": {"vocabsbaseclass_ptr": 3247}}, {"model": "apis_vocabularies.professiontype", "pk": 3248, "fields": {"vocabsbaseclass_ptr": 3248}}, {"model": "apis_vocabularies.professiontype", "pk": 3249, "fields": {"vocabsbaseclass_ptr": 3249}}, {"model": "apis_vocabularies.professiontype", "pk": 3250, "fields": {"vocabsbaseclass_ptr": 3250}}, {"model": "apis_vocabularies.professiontype", "pk": 3251, "fields": {"vocabsbaseclass_ptr": 3251}}, {"model": "apis_vocabularies.professiontype", "pk": 3252, "fields": {"vocabsbaseclass_ptr": 3252}}, {"model": "apis_vocabularies.professiontype", "pk": 3253, "fields": {"vocabsbaseclass_ptr": 3253}}, {"model": "apis_vocabularies.professiontype", "pk": 3254, "fields": {"vocabsbaseclass_ptr": 3254}}, {"model": "apis_vocabularies.professiontype", "pk": 3255, "fields": {"vocabsbaseclass_ptr": 3255}}, {"model": "apis_vocabularies.professiontype", "pk": 3256, "fields": {"vocabsbaseclass_ptr": 3256}}, {"model": "apis_vocabularies.professiontype", "pk": 3257, "fields": {"vocabsbaseclass_ptr": 3257}}, {"model": "apis_vocabularies.professiontype", "pk": 3258, "fields": {"vocabsbaseclass_ptr": 3258}}, {"model": "apis_vocabularies.professiontype", "pk": 3259, "fields": {"vocabsbaseclass_ptr": 3259}}, {"model": "apis_vocabularies.professiontype", "pk": 3260, "fields": {"vocabsbaseclass_ptr": 3260}}, {"model": "apis_vocabularies.professiontype", "pk": 3261, "fields": {"vocabsbaseclass_ptr": 3261}}, {"model": "apis_vocabularies.professiontype", "pk": 3262, "fields": {"vocabsbaseclass_ptr": 3262}}, {"model": "apis_vocabularies.professiontype", "pk": 3263, "fields": {"vocabsbaseclass_ptr": 3263}}, {"model": "apis_vocabularies.professiontype", "pk": 3264, "fields": {"vocabsbaseclass_ptr": 3264}}, {"model": "apis_vocabularies.professiontype", "pk": 3265, "fields": {"vocabsbaseclass_ptr": 3265}}, {"model": "apis_vocabularies.professiontype", "pk": 3266, "fields": {"vocabsbaseclass_ptr": 3266}}, {"model": "apis_vocabularies.professiontype", "pk": 3267, "fields": {"vocabsbaseclass_ptr": 3267}}, {"model": "apis_vocabularies.professiontype", "pk": 3268, "fields": {"vocabsbaseclass_ptr": 3268}}, {"model": "apis_vocabularies.professiontype", "pk": 3269, "fields": {"vocabsbaseclass_ptr": 3269}}, {"model": "apis_vocabularies.professiontype", "pk": 3270, "fields": {"vocabsbaseclass_ptr": 3270}}, {"model": "apis_vocabularies.professiontype", "pk": 3271, "fields": {"vocabsbaseclass_ptr": 3271}}, {"model": "apis_vocabularies.professiontype", "pk": 3272, "fields": {"vocabsbaseclass_ptr": 3272}}, {"model": "apis_vocabularies.professiontype", "pk": 3273, "fields": {"vocabsbaseclass_ptr": 3273}}, {"model": "apis_vocabularies.professiontype", "pk": 3274, "fields": {"vocabsbaseclass_ptr": 3274}}, {"model": "apis_vocabularies.professiontype", "pk": 3275, "fields": {"vocabsbaseclass_ptr": 3275}}, {"model": "apis_vocabularies.professiontype", "pk": 3276, "fields": {"vocabsbaseclass_ptr": 3276}}, {"model": "apis_vocabularies.professiontype", "pk": 3277, "fields": {"vocabsbaseclass_ptr": 3277}}, {"model": "apis_vocabularies.professiontype", "pk": 3278, "fields": {"vocabsbaseclass_ptr": 3278}}, {"model": "apis_vocabularies.professiontype", "pk": 3279, "fields": {"vocabsbaseclass_ptr": 3279}}, {"model": "apis_vocabularies.professiontype", "pk": 3280, "fields": {"vocabsbaseclass_ptr": 3280}}, {"model": "apis_vocabularies.professiontype", "pk": 3281, "fields": {"vocabsbaseclass_ptr": 3281}}, {"model": "apis_vocabularies.professiontype", "pk": 3282, "fields": {"vocabsbaseclass_ptr": 3282}}, {"model": "apis_vocabularies.professiontype", "pk": 3283, "fields": {"vocabsbaseclass_ptr": 3283}}, {"model": "apis_vocabularies.professiontype", "pk": 3284, "fields": {"vocabsbaseclass_ptr": 3284}}, {"model": "apis_vocabularies.professiontype", "pk": 3285, "fields": {"vocabsbaseclass_ptr": 3285}}, {"model": "apis_vocabularies.professiontype", "pk": 3286, "fields": {"vocabsbaseclass_ptr": 3286}}, {"model": "apis_vocabularies.professiontype", "pk": 3287, "fields": {"vocabsbaseclass_ptr": 3287}}, {"model": "apis_vocabularies.professiontype", "pk": 3288, "fields": {"vocabsbaseclass_ptr": 3288}}, {"model": "apis_vocabularies.professiontype", "pk": 3289, "fields": {"vocabsbaseclass_ptr": 3289}}, {"model": "apis_vocabularies.professiontype", "pk": 3290, "fields": {"vocabsbaseclass_ptr": 3290}}, {"model": "apis_vocabularies.professiontype", "pk": 3291, "fields": {"vocabsbaseclass_ptr": 3291}}, {"model": "apis_vocabularies.professiontype", "pk": 3292, "fields": {"vocabsbaseclass_ptr": 3292}}, {"model": "apis_vocabularies.professiontype", "pk": 3293, "fields": {"vocabsbaseclass_ptr": 3293}}, {"model": "apis_vocabularies.professiontype", "pk": 3294, "fields": {"vocabsbaseclass_ptr": 3294}}, {"model": "apis_vocabularies.professiontype", "pk": 3295, "fields": {"vocabsbaseclass_ptr": 3295}}, {"model": "apis_vocabularies.professiontype", "pk": 3296, "fields": {"vocabsbaseclass_ptr": 3296}}, {"model": "apis_vocabularies.professiontype", "pk": 3297, "fields": {"vocabsbaseclass_ptr": 3297}}, {"model": "apis_vocabularies.professiontype", "pk": 3298, "fields": {"vocabsbaseclass_ptr": 3298}}, {"model": "apis_vocabularies.professiontype", "pk": 3299, "fields": {"vocabsbaseclass_ptr": 3299}}, {"model": "apis_vocabularies.professiontype", "pk": 3300, "fields": {"vocabsbaseclass_ptr": 3300}}, {"model": "apis_vocabularies.professiontype", "pk": 3301, "fields": {"vocabsbaseclass_ptr": 3301}}, {"model": "apis_vocabularies.professiontype", "pk": 3302, "fields": {"vocabsbaseclass_ptr": 3302}}, {"model": "apis_vocabularies.professiontype", "pk": 3303, "fields": {"vocabsbaseclass_ptr": 3303}}, {"model": "apis_vocabularies.professiontype", "pk": 3304, "fields": {"vocabsbaseclass_ptr": 3304}}, {"model": "apis_vocabularies.professiontype", "pk": 3305, "fields": {"vocabsbaseclass_ptr": 3305}}, {"model": "apis_vocabularies.professiontype", "pk": 3306, "fields": {"vocabsbaseclass_ptr": 3306}}, {"model": "apis_vocabularies.professiontype", "pk": 3307, "fields": {"vocabsbaseclass_ptr": 3307}}, {"model": "apis_vocabularies.professiontype", "pk": 3308, "fields": {"vocabsbaseclass_ptr": 3308}}, {"model": "apis_vocabularies.professiontype", "pk": 3309, "fields": {"vocabsbaseclass_ptr": 3309}}, {"model": "apis_vocabularies.professiontype", "pk": 3310, "fields": {"vocabsbaseclass_ptr": 3310}}, {"model": "apis_vocabularies.professiontype", "pk": 3311, "fields": {"vocabsbaseclass_ptr": 3311}}, {"model": "apis_vocabularies.professiontype", "pk": 3312, "fields": {"vocabsbaseclass_ptr": 3312}}, {"model": "apis_vocabularies.professiontype", "pk": 3313, "fields": {"vocabsbaseclass_ptr": 3313}}, {"model": "apis_vocabularies.professiontype", "pk": 3314, "fields": {"vocabsbaseclass_ptr": 3314}}, {"model": "apis_vocabularies.professiontype", "pk": 3315, "fields": {"vocabsbaseclass_ptr": 3315}}, {"model": "apis_vocabularies.professiontype", "pk": 3316, "fields": {"vocabsbaseclass_ptr": 3316}}, {"model": "apis_vocabularies.professiontype", "pk": 3317, "fields": {"vocabsbaseclass_ptr": 3317}}, {"model": "apis_vocabularies.professiontype", "pk": 3318, "fields": {"vocabsbaseclass_ptr": 3318}}, {"model": "apis_vocabularies.professiontype", "pk": 3319, "fields": {"vocabsbaseclass_ptr": 3319}}, {"model": "apis_vocabularies.professiontype", "pk": 3320, "fields": {"vocabsbaseclass_ptr": 3320}}, {"model": "apis_vocabularies.professiontype", "pk": 3321, "fields": {"vocabsbaseclass_ptr": 3321}}, {"model": "apis_vocabularies.professiontype", "pk": 3322, "fields": {"vocabsbaseclass_ptr": 3322}}, {"model": "apis_vocabularies.professiontype", "pk": 3323, "fields": {"vocabsbaseclass_ptr": 3323}}, {"model": "apis_vocabularies.professiontype", "pk": 3324, "fields": {"vocabsbaseclass_ptr": 3324}}, {"model": "apis_vocabularies.professiontype", "pk": 3325, "fields": {"vocabsbaseclass_ptr": 3325}}, {"model": "apis_vocabularies.professiontype", "pk": 3326, "fields": {"vocabsbaseclass_ptr": 3326}}, {"model": "apis_vocabularies.professiontype", "pk": 3327, "fields": {"vocabsbaseclass_ptr": 3327}}, {"model": "apis_vocabularies.professiontype", "pk": 3328, "fields": {"vocabsbaseclass_ptr": 3328}}, {"model": "apis_vocabularies.professiontype", "pk": 3329, "fields": {"vocabsbaseclass_ptr": 3329}}, {"model": "apis_vocabularies.professiontype", "pk": 3330, "fields": {"vocabsbaseclass_ptr": 3330}}, {"model": "apis_vocabularies.professiontype", "pk": 3331, "fields": {"vocabsbaseclass_ptr": 3331}}, {"model": "apis_vocabularies.professiontype", "pk": 3332, "fields": {"vocabsbaseclass_ptr": 3332}}, {"model": "apis_vocabularies.professiontype", "pk": 3333, "fields": {"vocabsbaseclass_ptr": 3333}}, {"model": "apis_vocabularies.professiontype", "pk": 3334, "fields": {"vocabsbaseclass_ptr": 3334}}, {"model": "apis_vocabularies.professiontype", "pk": 3335, "fields": {"vocabsbaseclass_ptr": 3335}}, {"model": "apis_vocabularies.professiontype", "pk": 3336, "fields": {"vocabsbaseclass_ptr": 3336}}, {"model": "apis_vocabularies.professiontype", "pk": 3337, "fields": {"vocabsbaseclass_ptr": 3337}}, {"model": "apis_vocabularies.professiontype", "pk": 3338, "fields": {"vocabsbaseclass_ptr": 3338}}, {"model": "apis_vocabularies.professiontype", "pk": 3339, "fields": {"vocabsbaseclass_ptr": 3339}}, {"model": "apis_vocabularies.professiontype", "pk": 3340, "fields": {"vocabsbaseclass_ptr": 3340}}, {"model": "apis_vocabularies.professiontype", "pk": 3341, "fields": {"vocabsbaseclass_ptr": 3341}}, {"model": "apis_vocabularies.professiontype", "pk": 3342, "fields": {"vocabsbaseclass_ptr": 3342}}, {"model": "apis_vocabularies.professiontype", "pk": 3343, "fields": {"vocabsbaseclass_ptr": 3343}}, {"model": "apis_vocabularies.professiontype", "pk": 3344, "fields": {"vocabsbaseclass_ptr": 3344}}, {"model": "apis_vocabularies.professiontype", "pk": 3345, "fields": {"vocabsbaseclass_ptr": 3345}}, {"model": "apis_vocabularies.professiontype", "pk": 3346, "fields": {"vocabsbaseclass_ptr": 3346}}, {"model": "apis_vocabularies.professiontype", "pk": 3347, "fields": {"vocabsbaseclass_ptr": 3347}}, {"model": "apis_vocabularies.professiontype", "pk": 3348, "fields": {"vocabsbaseclass_ptr": 3348}}, {"model": "apis_vocabularies.professiontype", "pk": 3349, "fields": {"vocabsbaseclass_ptr": 3349}}, {"model": "apis_vocabularies.professiontype", "pk": 3350, "fields": {"vocabsbaseclass_ptr": 3350}}, {"model": "apis_vocabularies.professiontype", "pk": 3351, "fields": {"vocabsbaseclass_ptr": 3351}}, {"model": "apis_vocabularies.professiontype", "pk": 3352, "fields": {"vocabsbaseclass_ptr": 3352}}, {"model": "apis_vocabularies.professiontype", "pk": 3353, "fields": {"vocabsbaseclass_ptr": 3353}}, {"model": "apis_vocabularies.professiontype", "pk": 3354, "fields": {"vocabsbaseclass_ptr": 3354}}, {"model": "apis_vocabularies.professiontype", "pk": 3355, "fields": {"vocabsbaseclass_ptr": 3355}}, {"model": "apis_vocabularies.professiontype", "pk": 3356, "fields": {"vocabsbaseclass_ptr": 3356}}, {"model": "apis_vocabularies.professiontype", "pk": 3357, "fields": {"vocabsbaseclass_ptr": 3357}}, {"model": "apis_vocabularies.professiontype", "pk": 3358, "fields": {"vocabsbaseclass_ptr": 3358}}, {"model": "apis_vocabularies.professiontype", "pk": 3359, "fields": {"vocabsbaseclass_ptr": 3359}}, {"model": "apis_vocabularies.professiontype", "pk": 3360, "fields": {"vocabsbaseclass_ptr": 3360}}, {"model": "apis_vocabularies.professiontype", "pk": 3361, "fields": {"vocabsbaseclass_ptr": 3361}}, {"model": "apis_vocabularies.professiontype", "pk": 3362, "fields": {"vocabsbaseclass_ptr": 3362}}, {"model": "apis_vocabularies.professiontype", "pk": 3363, "fields": {"vocabsbaseclass_ptr": 3363}}, {"model": "apis_vocabularies.professiontype", "pk": 3364, "fields": {"vocabsbaseclass_ptr": 3364}}, {"model": "apis_vocabularies.professiontype", "pk": 3365, "fields": {"vocabsbaseclass_ptr": 3365}}, {"model": "apis_vocabularies.professiontype", "pk": 3366, "fields": {"vocabsbaseclass_ptr": 3366}}, {"model": "apis_vocabularies.professiontype", "pk": 3367, "fields": {"vocabsbaseclass_ptr": 3367}}, {"model": "apis_vocabularies.professiontype", "pk": 3368, "fields": {"vocabsbaseclass_ptr": 3368}}, {"model": "apis_vocabularies.professiontype", "pk": 3369, "fields": {"vocabsbaseclass_ptr": 3369}}, {"model": "apis_vocabularies.professiontype", "pk": 3370, "fields": {"vocabsbaseclass_ptr": 3370}}, {"model": "apis_vocabularies.professiontype", "pk": 3371, "fields": {"vocabsbaseclass_ptr": 3371}}, {"model": "apis_vocabularies.professiontype", "pk": 3372, "fields": {"vocabsbaseclass_ptr": 3372}}, {"model": "apis_vocabularies.professiontype", "pk": 3373, "fields": {"vocabsbaseclass_ptr": 3373}}, {"model": "apis_vocabularies.professiontype", "pk": 3374, "fields": {"vocabsbaseclass_ptr": 3374}}, {"model": "apis_vocabularies.professiontype", "pk": 3375, "fields": {"vocabsbaseclass_ptr": 3375}}, {"model": "apis_vocabularies.professiontype", "pk": 3376, "fields": {"vocabsbaseclass_ptr": 3376}}, {"model": "apis_vocabularies.professiontype", "pk": 3377, "fields": {"vocabsbaseclass_ptr": 3377}}, {"model": "apis_vocabularies.professiontype", "pk": 3378, "fields": {"vocabsbaseclass_ptr": 3378}}, {"model": "apis_vocabularies.professiontype", "pk": 3379, "fields": {"vocabsbaseclass_ptr": 3379}}, {"model": "apis_vocabularies.professiontype", "pk": 3380, "fields": {"vocabsbaseclass_ptr": 3380}}, {"model": "apis_vocabularies.professiontype", "pk": 3381, "fields": {"vocabsbaseclass_ptr": 3381}}, {"model": "apis_vocabularies.professiontype", "pk": 3382, "fields": {"vocabsbaseclass_ptr": 3382}}, {"model": "apis_vocabularies.professiontype", "pk": 3383, "fields": {"vocabsbaseclass_ptr": 3383}}, {"model": "apis_vocabularies.professiontype", "pk": 3384, "fields": {"vocabsbaseclass_ptr": 3384}}, {"model": "apis_vocabularies.professiontype", "pk": 3385, "fields": {"vocabsbaseclass_ptr": 3385}}, {"model": "apis_vocabularies.professiontype", "pk": 3386, "fields": {"vocabsbaseclass_ptr": 3386}}, {"model": "apis_vocabularies.professiontype", "pk": 3387, "fields": {"vocabsbaseclass_ptr": 3387}}, {"model": "apis_vocabularies.professiontype", "pk": 3388, "fields": {"vocabsbaseclass_ptr": 3388}}, {"model": "apis_vocabularies.professiontype", "pk": 3389, "fields": {"vocabsbaseclass_ptr": 3389}}, {"model": "apis_vocabularies.professiontype", "pk": 3395, "fields": {"vocabsbaseclass_ptr": 3395}}, {"model": "apis_vocabularies.professiontype", "pk": 3406, "fields": {"vocabsbaseclass_ptr": 3406}}, {"model": "apis_vocabularies.professiontype", "pk": 3407, "fields": {"vocabsbaseclass_ptr": 3407}}, {"model": "apis_vocabularies.professiontype", "pk": 3410, "fields": {"vocabsbaseclass_ptr": 3410}}, {"model": "apis_vocabularies.professiontype", "pk": 3411, "fields": {"vocabsbaseclass_ptr": 3411}}, {"model": "apis_vocabularies.professiontype", "pk": 3412, "fields": {"vocabsbaseclass_ptr": 3412}}, {"model": "apis_vocabularies.professiontype", "pk": 3416, "fields": {"vocabsbaseclass_ptr": 3416}}, {"model": "apis_vocabularies.professiontype", "pk": 3418, "fields": {"vocabsbaseclass_ptr": 3418}}, {"model": "apis_vocabularies.professiontype", "pk": 3421, "fields": {"vocabsbaseclass_ptr": 3421}}, {"model": "apis_vocabularies.professiontype", "pk": 3422, "fields": {"vocabsbaseclass_ptr": 3422}}, {"model": "apis_vocabularies.professiontype", "pk": 3423, "fields": {"vocabsbaseclass_ptr": 3423}}, {"model": "apis_vocabularies.professiontype", "pk": 3424, "fields": {"vocabsbaseclass_ptr": 3424}}, {"model": "apis_vocabularies.professiontype", "pk": 3425, "fields": {"vocabsbaseclass_ptr": 3425}}, {"model": "apis_vocabularies.professiontype", "pk": 3426, "fields": {"vocabsbaseclass_ptr": 3426}}, {"model": "apis_vocabularies.professiontype", "pk": 3427, "fields": {"vocabsbaseclass_ptr": 3427}}, {"model": "apis_vocabularies.professiontype", "pk": 3428, "fields": {"vocabsbaseclass_ptr": 3428}}, {"model": "apis_vocabularies.professiontype", "pk": 3434, "fields": {"vocabsbaseclass_ptr": 3434}}, {"model": "apis_vocabularies.professiontype", "pk": 3436, "fields": {"vocabsbaseclass_ptr": 3436}}, {"model": "apis_vocabularies.professiontype", "pk": 3437, "fields": {"vocabsbaseclass_ptr": 3437}}, {"model": "apis_vocabularies.professiontype", "pk": 3441, "fields": {"vocabsbaseclass_ptr": 3441}}, {"model": "apis_vocabularies.professiontype", "pk": 3448, "fields": {"vocabsbaseclass_ptr": 3448}}, {"model": "apis_vocabularies.professiontype", "pk": 3449, "fields": {"vocabsbaseclass_ptr": 3449}}, {"model": "apis_vocabularies.professiontype", "pk": 3450, "fields": {"vocabsbaseclass_ptr": 3450}}, {"model": "apis_vocabularies.professiontype", "pk": 3453, "fields": {"vocabsbaseclass_ptr": 3453}}, {"model": "apis_vocabularies.professiontype", "pk": 3454, "fields": {"vocabsbaseclass_ptr": 3454}}, {"model": "apis_vocabularies.professiontype", "pk": 3455, "fields": {"vocabsbaseclass_ptr": 3455}}, {"model": "apis_vocabularies.professiontype", "pk": 3456, "fields": {"vocabsbaseclass_ptr": 3456}}, {"model": "apis_vocabularies.professiontype", "pk": 3457, "fields": {"vocabsbaseclass_ptr": 3457}}, {"model": "apis_vocabularies.placetype", "pk": 2, "fields": {"vocabsbaseclass_ptr": 2}}, {"model": "apis_vocabularies.placetype", "pk": 3, "fields": {"vocabsbaseclass_ptr": 3}}, {"model": "apis_vocabularies.placetype", "pk": 4, "fields": {"vocabsbaseclass_ptr": 4}}, {"model": "apis_vocabularies.placetype", "pk": 5, "fields": {"vocabsbaseclass_ptr": 5}}, {"model": "apis_vocabularies.placetype", "pk": 6, "fields": {"vocabsbaseclass_ptr": 6}}, {"model": "apis_vocabularies.placetype", "pk": 7, "fields": {"vocabsbaseclass_ptr": 7}}, {"model": "apis_vocabularies.placetype", "pk": 8, "fields": {"vocabsbaseclass_ptr": 8}}, {"model": "apis_vocabularies.placetype", "pk": 9, "fields": {"vocabsbaseclass_ptr": 9}}, {"model": "apis_vocabularies.placetype", "pk": 10, "fields": {"vocabsbaseclass_ptr": 10}}, {"model": "apis_vocabularies.placetype", "pk": 12, "fields": {"vocabsbaseclass_ptr": 12}}, {"model": "apis_vocabularies.placetype", "pk": 13, "fields": {"vocabsbaseclass_ptr": 13}}, {"model": "apis_vocabularies.placetype", "pk": 14, "fields": {"vocabsbaseclass_ptr": 14}}, {"model": "apis_vocabularies.placetype", "pk": 15, "fields": {"vocabsbaseclass_ptr": 15}}, {"model": "apis_vocabularies.placetype", "pk": 16, "fields": {"vocabsbaseclass_ptr": 16}}, {"model": "apis_vocabularies.placetype", "pk": 17, "fields": {"vocabsbaseclass_ptr": 17}}, {"model": "apis_vocabularies.placetype", "pk": 18, "fields": {"vocabsbaseclass_ptr": 18}}, {"model": "apis_vocabularies.placetype", "pk": 19, "fields": {"vocabsbaseclass_ptr": 19}}, {"model": "apis_vocabularies.placetype", "pk": 20, "fields": {"vocabsbaseclass_ptr": 20}}, {"model": "apis_vocabularies.placetype", "pk": 21, "fields": {"vocabsbaseclass_ptr": 21}}, {"model": "apis_vocabularies.placetype", "pk": 22, "fields": {"vocabsbaseclass_ptr": 22}}, {"model": "apis_vocabularies.placetype", "pk": 23, "fields": {"vocabsbaseclass_ptr": 23}}, {"model": "apis_vocabularies.placetype", "pk": 24, "fields": {"vocabsbaseclass_ptr": 24}}, {"model": "apis_vocabularies.placetype", "pk": 25, "fields": {"vocabsbaseclass_ptr": 25}}, {"model": "apis_vocabularies.placetype", "pk": 26, "fields": {"vocabsbaseclass_ptr": 26}}, {"model": "apis_vocabularies.placetype", "pk": 27, "fields": {"vocabsbaseclass_ptr": 27}}, {"model": "apis_vocabularies.placetype", "pk": 28, "fields": {"vocabsbaseclass_ptr": 28}}, {"model": "apis_vocabularies.placetype", "pk": 29, "fields": {"vocabsbaseclass_ptr": 29}}, {"model": "apis_vocabularies.placetype", "pk": 30, "fields": {"vocabsbaseclass_ptr": 30}}, {"model": "apis_vocabularies.placetype", "pk": 31, "fields": {"vocabsbaseclass_ptr": 31}}, {"model": "apis_vocabularies.placetype", "pk": 32, "fields": {"vocabsbaseclass_ptr": 32}}, {"model": "apis_vocabularies.placetype", "pk": 33, "fields": {"vocabsbaseclass_ptr": 33}}, {"model": "apis_vocabularies.placetype", "pk": 34, "fields": {"vocabsbaseclass_ptr": 34}}, {"model": "apis_vocabularies.placetype", "pk": 35, "fields": {"vocabsbaseclass_ptr": 35}}, {"model": "apis_vocabularies.placetype", "pk": 36, "fields": {"vocabsbaseclass_ptr": 36}}, {"model": "apis_vocabularies.placetype", "pk": 37, "fields": {"vocabsbaseclass_ptr": 37}}, {"model": "apis_vocabularies.placetype", "pk": 38, "fields": {"vocabsbaseclass_ptr": 38}}, {"model": "apis_vocabularies.placetype", "pk": 39, "fields": {"vocabsbaseclass_ptr": 39}}, {"model": "apis_vocabularies.placetype", "pk": 40, "fields": {"vocabsbaseclass_ptr": 40}}, {"model": "apis_vocabularies.placetype", "pk": 41, "fields": {"vocabsbaseclass_ptr": 41}}, {"model": "apis_vocabularies.placetype", "pk": 42, "fields": {"vocabsbaseclass_ptr": 42}}, {"model": "apis_vocabularies.placetype", "pk": 43, "fields": {"vocabsbaseclass_ptr": 43}}, {"model": "apis_vocabularies.placetype", "pk": 44, "fields": {"vocabsbaseclass_ptr": 44}}, {"model": "apis_vocabularies.placetype", "pk": 45, "fields": {"vocabsbaseclass_ptr": 45}}, {"model": "apis_vocabularies.placetype", "pk": 46, "fields": {"vocabsbaseclass_ptr": 46}}, {"model": "apis_vocabularies.placetype", "pk": 47, "fields": {"vocabsbaseclass_ptr": 47}}, {"model": "apis_vocabularies.placetype", "pk": 48, "fields": {"vocabsbaseclass_ptr": 48}}, {"model": "apis_vocabularies.placetype", "pk": 49, "fields": {"vocabsbaseclass_ptr": 49}}, {"model": "apis_vocabularies.placetype", "pk": 50, "fields": {"vocabsbaseclass_ptr": 50}}, {"model": "apis_vocabularies.placetype", "pk": 51, "fields": {"vocabsbaseclass_ptr": 51}}, {"model": "apis_vocabularies.placetype", "pk": 52, "fields": {"vocabsbaseclass_ptr": 52}}, {"model": "apis_vocabularies.placetype", "pk": 53, "fields": {"vocabsbaseclass_ptr": 53}}, {"model": "apis_vocabularies.placetype", "pk": 54, "fields": {"vocabsbaseclass_ptr": 54}}, {"model": "apis_vocabularies.placetype", "pk": 55, "fields": {"vocabsbaseclass_ptr": 55}}, {"model": "apis_vocabularies.placetype", "pk": 56, "fields": {"vocabsbaseclass_ptr": 56}}, {"model": "apis_vocabularies.placetype", "pk": 57, "fields": {"vocabsbaseclass_ptr": 57}}, {"model": "apis_vocabularies.placetype", "pk": 58, "fields": {"vocabsbaseclass_ptr": 58}}, {"model": "apis_vocabularies.placetype", "pk": 59, "fields": {"vocabsbaseclass_ptr": 59}}, {"model": "apis_vocabularies.placetype", "pk": 60, "fields": {"vocabsbaseclass_ptr": 60}}, {"model": "apis_vocabularies.placetype", "pk": 61, "fields": {"vocabsbaseclass_ptr": 61}}, {"model": "apis_vocabularies.placetype", "pk": 62, "fields": {"vocabsbaseclass_ptr": 62}}, {"model": "apis_vocabularies.placetype", "pk": 63, "fields": {"vocabsbaseclass_ptr": 63}}, {"model": "apis_vocabularies.placetype", "pk": 64, "fields": {"vocabsbaseclass_ptr": 64}}, {"model": "apis_vocabularies.placetype", "pk": 65, "fields": {"vocabsbaseclass_ptr": 65}}, {"model": "apis_vocabularies.placetype", "pk": 66, "fields": {"vocabsbaseclass_ptr": 66}}, {"model": "apis_vocabularies.placetype", "pk": 67, "fields": {"vocabsbaseclass_ptr": 67}}, {"model": "apis_vocabularies.placetype", "pk": 68, "fields": {"vocabsbaseclass_ptr": 68}}, {"model": "apis_vocabularies.placetype", "pk": 69, "fields": {"vocabsbaseclass_ptr": 69}}, {"model": "apis_vocabularies.placetype", "pk": 70, "fields": {"vocabsbaseclass_ptr": 70}}, {"model": "apis_vocabularies.placetype", "pk": 71, "fields": {"vocabsbaseclass_ptr": 71}}, {"model": "apis_vocabularies.placetype", "pk": 72, "fields": {"vocabsbaseclass_ptr": 72}}, {"model": "apis_vocabularies.placetype", "pk": 73, "fields": {"vocabsbaseclass_ptr": 73}}, {"model": "apis_vocabularies.placetype", "pk": 74, "fields": {"vocabsbaseclass_ptr": 74}}, {"model": "apis_vocabularies.placetype", "pk": 75, "fields": {"vocabsbaseclass_ptr": 75}}, {"model": "apis_vocabularies.placetype", "pk": 76, "fields": {"vocabsbaseclass_ptr": 76}}, {"model": "apis_vocabularies.placetype", "pk": 77, "fields": {"vocabsbaseclass_ptr": 77}}, {"model": "apis_vocabularies.placetype", "pk": 78, "fields": {"vocabsbaseclass_ptr": 78}}, {"model": "apis_vocabularies.placetype", "pk": 81, "fields": {"vocabsbaseclass_ptr": 81}}, {"model": "apis_vocabularies.placetype", "pk": 82, "fields": {"vocabsbaseclass_ptr": 82}}, {"model": "apis_vocabularies.placetype", "pk": 83, "fields": {"vocabsbaseclass_ptr": 83}}, {"model": "apis_vocabularies.placetype", "pk": 84, "fields": {"vocabsbaseclass_ptr": 84}}, {"model": "apis_vocabularies.placetype", "pk": 85, "fields": {"vocabsbaseclass_ptr": 85}}, {"model": "apis_vocabularies.placetype", "pk": 87, "fields": {"vocabsbaseclass_ptr": 87}}, {"model": "apis_vocabularies.placetype", "pk": 1103, "fields": {"vocabsbaseclass_ptr": 1103}}, {"model": "apis_vocabularies.placetype", "pk": 1105, "fields": {"vocabsbaseclass_ptr": 1105}}, {"model": "apis_vocabularies.placetype", "pk": 1107, "fields": {"vocabsbaseclass_ptr": 1107}}, {"model": "apis_vocabularies.placetype", "pk": 1108, "fields": {"vocabsbaseclass_ptr": 1108}}, {"model": "apis_vocabularies.placetype", "pk": 1123, "fields": {"vocabsbaseclass_ptr": 1123}}, {"model": "apis_vocabularies.placetype", "pk": 1124, "fields": {"vocabsbaseclass_ptr": 1124}}, {"model": "apis_vocabularies.placetype", "pk": 1128, "fields": {"vocabsbaseclass_ptr": 1128}}, {"model": "apis_vocabularies.placetype", "pk": 1134, "fields": {"vocabsbaseclass_ptr": 1134}}, {"model": "apis_vocabularies.placetype", "pk": 1135, "fields": {"vocabsbaseclass_ptr": 1135}}, {"model": "apis_vocabularies.placetype", "pk": 1137, "fields": {"vocabsbaseclass_ptr": 1137}}, {"model": "apis_vocabularies.placetype", "pk": 1152, "fields": {"vocabsbaseclass_ptr": 1152}}, {"model": "apis_vocabularies.placetype", "pk": 1195, "fields": {"vocabsbaseclass_ptr": 1195}}, {"model": "apis_vocabularies.placetype", "pk": 1234, "fields": {"vocabsbaseclass_ptr": 1234}}, {"model": "apis_vocabularies.placetype", "pk": 1249, "fields": {"vocabsbaseclass_ptr": 1249}}, {"model": "apis_vocabularies.placetype", "pk": 1257, "fields": {"vocabsbaseclass_ptr": 1257}}, {"model": "apis_vocabularies.placetype", "pk": 1278, "fields": {"vocabsbaseclass_ptr": 1278}}, {"model": "apis_vocabularies.placetype", "pk": 1284, "fields": {"vocabsbaseclass_ptr": 1284}}, {"model": "apis_vocabularies.placetype", "pk": 1285, "fields": {"vocabsbaseclass_ptr": 1285}}, {"model": "apis_vocabularies.placetype", "pk": 1297, "fields": {"vocabsbaseclass_ptr": 1297}}, {"model": "apis_vocabularies.placetype", "pk": 1298, "fields": {"vocabsbaseclass_ptr": 1298}}, {"model": "apis_vocabularies.placetype", "pk": 1399, "fields": {"vocabsbaseclass_ptr": 1399}}, {"model": "apis_vocabularies.placetype", "pk": 1410, "fields": {"vocabsbaseclass_ptr": 1410}}, {"model": "apis_vocabularies.placetype", "pk": 1411, "fields": {"vocabsbaseclass_ptr": 1411}}, {"model": "apis_vocabularies.placetype", "pk": 1412, "fields": {"vocabsbaseclass_ptr": 1412}}, {"model": "apis_vocabularies.placetype", "pk": 1415, "fields": {"vocabsbaseclass_ptr": 1415}}, {"model": "apis_vocabularies.placetype", "pk": 1418, "fields": {"vocabsbaseclass_ptr": 1418}}, {"model": "apis_vocabularies.placetype", "pk": 1419, "fields": {"vocabsbaseclass_ptr": 1419}}, {"model": "apis_vocabularies.placetype", "pk": 1434, "fields": {"vocabsbaseclass_ptr": 1434}}, {"model": "apis_vocabularies.placetype", "pk": 1480, "fields": {"vocabsbaseclass_ptr": 1480}}, {"model": "apis_vocabularies.placetype", "pk": 1481, "fields": {"vocabsbaseclass_ptr": 1481}}, {"model": "apis_vocabularies.placetype", "pk": 1483, "fields": {"vocabsbaseclass_ptr": 1483}}, {"model": "apis_vocabularies.placetype", "pk": 1484, "fields": {"vocabsbaseclass_ptr": 1484}}, {"model": "apis_vocabularies.placetype", "pk": 1485, "fields": {"vocabsbaseclass_ptr": 1485}}, {"model": "apis_vocabularies.placetype", "pk": 1513, "fields": {"vocabsbaseclass_ptr": 1513}}, {"model": "apis_vocabularies.placetype", "pk": 1519, "fields": {"vocabsbaseclass_ptr": 1519}}, {"model": "apis_vocabularies.placetype", "pk": 1532, "fields": {"vocabsbaseclass_ptr": 1532}}, {"model": "apis_vocabularies.placetype", "pk": 1533, "fields": {"vocabsbaseclass_ptr": 1533}}, {"model": "apis_vocabularies.placetype", "pk": 1555, "fields": {"vocabsbaseclass_ptr": 1555}}, {"model": "apis_vocabularies.placetype", "pk": 1572, "fields": {"vocabsbaseclass_ptr": 1572}}, {"model": "apis_vocabularies.placetype", "pk": 1573, "fields": {"vocabsbaseclass_ptr": 1573}}, {"model": "apis_vocabularies.placetype", "pk": 1574, "fields": {"vocabsbaseclass_ptr": 1574}}, {"model": "apis_vocabularies.placetype", "pk": 1575, "fields": {"vocabsbaseclass_ptr": 1575}}, {"model": "apis_vocabularies.placetype", "pk": 1576, "fields": {"vocabsbaseclass_ptr": 1576}}, {"model": "apis_vocabularies.placetype", "pk": 1577, "fields": {"vocabsbaseclass_ptr": 1577}}, {"model": "apis_vocabularies.placetype", "pk": 1579, "fields": {"vocabsbaseclass_ptr": 1579}}, {"model": "apis_vocabularies.placetype", "pk": 1580, "fields": {"vocabsbaseclass_ptr": 1580}}, {"model": "apis_vocabularies.placetype", "pk": 1581, "fields": {"vocabsbaseclass_ptr": 1581}}, {"model": "apis_vocabularies.placetype", "pk": 1585, "fields": {"vocabsbaseclass_ptr": 1585}}, {"model": "apis_vocabularies.placetype", "pk": 1586, "fields": {"vocabsbaseclass_ptr": 1586}}, {"model": "apis_vocabularies.placetype", "pk": 1593, "fields": {"vocabsbaseclass_ptr": 1593}}, {"model": "apis_vocabularies.placetype", "pk": 1606, "fields": {"vocabsbaseclass_ptr": 1606}}, {"model": "apis_vocabularies.placetype", "pk": 1607, "fields": {"vocabsbaseclass_ptr": 1607}}, {"model": "apis_vocabularies.placetype", "pk": 1608, "fields": {"vocabsbaseclass_ptr": 1608}}, {"model": "apis_vocabularies.placetype", "pk": 1618, "fields": {"vocabsbaseclass_ptr": 1618}}, {"model": "apis_vocabularies.placetype", "pk": 1620, "fields": {"vocabsbaseclass_ptr": 1620}}, {"model": "apis_vocabularies.placetype", "pk": 1621, "fields": {"vocabsbaseclass_ptr": 1621}}, {"model": "apis_vocabularies.placetype", "pk": 1623, "fields": {"vocabsbaseclass_ptr": 1623}}, {"model": "apis_vocabularies.placetype", "pk": 1626, "fields": {"vocabsbaseclass_ptr": 1626}}, {"model": "apis_vocabularies.placetype", "pk": 1636, "fields": {"vocabsbaseclass_ptr": 1636}}, {"model": "apis_vocabularies.placetype", "pk": 1644, "fields": {"vocabsbaseclass_ptr": 1644}}, {"model": "apis_vocabularies.placetype", "pk": 1645, "fields": {"vocabsbaseclass_ptr": 1645}}, {"model": "apis_vocabularies.placetype", "pk": 1646, "fields": {"vocabsbaseclass_ptr": 1646}}, {"model": "apis_vocabularies.placetype", "pk": 1648, "fields": {"vocabsbaseclass_ptr": 1648}}, {"model": "apis_vocabularies.placetype", "pk": 1668, "fields": {"vocabsbaseclass_ptr": 1668}}, {"model": "apis_vocabularies.placetype", "pk": 1719, "fields": {"vocabsbaseclass_ptr": 1719}}, {"model": "apis_vocabularies.placetype", "pk": 1720, "fields": {"vocabsbaseclass_ptr": 1720}}, {"model": "apis_vocabularies.placetype", "pk": 1721, "fields": {"vocabsbaseclass_ptr": 1721}}, {"model": "apis_vocabularies.placetype", "pk": 1722, "fields": {"vocabsbaseclass_ptr": 1722}}, {"model": "apis_vocabularies.placetype", "pk": 1724, "fields": {"vocabsbaseclass_ptr": 1724}}, {"model": "apis_vocabularies.placetype", "pk": 1725, "fields": {"vocabsbaseclass_ptr": 1725}}, {"model": "apis_vocabularies.placetype", "pk": 1727, "fields": {"vocabsbaseclass_ptr": 1727}}, {"model": "apis_vocabularies.placetype", "pk": 1728, "fields": {"vocabsbaseclass_ptr": 1728}}, {"model": "apis_vocabularies.placetype", "pk": 1729, "fields": {"vocabsbaseclass_ptr": 1729}}, {"model": "apis_vocabularies.placetype", "pk": 1778, "fields": {"vocabsbaseclass_ptr": 1778}}, {"model": "apis_vocabularies.placetype", "pk": 1881, "fields": {"vocabsbaseclass_ptr": 1881}}, {"model": "apis_vocabularies.placetype", "pk": 1899, "fields": {"vocabsbaseclass_ptr": 1899}}, {"model": "apis_vocabularies.placetype", "pk": 1928, "fields": {"vocabsbaseclass_ptr": 1928}}, {"model": "apis_vocabularies.placetype", "pk": 2001, "fields": {"vocabsbaseclass_ptr": 2001}}, {"model": "apis_vocabularies.placetype", "pk": 2011, "fields": {"vocabsbaseclass_ptr": 2011}}, {"model": "apis_vocabularies.placetype", "pk": 2012, "fields": {"vocabsbaseclass_ptr": 2012}}, {"model": "apis_vocabularies.placetype", "pk": 2013, "fields": {"vocabsbaseclass_ptr": 2013}}, {"model": "apis_vocabularies.placetype", "pk": 2014, "fields": {"vocabsbaseclass_ptr": 2014}}, {"model": "apis_vocabularies.placetype", "pk": 2015, "fields": {"vocabsbaseclass_ptr": 2015}}, {"model": "apis_vocabularies.placetype", "pk": 2016, "fields": {"vocabsbaseclass_ptr": 2016}}, {"model": "apis_vocabularies.placetype", "pk": 2017, "fields": {"vocabsbaseclass_ptr": 2017}}, {"model": "apis_vocabularies.placetype", "pk": 2018, "fields": {"vocabsbaseclass_ptr": 2018}}, {"model": "apis_vocabularies.placetype", "pk": 2019, "fields": {"vocabsbaseclass_ptr": 2019}}, {"model": "apis_vocabularies.placetype", "pk": 2020, "fields": {"vocabsbaseclass_ptr": 2020}}, {"model": "apis_vocabularies.placetype", "pk": 2021, "fields": {"vocabsbaseclass_ptr": 2021}}, {"model": "apis_vocabularies.placetype", "pk": 2022, "fields": {"vocabsbaseclass_ptr": 2022}}, {"model": "apis_vocabularies.placetype", "pk": 2023, "fields": {"vocabsbaseclass_ptr": 2023}}, {"model": "apis_vocabularies.placetype", "pk": 2024, "fields": {"vocabsbaseclass_ptr": 2024}}, {"model": "apis_vocabularies.placetype", "pk": 2025, "fields": {"vocabsbaseclass_ptr": 2025}}, {"model": "apis_vocabularies.placetype", "pk": 2026, "fields": {"vocabsbaseclass_ptr": 2026}}, {"model": "apis_vocabularies.placetype", "pk": 2027, "fields": {"vocabsbaseclass_ptr": 2027}}, {"model": "apis_vocabularies.placetype", "pk": 2028, "fields": {"vocabsbaseclass_ptr": 2028}}, {"model": "apis_vocabularies.placetype", "pk": 2029, "fields": {"vocabsbaseclass_ptr": 2029}}, {"model": "apis_vocabularies.placetype", "pk": 2030, "fields": {"vocabsbaseclass_ptr": 2030}}, {"model": "apis_vocabularies.placetype", "pk": 2031, "fields": {"vocabsbaseclass_ptr": 2031}}, {"model": "apis_vocabularies.placetype", "pk": 2032, "fields": {"vocabsbaseclass_ptr": 2032}}, {"model": "apis_vocabularies.placetype", "pk": 2033, "fields": {"vocabsbaseclass_ptr": 2033}}, {"model": "apis_vocabularies.placetype", "pk": 2034, "fields": {"vocabsbaseclass_ptr": 2034}}, {"model": "apis_vocabularies.placetype", "pk": 2035, "fields": {"vocabsbaseclass_ptr": 2035}}, {"model": "apis_vocabularies.placetype", "pk": 2036, "fields": {"vocabsbaseclass_ptr": 2036}}, {"model": "apis_vocabularies.placetype", "pk": 2037, "fields": {"vocabsbaseclass_ptr": 2037}}, {"model": "apis_vocabularies.placetype", "pk": 2038, "fields": {"vocabsbaseclass_ptr": 2038}}, {"model": "apis_vocabularies.placetype", "pk": 2039, "fields": {"vocabsbaseclass_ptr": 2039}}, {"model": "apis_vocabularies.placetype", "pk": 2040, "fields": {"vocabsbaseclass_ptr": 2040}}, {"model": "apis_vocabularies.placetype", "pk": 2041, "fields": {"vocabsbaseclass_ptr": 2041}}, {"model": "apis_vocabularies.placetype", "pk": 2042, "fields": {"vocabsbaseclass_ptr": 2042}}, {"model": "apis_vocabularies.placetype", "pk": 2043, "fields": {"vocabsbaseclass_ptr": 2043}}, {"model": "apis_vocabularies.placetype", "pk": 2044, "fields": {"vocabsbaseclass_ptr": 2044}}, {"model": "apis_vocabularies.placetype", "pk": 2045, "fields": {"vocabsbaseclass_ptr": 2045}}, {"model": "apis_vocabularies.placetype", "pk": 2046, "fields": {"vocabsbaseclass_ptr": 2046}}, {"model": "apis_vocabularies.placetype", "pk": 2047, "fields": {"vocabsbaseclass_ptr": 2047}}, {"model": "apis_vocabularies.placetype", "pk": 2048, "fields": {"vocabsbaseclass_ptr": 2048}}, {"model": "apis_vocabularies.placetype", "pk": 2049, "fields": {"vocabsbaseclass_ptr": 2049}}, {"model": "apis_vocabularies.placetype", "pk": 2050, "fields": {"vocabsbaseclass_ptr": 2050}}, {"model": "apis_vocabularies.placetype", "pk": 2051, "fields": {"vocabsbaseclass_ptr": 2051}}, {"model": "apis_vocabularies.placetype", "pk": 2052, "fields": {"vocabsbaseclass_ptr": 2052}}, {"model": "apis_vocabularies.placetype", "pk": 2053, "fields": {"vocabsbaseclass_ptr": 2053}}, {"model": "apis_vocabularies.placetype", "pk": 2054, "fields": {"vocabsbaseclass_ptr": 2054}}, {"model": "apis_vocabularies.placetype", "pk": 2085, "fields": {"vocabsbaseclass_ptr": 2085}}, {"model": "apis_vocabularies.placetype", "pk": 3119, "fields": {"vocabsbaseclass_ptr": 3119}}, {"model": "apis_vocabularies.placetype", "pk": 3408, "fields": {"vocabsbaseclass_ptr": 3408}}, {"model": "apis_vocabularies.placetype", "pk": 3409, "fields": {"vocabsbaseclass_ptr": 3409}}, {"model": "apis_vocabularies.placetype", "pk": 3430, "fields": {"vocabsbaseclass_ptr": 3430}}, {"model": "apis_vocabularies.placetype", "pk": 3431, "fields": {"vocabsbaseclass_ptr": 3431}}, {"model": "apis_vocabularies.placetype", "pk": 3432, "fields": {"vocabsbaseclass_ptr": 3432}}, {"model": "apis_vocabularies.placetype", "pk": 3433, "fields": {"vocabsbaseclass_ptr": 3433}}, {"model": "apis_vocabularies.placetype", "pk": 3438, "fields": {"vocabsbaseclass_ptr": 3438}}, {"model": "apis_vocabularies.placetype", "pk": 3442, "fields": {"vocabsbaseclass_ptr": 3442}}, {"model": "apis_vocabularies.placetype", "pk": 3447, "fields": {"vocabsbaseclass_ptr": 3447}}, {"model": "apis_vocabularies.placetype", "pk": 3451, "fields": {"vocabsbaseclass_ptr": 3451}}, {"model": "apis_vocabularies.placetype", "pk": 3452, "fields": {"vocabsbaseclass_ptr": 3452}}, {"model": "apis_vocabularies.institutiontype", "pk": 972, "fields": {"vocabsbaseclass_ptr": 972}}, {"model": "apis_vocabularies.institutiontype", "pk": 973, "fields": {"vocabsbaseclass_ptr": 973}}, {"model": "apis_vocabularies.institutiontype", "pk": 974, "fields": {"vocabsbaseclass_ptr": 974}}, {"model": "apis_vocabularies.institutiontype", "pk": 975, "fields": {"vocabsbaseclass_ptr": 975}}, {"model": "apis_vocabularies.institutiontype", "pk": 976, "fields": {"vocabsbaseclass_ptr": 976}}, {"model": "apis_vocabularies.institutiontype", "pk": 977, "fields": {"vocabsbaseclass_ptr": 977}}, {"model": "apis_vocabularies.institutiontype", "pk": 978, "fields": {"vocabsbaseclass_ptr": 978}}, {"model": "apis_vocabularies.institutiontype", "pk": 979, "fields": {"vocabsbaseclass_ptr": 979}}, {"model": "apis_vocabularies.institutiontype", "pk": 980, "fields": {"vocabsbaseclass_ptr": 980}}, {"model": "apis_vocabularies.institutiontype", "pk": 981, "fields": {"vocabsbaseclass_ptr": 981}}, {"model": "apis_vocabularies.institutiontype", "pk": 982, "fields": {"vocabsbaseclass_ptr": 982}}, {"model": "apis_vocabularies.institutiontype", "pk": 983, "fields": {"vocabsbaseclass_ptr": 983}}, {"model": "apis_vocabularies.institutiontype", "pk": 984, "fields": {"vocabsbaseclass_ptr": 984}}, {"model": "apis_vocabularies.institutiontype", "pk": 985, "fields": {"vocabsbaseclass_ptr": 985}}, {"model": "apis_vocabularies.institutiontype", "pk": 986, "fields": {"vocabsbaseclass_ptr": 986}}, {"model": "apis_vocabularies.institutiontype", "pk": 987, "fields": {"vocabsbaseclass_ptr": 987}}, {"model": "apis_vocabularies.institutiontype", "pk": 988, "fields": {"vocabsbaseclass_ptr": 988}}, {"model": "apis_vocabularies.institutiontype", "pk": 989, "fields": {"vocabsbaseclass_ptr": 989}}, {"model": "apis_vocabularies.institutiontype", "pk": 990, "fields": {"vocabsbaseclass_ptr": 990}}, {"model": "apis_vocabularies.institutiontype", "pk": 991, "fields": {"vocabsbaseclass_ptr": 991}}, {"model": "apis_vocabularies.institutiontype", "pk": 992, "fields": {"vocabsbaseclass_ptr": 992}}, {"model": "apis_vocabularies.institutiontype", "pk": 993, "fields": {"vocabsbaseclass_ptr": 993}}, {"model": "apis_vocabularies.institutiontype", "pk": 994, "fields": {"vocabsbaseclass_ptr": 994}}, {"model": "apis_vocabularies.institutiontype", "pk": 995, "fields": {"vocabsbaseclass_ptr": 995}}, {"model": "apis_vocabularies.institutiontype", "pk": 996, "fields": {"vocabsbaseclass_ptr": 996}}, {"model": "apis_vocabularies.institutiontype", "pk": 997, "fields": {"vocabsbaseclass_ptr": 997}}, {"model": "apis_vocabularies.institutiontype", "pk": 998, "fields": {"vocabsbaseclass_ptr": 998}}, {"model": "apis_vocabularies.institutiontype", "pk": 999, "fields": {"vocabsbaseclass_ptr": 999}}, {"model": "apis_vocabularies.institutiontype", "pk": 1000, "fields": {"vocabsbaseclass_ptr": 1000}}, {"model": "apis_vocabularies.institutiontype", "pk": 1001, "fields": {"vocabsbaseclass_ptr": 1001}}, {"model": "apis_vocabularies.institutiontype", "pk": 1002, "fields": {"vocabsbaseclass_ptr": 1002}}, {"model": "apis_vocabularies.institutiontype", "pk": 1003, "fields": {"vocabsbaseclass_ptr": 1003}}, {"model": "apis_vocabularies.institutiontype", "pk": 1004, "fields": {"vocabsbaseclass_ptr": 1004}}, {"model": "apis_vocabularies.institutiontype", "pk": 1005, "fields": {"vocabsbaseclass_ptr": 1005}}, {"model": "apis_vocabularies.institutiontype", "pk": 1006, "fields": {"vocabsbaseclass_ptr": 1006}}, {"model": "apis_vocabularies.institutiontype", "pk": 1007, "fields": {"vocabsbaseclass_ptr": 1007}}, {"model": "apis_vocabularies.institutiontype", "pk": 1008, "fields": {"vocabsbaseclass_ptr": 1008}}, {"model": "apis_vocabularies.institutiontype", "pk": 1009, "fields": {"vocabsbaseclass_ptr": 1009}}, {"model": "apis_vocabularies.institutiontype", "pk": 1010, "fields": {"vocabsbaseclass_ptr": 1010}}, {"model": "apis_vocabularies.institutiontype", "pk": 1011, "fields": {"vocabsbaseclass_ptr": 1011}}, {"model": "apis_vocabularies.institutiontype", "pk": 1012, "fields": {"vocabsbaseclass_ptr": 1012}}, {"model": "apis_vocabularies.institutiontype", "pk": 1013, "fields": {"vocabsbaseclass_ptr": 1013}}, {"model": "apis_vocabularies.institutiontype", "pk": 1014, "fields": {"vocabsbaseclass_ptr": 1014}}, {"model": "apis_vocabularies.institutiontype", "pk": 1015, "fields": {"vocabsbaseclass_ptr": 1015}}, {"model": "apis_vocabularies.institutiontype", "pk": 1016, "fields": {"vocabsbaseclass_ptr": 1016}}, {"model": "apis_vocabularies.institutiontype", "pk": 1017, "fields": {"vocabsbaseclass_ptr": 1017}}, {"model": "apis_vocabularies.institutiontype", "pk": 1018, "fields": {"vocabsbaseclass_ptr": 1018}}, {"model": "apis_vocabularies.institutiontype", "pk": 1019, "fields": {"vocabsbaseclass_ptr": 1019}}, {"model": "apis_vocabularies.institutiontype", "pk": 1020, "fields": {"vocabsbaseclass_ptr": 1020}}, {"model": "apis_vocabularies.institutiontype", "pk": 1021, "fields": {"vocabsbaseclass_ptr": 1021}}, {"model": "apis_vocabularies.institutiontype", "pk": 1022, "fields": {"vocabsbaseclass_ptr": 1022}}, {"model": "apis_vocabularies.institutiontype", "pk": 1023, "fields": {"vocabsbaseclass_ptr": 1023}}, {"model": "apis_vocabularies.institutiontype", "pk": 1024, "fields": {"vocabsbaseclass_ptr": 1024}}, {"model": "apis_vocabularies.institutiontype", "pk": 1025, "fields": {"vocabsbaseclass_ptr": 1025}}, {"model": "apis_vocabularies.institutiontype", "pk": 1026, "fields": {"vocabsbaseclass_ptr": 1026}}, {"model": "apis_vocabularies.institutiontype", "pk": 1027, "fields": {"vocabsbaseclass_ptr": 1027}}, {"model": "apis_vocabularies.institutiontype", "pk": 1028, "fields": {"vocabsbaseclass_ptr": 1028}}, {"model": "apis_vocabularies.institutiontype", "pk": 1029, "fields": {"vocabsbaseclass_ptr": 1029}}, {"model": "apis_vocabularies.institutiontype", "pk": 1030, "fields": {"vocabsbaseclass_ptr": 1030}}, {"model": "apis_vocabularies.institutiontype", "pk": 1031, "fields": {"vocabsbaseclass_ptr": 1031}}, {"model": "apis_vocabularies.institutiontype", "pk": 1032, "fields": {"vocabsbaseclass_ptr": 1032}}, {"model": "apis_vocabularies.institutiontype", "pk": 1033, "fields": {"vocabsbaseclass_ptr": 1033}}, {"model": "apis_vocabularies.institutiontype", "pk": 1034, "fields": {"vocabsbaseclass_ptr": 1034}}, {"model": "apis_vocabularies.institutiontype", "pk": 1035, "fields": {"vocabsbaseclass_ptr": 1035}}, {"model": "apis_vocabularies.institutiontype", "pk": 1036, "fields": {"vocabsbaseclass_ptr": 1036}}, {"model": "apis_vocabularies.institutiontype", "pk": 1037, "fields": {"vocabsbaseclass_ptr": 1037}}, {"model": "apis_vocabularies.institutiontype", "pk": 1038, "fields": {"vocabsbaseclass_ptr": 1038}}, {"model": "apis_vocabularies.institutiontype", "pk": 1039, "fields": {"vocabsbaseclass_ptr": 1039}}, {"model": "apis_vocabularies.institutiontype", "pk": 1040, "fields": {"vocabsbaseclass_ptr": 1040}}, {"model": "apis_vocabularies.institutiontype", "pk": 1041, "fields": {"vocabsbaseclass_ptr": 1041}}, {"model": "apis_vocabularies.institutiontype", "pk": 1042, "fields": {"vocabsbaseclass_ptr": 1042}}, {"model": "apis_vocabularies.institutiontype", "pk": 1043, "fields": {"vocabsbaseclass_ptr": 1043}}, {"model": "apis_vocabularies.institutiontype", "pk": 1044, "fields": {"vocabsbaseclass_ptr": 1044}}, {"model": "apis_vocabularies.institutiontype", "pk": 1045, "fields": {"vocabsbaseclass_ptr": 1045}}, {"model": "apis_vocabularies.institutiontype", "pk": 1046, "fields": {"vocabsbaseclass_ptr": 1046}}, {"model": "apis_vocabularies.institutiontype", "pk": 1047, "fields": {"vocabsbaseclass_ptr": 1047}}, {"model": "apis_vocabularies.institutiontype", "pk": 1127, "fields": {"vocabsbaseclass_ptr": 1127}}, {"model": "apis_vocabularies.institutiontype", "pk": 1240, "fields": {"vocabsbaseclass_ptr": 1240}}, {"model": "apis_vocabularies.institutiontype", "pk": 1241, "fields": {"vocabsbaseclass_ptr": 1241}}, {"model": "apis_vocabularies.institutiontype", "pk": 1242, "fields": {"vocabsbaseclass_ptr": 1242}}, {"model": "apis_vocabularies.institutiontype", "pk": 1330, "fields": {"vocabsbaseclass_ptr": 1330}}, {"model": "apis_vocabularies.institutiontype", "pk": 1332, "fields": {"vocabsbaseclass_ptr": 1332}}, {"model": "apis_vocabularies.institutiontype", "pk": 1345, "fields": {"vocabsbaseclass_ptr": 1345}}, {"model": "apis_vocabularies.institutiontype", "pk": 1353, "fields": {"vocabsbaseclass_ptr": 1353}}, {"model": "apis_vocabularies.institutiontype", "pk": 1354, "fields": {"vocabsbaseclass_ptr": 1354}}, {"model": "apis_vocabularies.institutiontype", "pk": 1359, "fields": {"vocabsbaseclass_ptr": 1359}}, {"model": "apis_vocabularies.institutiontype", "pk": 1362, "fields": {"vocabsbaseclass_ptr": 1362}}, {"model": "apis_vocabularies.institutiontype", "pk": 1364, "fields": {"vocabsbaseclass_ptr": 1364}}, {"model": "apis_vocabularies.institutiontype", "pk": 1366, "fields": {"vocabsbaseclass_ptr": 1366}}, {"model": "apis_vocabularies.institutiontype", "pk": 1372, "fields": {"vocabsbaseclass_ptr": 1372}}, {"model": "apis_vocabularies.institutiontype", "pk": 1375, "fields": {"vocabsbaseclass_ptr": 1375}}, {"model": "apis_vocabularies.institutiontype", "pk": 1382, "fields": {"vocabsbaseclass_ptr": 1382}}, {"model": "apis_vocabularies.institutiontype", "pk": 1414, "fields": {"vocabsbaseclass_ptr": 1414}}, {"model": "apis_vocabularies.institutiontype", "pk": 1417, "fields": {"vocabsbaseclass_ptr": 1417}}, {"model": "apis_vocabularies.institutiontype", "pk": 1420, "fields": {"vocabsbaseclass_ptr": 1420}}, {"model": "apis_vocabularies.institutiontype", "pk": 1475, "fields": {"vocabsbaseclass_ptr": 1475}}, {"model": "apis_vocabularies.institutiontype", "pk": 1479, "fields": {"vocabsbaseclass_ptr": 1479}}, {"model": "apis_vocabularies.institutiontype", "pk": 1482, "fields": {"vocabsbaseclass_ptr": 1482}}, {"model": "apis_vocabularies.institutiontype", "pk": 1486, "fields": {"vocabsbaseclass_ptr": 1486}}, {"model": "apis_vocabularies.institutiontype", "pk": 1495, "fields": {"vocabsbaseclass_ptr": 1495}}, {"model": "apis_vocabularies.institutiontype", "pk": 1504, "fields": {"vocabsbaseclass_ptr": 1504}}, {"model": "apis_vocabularies.institutiontype", "pk": 1537, "fields": {"vocabsbaseclass_ptr": 1537}}, {"model": "apis_vocabularies.institutiontype", "pk": 1538, "fields": {"vocabsbaseclass_ptr": 1538}}, {"model": "apis_vocabularies.institutiontype", "pk": 1542, "fields": {"vocabsbaseclass_ptr": 1542}}, {"model": "apis_vocabularies.institutiontype", "pk": 1543, "fields": {"vocabsbaseclass_ptr": 1543}}, {"model": "apis_vocabularies.institutiontype", "pk": 1604, "fields": {"vocabsbaseclass_ptr": 1604}}, {"model": "apis_vocabularies.institutiontype", "pk": 1605, "fields": {"vocabsbaseclass_ptr": 1605}}, {"model": "apis_vocabularies.institutiontype", "pk": 1610, "fields": {"vocabsbaseclass_ptr": 1610}}, {"model": "apis_vocabularies.institutiontype", "pk": 1611, "fields": {"vocabsbaseclass_ptr": 1611}}, {"model": "apis_vocabularies.institutiontype", "pk": 1612, "fields": {"vocabsbaseclass_ptr": 1612}}, {"model": "apis_vocabularies.institutiontype", "pk": 1624, "fields": {"vocabsbaseclass_ptr": 1624}}, {"model": "apis_vocabularies.institutiontype", "pk": 1625, "fields": {"vocabsbaseclass_ptr": 1625}}, {"model": "apis_vocabularies.institutiontype", "pk": 1627, "fields": {"vocabsbaseclass_ptr": 1627}}, {"model": "apis_vocabularies.institutiontype", "pk": 1629, "fields": {"vocabsbaseclass_ptr": 1629}}, {"model": "apis_vocabularies.institutiontype", "pk": 1630, "fields": {"vocabsbaseclass_ptr": 1630}}, {"model": "apis_vocabularies.institutiontype", "pk": 1631, "fields": {"vocabsbaseclass_ptr": 1631}}, {"model": "apis_vocabularies.institutiontype", "pk": 1634, "fields": {"vocabsbaseclass_ptr": 1634}}, {"model": "apis_vocabularies.institutiontype", "pk": 1635, "fields": {"vocabsbaseclass_ptr": 1635}}, {"model": "apis_vocabularies.institutiontype", "pk": 1642, "fields": {"vocabsbaseclass_ptr": 1642}}, {"model": "apis_vocabularies.institutiontype", "pk": 1664, "fields": {"vocabsbaseclass_ptr": 1664}}, {"model": "apis_vocabularies.institutiontype", "pk": 1669, "fields": {"vocabsbaseclass_ptr": 1669}}, {"model": "apis_vocabularies.institutiontype", "pk": 1670, "fields": {"vocabsbaseclass_ptr": 1670}}, {"model": "apis_vocabularies.institutiontype", "pk": 1671, "fields": {"vocabsbaseclass_ptr": 1671}}, {"model": "apis_vocabularies.institutiontype", "pk": 1690, "fields": {"vocabsbaseclass_ptr": 1690}}, {"model": "apis_vocabularies.institutiontype", "pk": 1700, "fields": {"vocabsbaseclass_ptr": 1700}}, {"model": "apis_vocabularies.institutiontype", "pk": 1714, "fields": {"vocabsbaseclass_ptr": 1714}}, {"model": "apis_vocabularies.institutiontype", "pk": 1723, "fields": {"vocabsbaseclass_ptr": 1723}}, {"model": "apis_vocabularies.institutiontype", "pk": 1726, "fields": {"vocabsbaseclass_ptr": 1726}}, {"model": "apis_vocabularies.institutiontype", "pk": 1744, "fields": {"vocabsbaseclass_ptr": 1744}}, {"model": "apis_vocabularies.institutiontype", "pk": 1746, "fields": {"vocabsbaseclass_ptr": 1746}}, {"model": "apis_vocabularies.institutiontype", "pk": 1766, "fields": {"vocabsbaseclass_ptr": 1766}}, {"model": "apis_vocabularies.institutiontype", "pk": 1777, "fields": {"vocabsbaseclass_ptr": 1777}}, {"model": "apis_vocabularies.institutiontype", "pk": 1941, "fields": {"vocabsbaseclass_ptr": 1941}}, {"model": "apis_vocabularies.institutiontype", "pk": 1954, "fields": {"vocabsbaseclass_ptr": 1954}}, {"model": "apis_vocabularies.institutiontype", "pk": 1996, "fields": {"vocabsbaseclass_ptr": 1996}}, {"model": "apis_vocabularies.institutiontype", "pk": 1998, "fields": {"vocabsbaseclass_ptr": 1998}}, {"model": "apis_vocabularies.institutiontype", "pk": 2058, "fields": {"vocabsbaseclass_ptr": 2058}}, {"model": "apis_vocabularies.institutiontype", "pk": 2063, "fields": {"vocabsbaseclass_ptr": 2063}}, {"model": "apis_vocabularies.institutiontype", "pk": 2072, "fields": {"vocabsbaseclass_ptr": 2072}}, {"model": "apis_vocabularies.institutiontype", "pk": 3118, "fields": {"vocabsbaseclass_ptr": 3118}}, {"model": "apis_vocabularies.institutiontype", "pk": 3404, "fields": {"vocabsbaseclass_ptr": 3404}}, {"model": "apis_vocabularies.institutiontype", "pk": 3405, "fields": {"vocabsbaseclass_ptr": 3405}}, {"model": "apis_vocabularies.institutiontype", "pk": 3414, "fields": {"vocabsbaseclass_ptr": 3414}}, {"model": "apis_vocabularies.institutiontype", "pk": 3443, "fields": {"vocabsbaseclass_ptr": 3443}}, {"model": "apis_vocabularies.institutiontype", "pk": 3458, "fields": {"vocabsbaseclass_ptr": 3458}}, {"model": "apis_vocabularies.eventtype", "pk": 1200, "fields": {"vocabsbaseclass_ptr": 1200}}, {"model": "apis_vocabularies.eventtype", "pk": 1203, "fields": {"vocabsbaseclass_ptr": 1203}}, {"model": "apis_vocabularies.eventtype", "pk": 1205, "fields": {"vocabsbaseclass_ptr": 1205}}, {"model": "apis_vocabularies.eventtype", "pk": 1253, "fields": {"vocabsbaseclass_ptr": 1253}}, {"model": "apis_vocabularies.eventtype", "pk": 1254, "fields": {"vocabsbaseclass_ptr": 1254}}, {"model": "apis_vocabularies.eventtype", "pk": 1367, "fields": {"vocabsbaseclass_ptr": 1367}}, {"model": "apis_vocabularies.eventtype", "pk": 1395, "fields": {"vocabsbaseclass_ptr": 1395}}, {"model": "apis_vocabularies.eventtype", "pk": 1396, "fields": {"vocabsbaseclass_ptr": 1396}}, {"model": "apis_vocabularies.eventtype", "pk": 1403, "fields": {"vocabsbaseclass_ptr": 1403}}, {"model": "apis_vocabularies.eventtype", "pk": 1413, "fields": {"vocabsbaseclass_ptr": 1413}}, {"model": "apis_vocabularies.eventtype", "pk": 1487, "fields": {"vocabsbaseclass_ptr": 1487}}, {"model": "apis_vocabularies.eventtype", "pk": 1529, "fields": {"vocabsbaseclass_ptr": 1529}}, {"model": "apis_vocabularies.eventtype", "pk": 1561, "fields": {"vocabsbaseclass_ptr": 1561}}, {"model": "apis_vocabularies.eventtype", "pk": 1564, "fields": {"vocabsbaseclass_ptr": 1564}}, {"model": "apis_vocabularies.eventtype", "pk": 1695, "fields": {"vocabsbaseclass_ptr": 1695}}, {"model": "apis_vocabularies.eventtype", "pk": 1986, "fields": {"vocabsbaseclass_ptr": 1986}}, {"model": "apis_vocabularies.eventtype", "pk": 1987, "fields": {"vocabsbaseclass_ptr": 1987}}, {"model": "apis_vocabularies.eventtype", "pk": 1988, "fields": {"vocabsbaseclass_ptr": 1988}}, {"model": "apis_vocabularies.eventtype", "pk": 3413, "fields": {"vocabsbaseclass_ptr": 3413}}, {"model": "apis_vocabularies.eventtype", "pk": 3435, "fields": {"vocabsbaseclass_ptr": 3435}}, {"model": "apis_vocabularies.labeltype", "pk": 11, "fields": {"vocabsbaseclass_ptr": 11}}, {"model": "apis_vocabularies.labeltype", "pk": 92, "fields": {"vocabsbaseclass_ptr": 92}}, {"model": "apis_vocabularies.labeltype", "pk": 93, "fields": {"vocabsbaseclass_ptr": 93}}, {"model": "apis_vocabularies.labeltype", "pk": 96, "fields": {"vocabsbaseclass_ptr": 96}}, {"model": "apis_vocabularies.labeltype", "pk": 124, "fields": {"vocabsbaseclass_ptr": 124}}, {"model": "apis_vocabularies.labeltype", "pk": 149, "fields": {"vocabsbaseclass_ptr": 149}}, {"model": "apis_vocabularies.labeltype", "pk": 172, "fields": {"vocabsbaseclass_ptr": 172}}, {"model": "apis_vocabularies.labeltype", "pk": 337, "fields": {"vocabsbaseclass_ptr": 337}}, {"model": "apis_vocabularies.labeltype", "pk": 502, "fields": {"vocabsbaseclass_ptr": 502}}, {"model": "apis_vocabularies.labeltype", "pk": 1101, "fields": {"vocabsbaseclass_ptr": 1101}}, {"model": "apis_vocabularies.labeltype", "pk": 1104, "fields": {"vocabsbaseclass_ptr": 1104}}, {"model": "apis_vocabularies.labeltype", "pk": 1126, "fields": {"vocabsbaseclass_ptr": 1126}}, {"model": "apis_vocabularies.labeltype", "pk": 1146, "fields": {"vocabsbaseclass_ptr": 1146}}, {"model": "apis_vocabularies.labeltype", "pk": 1198, "fields": {"vocabsbaseclass_ptr": 1198}}, {"model": "apis_vocabularies.labeltype", "pk": 1214, "fields": {"vocabsbaseclass_ptr": 1214}}, {"model": "apis_vocabularies.labeltype", "pk": 1235, "fields": {"vocabsbaseclass_ptr": 1235}}, {"model": "apis_vocabularies.labeltype", "pk": 1243, "fields": {"vocabsbaseclass_ptr": 1243}}, {"model": "apis_vocabularies.labeltype", "pk": 1374, "fields": {"vocabsbaseclass_ptr": 1374}}, {"model": "apis_vocabularies.labeltype", "pk": 1378, "fields": {"vocabsbaseclass_ptr": 1378}}, {"model": "apis_vocabularies.labeltype", "pk": 3108, "fields": {"vocabsbaseclass_ptr": 3108}}, {"model": "apis_vocabularies.labeltype", "pk": 3109, "fields": {"vocabsbaseclass_ptr": 3109}}, {"model": "apis_vocabularies.labeltype", "pk": 3110, "fields": {"vocabsbaseclass_ptr": 3110}}, {"model": "apis_vocabularies.labeltype", "pk": 3111, "fields": {"vocabsbaseclass_ptr": 3111}}, {"model": "apis_vocabularies.labeltype", "pk": 3112, "fields": {"vocabsbaseclass_ptr": 3112}}, {"model": "apis_vocabularies.labeltype", "pk": 3392, "fields": {"vocabsbaseclass_ptr": 3392}}, {"model": "apis_vocabularies.labeltype", "pk": 3393, "fields": {"vocabsbaseclass_ptr": 3393}}, {"model": "apis_vocabularies.labeltype", "pk": 3394, "fields": {"vocabsbaseclass_ptr": 3394}}, {"model": "apis_vocabularies.collectiontype", "pk": 1239, "fields": {"vocabsbaseclass_ptr": 1239}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1109, "fields": {"relationbaseclass_ptr": 1109}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1110, "fields": {"relationbaseclass_ptr": 1110}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1111, "fields": {"relationbaseclass_ptr": 1111}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1112, "fields": {"relationbaseclass_ptr": 1112}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1113, "fields": {"relationbaseclass_ptr": 1113}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1114, "fields": {"relationbaseclass_ptr": 1114}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1115, "fields": {"relationbaseclass_ptr": 1115}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1116, "fields": {"relationbaseclass_ptr": 1116}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1117, "fields": {"relationbaseclass_ptr": 1117}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1118, "fields": {"relationbaseclass_ptr": 1118}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1120, "fields": {"relationbaseclass_ptr": 1120}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1121, "fields": {"relationbaseclass_ptr": 1121}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1122, "fields": {"relationbaseclass_ptr": 1122}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1169, "fields": {"relationbaseclass_ptr": 1169}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1170, "fields": {"relationbaseclass_ptr": 1170}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1171, "fields": {"relationbaseclass_ptr": 1171}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1173, "fields": {"relationbaseclass_ptr": 1173}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1174, "fields": {"relationbaseclass_ptr": 1174}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1175, "fields": {"relationbaseclass_ptr": 1175}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1176, "fields": {"relationbaseclass_ptr": 1176}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1177, "fields": {"relationbaseclass_ptr": 1177}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1178, "fields": {"relationbaseclass_ptr": 1178}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1186, "fields": {"relationbaseclass_ptr": 1186}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1247, "fields": {"relationbaseclass_ptr": 1247}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1309, "fields": {"relationbaseclass_ptr": 1309}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1310, "fields": {"relationbaseclass_ptr": 1310}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1405, "fields": {"relationbaseclass_ptr": 1405}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1424, "fields": {"relationbaseclass_ptr": 1424}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1523, "fields": {"relationbaseclass_ptr": 1523}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1530, "fields": {"relationbaseclass_ptr": 1530}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 3402, "fields": {"relationbaseclass_ptr": 3402}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 3403, "fields": {"relationbaseclass_ptr": 3403}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 3429, "fields": {"relationbaseclass_ptr": 3429}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 3459, "fields": {"relationbaseclass_ptr": 3459}}, {"model": "apis_vocabularies.personplacerelation", "pk": 88, "fields": {"relationbaseclass_ptr": 88}}, {"model": "apis_vocabularies.personplacerelation", "pk": 89, "fields": {"relationbaseclass_ptr": 89}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1140, "fields": {"relationbaseclass_ptr": 1140}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1147, "fields": {"relationbaseclass_ptr": 1147}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1148, "fields": {"relationbaseclass_ptr": 1148}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1150, "fields": {"relationbaseclass_ptr": 1150}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1165, "fields": {"relationbaseclass_ptr": 1165}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1179, "fields": {"relationbaseclass_ptr": 1179}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1181, "fields": {"relationbaseclass_ptr": 1181}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1187, "fields": {"relationbaseclass_ptr": 1187}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1294, "fields": {"relationbaseclass_ptr": 1294}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1398, "fields": {"relationbaseclass_ptr": 1398}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1510, "fields": {"relationbaseclass_ptr": 1510}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1657, "fields": {"relationbaseclass_ptr": 1657}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1900, "fields": {"relationbaseclass_ptr": 1900}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1901, "fields": {"relationbaseclass_ptr": 1901}}, {"model": "apis_vocabularies.personplacerelation", "pk": 2253, "fields": {"relationbaseclass_ptr": 2253}}, {"model": "apis_vocabularies.personplacerelation", "pk": 3417, "fields": {"relationbaseclass_ptr": 3417}}, {"model": "apis_vocabularies.personinstitutionrelation", "pk": 1153, "fields": {"relationbaseclass_ptr": 1153}}, {"model": "apis_vocabularies.personinstitutionrelation", "pk": 1182, "fields": {"relationbaseclass_ptr": 1182}}, {"model": "apis_vocabularies.personinstitutionrelation", "pk": 1409, "fields": {"relationbaseclass_ptr": 1409}}, {"model": "apis_vocabularies.personinstitutionrelation", "pk": 1534, "fields": {"relationbaseclass_ptr": 1534}}, {"model": "apis_vocabularies.personinstitutionrelation", "pk": 3415, "fields": {"relationbaseclass_ptr": 3415}}, {"model": "apis_vocabularies.personeventrelation", "pk": 1256, "fields": {"relationbaseclass_ptr": 1256}}, {"model": "apis_vocabularies.personeventrelation", "pk": 1370, "fields": {"relationbaseclass_ptr": 1370}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1048, "fields": {"relationbaseclass_ptr": 1048}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1049, "fields": {"relationbaseclass_ptr": 1049}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1050, "fields": {"relationbaseclass_ptr": 1050}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1051, "fields": {"relationbaseclass_ptr": 1051}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1052, "fields": {"relationbaseclass_ptr": 1052}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1053, "fields": {"relationbaseclass_ptr": 1053}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1144, "fields": {"relationbaseclass_ptr": 1144}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1217, "fields": {"relationbaseclass_ptr": 1217}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1224, "fields": {"relationbaseclass_ptr": 1224}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1335, "fields": {"relationbaseclass_ptr": 1335}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1553, "fields": {"relationbaseclass_ptr": 1553}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1587, "fields": {"relationbaseclass_ptr": 1587}}, {"model": "apis_vocabularies.personworkrelation", "pk": 3106, "fields": {"relationbaseclass_ptr": 3106}}, {"model": "apis_vocabularies.personworkrelation", "pk": 3107, "fields": {"relationbaseclass_ptr": 3107}}, {"model": "apis_vocabularies.institutioneventrelation", "pk": 1351, "fields": {"relationbaseclass_ptr": 1351}}, {"model": "apis_vocabularies.institutionplacerelation", "pk": 970, "fields": {"relationbaseclass_ptr": 970}}, {"model": "apis_vocabularies.institutionplacerelation", "pk": 1141, "fields": {"relationbaseclass_ptr": 1141}}, {"model": "apis_vocabularies.institutionplacerelation", "pk": 1160, "fields": {"relationbaseclass_ptr": 1160}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1158, "fields": {"relationbaseclass_ptr": 1158}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1159, "fields": {"relationbaseclass_ptr": 1159}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1192, "fields": {"relationbaseclass_ptr": 1192}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1237, "fields": {"relationbaseclass_ptr": 1237}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1244, "fields": {"relationbaseclass_ptr": 1244}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1516, "fields": {"relationbaseclass_ptr": 1516}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1517, "fields": {"relationbaseclass_ptr": 1517}}, {"model": "apis_vocabularies.institutionworkrelation", "pk": 1138, "fields": {"relationbaseclass_ptr": 1138}}, {"model": "apis_vocabularies.institutionworkrelation", "pk": 1139, "fields": {"relationbaseclass_ptr": 1139}}, {"model": "apis_vocabularies.institutionworkrelation", "pk": 1143, "fields": {"relationbaseclass_ptr": 1143}}, {"model": "apis_vocabularies.placeplacerelation", "pk": 971, "fields": {"relationbaseclass_ptr": 971}}, {"model": "apis_vocabularies.placeplacerelation", "pk": 1106, "fields": {"relationbaseclass_ptr": 1106}}, {"model": "apis_vocabularies.placeplacerelation", "pk": 1136, "fields": {"relationbaseclass_ptr": 1136}}, {"model": "apis_vocabularies.placeeventrelation", "pk": 1202, "fields": {"relationbaseclass_ptr": 1202}}, {"model": "apis_vocabularies.placeeventrelation", "pk": 1369, "fields": {"relationbaseclass_ptr": 1369}}, {"model": "apis_vocabularies.placeworkrelation", "pk": 1193, "fields": {"relationbaseclass_ptr": 1193}}, {"model": "apis_vocabularies.placeworkrelation", "pk": 1194, "fields": {"relationbaseclass_ptr": 1194}}, {"model": "apis_vocabularies.placeworkrelation", "pk": 1338, "fields": {"relationbaseclass_ptr": 1338}}, {"model": "apis_vocabularies.placeworkrelation", "pk": 1549, "fields": {"relationbaseclass_ptr": 1549}}, {"model": "apis_vocabularies.eventeventrelation", "pk": 3439, "fields": {"relationbaseclass_ptr": 3439}}, {"model": "apis_vocabularies.eventeventrelation", "pk": 3440, "fields": {"relationbaseclass_ptr": 3440}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1201, "fields": {"relationbaseclass_ptr": 1201}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1204, "fields": {"relationbaseclass_ptr": 1204}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1206, "fields": {"relationbaseclass_ptr": 1206}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1252, "fields": {"relationbaseclass_ptr": 1252}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1371, "fields": {"relationbaseclass_ptr": 1371}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1527, "fields": {"relationbaseclass_ptr": 1527}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1528, "fields": {"relationbaseclass_ptr": 1528}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1132, "fields": {"relationbaseclass_ptr": 1132}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1133, "fields": {"relationbaseclass_ptr": 1133}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1161, "fields": {"relationbaseclass_ptr": 1161}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1162, "fields": {"relationbaseclass_ptr": 1162}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1184, "fields": {"relationbaseclass_ptr": 1184}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1185, "fields": {"relationbaseclass_ptr": 1185}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1189, "fields": {"relationbaseclass_ptr": 1189}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1190, "fields": {"relationbaseclass_ptr": 1190}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1225, "fields": {"relationbaseclass_ptr": 1225}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1233, "fields": {"relationbaseclass_ptr": 1233}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1363, "fields": {"relationbaseclass_ptr": 1363}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1385, "fields": {"relationbaseclass_ptr": 1385}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1884, "fields": {"relationbaseclass_ptr": 1884}}, {"model": "apis_vocabularies.workworkrelation", "pk": 3446, "fields": {"relationbaseclass_ptr": 3446}}, {"model": "apis_labels.label", "pk": 1, "fields": {"label": "Deutsche Zeitung, Jg. 23, Nr. 7883, 6. 12. 1893, Morgen-Ausgabe, S. 1–2", "isocode_639_3": "deu", "label_type": 1235, "start_date": null, "start_start_date": null, "start_end_date": null, "end_date": null, "end_start_date": null, "end_end_date": null, "start_date_written": null, "end_date_written": null, "temp_entity": 7}}] \ No newline at end of file diff --git a/apis_core/apis_entities/fixtures/db_v2.json b/apis_core/apis_entities/fixtures/db_v2.json deleted file mode 100644 index cbd342a..0000000 --- a/apis_core/apis_entities/fixtures/db_v2.json +++ /dev/null @@ -1 +0,0 @@ -[{"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 deleted file mode 100644 index 4b38876..0000000 --- a/apis_core/apis_entities/fixtures/db_v5.json +++ /dev/null @@ -1,48195 +0,0 @@ -[ - { - "fields": { - "app_label": "admin", - "model": "logentry" - }, - "model": "contenttypes.contenttype", - "pk": 1 - }, - { - "fields": { - "app_label": "auth", - "model": "permission" - }, - "model": "contenttypes.contenttype", - "pk": 2 - }, - { - "fields": { - "app_label": "auth", - "model": "group" - }, - "model": "contenttypes.contenttype", - "pk": 3 - }, - { - "fields": { - "app_label": "auth", - "model": "user" - }, - "model": "contenttypes.contenttype", - "pk": 4 - }, - { - "fields": { - "app_label": "contenttypes", - "model": "contenttype" - }, - "model": "contenttypes.contenttype", - "pk": 5 - }, - { - "fields": { - "app_label": "sessions", - "model": "session" - }, - "model": "contenttypes.contenttype", - "pk": 6 - }, - { - "fields": { - "app_label": "labels", - "model": "label" - }, - "model": "contenttypes.contenttype", - "pk": 7 - }, - { - "fields": { - "app_label": "entities", - "model": "person" - }, - "model": "contenttypes.contenttype", - "pk": 8 - }, - { - "fields": { - "app_label": "entities", - "model": "place" - }, - "model": "contenttypes.contenttype", - "pk": 9 - }, - { - "fields": { - "app_label": "entities", - "model": "institution" - }, - "model": "contenttypes.contenttype", - "pk": 10 - }, - { - "fields": { - "app_label": "entities", - "model": "event" - }, - "model": "contenttypes.contenttype", - "pk": 11 - }, - { - "fields": { - "app_label": "entities", - "model": "work" - }, - "model": "contenttypes.contenttype", - "pk": 12 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "vocabsbaseclass" - }, - "model": "contenttypes.contenttype", - "pk": 13 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "relationbaseclass" - }, - "model": "contenttypes.contenttype", - "pk": 14 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "vocabsuri" - }, - "model": "contenttypes.contenttype", - "pk": 15 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "worktype" - }, - "model": "contenttypes.contenttype", - "pk": 16 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "title" - }, - "model": "contenttypes.contenttype", - "pk": 17 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "professiontype" - }, - "model": "contenttypes.contenttype", - "pk": 18 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "placetype" - }, - "model": "contenttypes.contenttype", - "pk": 19 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "institutiontype" - }, - "model": "contenttypes.contenttype", - "pk": 20 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "eventtype" - }, - "model": "contenttypes.contenttype", - "pk": 21 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "labeltype" - }, - "model": "contenttypes.contenttype", - "pk": 22 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "collectiontype" - }, - "model": "contenttypes.contenttype", - "pk": 23 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "texttype" - }, - "model": "contenttypes.contenttype", - "pk": 24 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "personpersonrelation" - }, - "model": "contenttypes.contenttype", - "pk": 25 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "personplacerelation" - }, - "model": "contenttypes.contenttype", - "pk": 26 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "personinstitutionrelation" - }, - "model": "contenttypes.contenttype", - "pk": 27 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "personeventrelation" - }, - "model": "contenttypes.contenttype", - "pk": 28 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "personworkrelation" - }, - "model": "contenttypes.contenttype", - "pk": 29 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "institutioneventrelation" - }, - "model": "contenttypes.contenttype", - "pk": 30 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "institutionplacerelation" - }, - "model": "contenttypes.contenttype", - "pk": 31 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "institutioninstitutionrelation" - }, - "model": "contenttypes.contenttype", - "pk": 32 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "placeplacerelation" - }, - "model": "contenttypes.contenttype", - "pk": 33 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "placeeventrelation" - }, - "model": "contenttypes.contenttype", - "pk": 34 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "placeworkrelation" - }, - "model": "contenttypes.contenttype", - "pk": 35 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "eventeventrelation" - }, - "model": "contenttypes.contenttype", - "pk": 36 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "eventworkrelation" - }, - "model": "contenttypes.contenttype", - "pk": 37 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "workworkrelation" - }, - "model": "contenttypes.contenttype", - "pk": 38 - }, - { - "fields": { - "app_label": "relations", - "model": "personperson" - }, - "model": "contenttypes.contenttype", - "pk": 39 - }, - { - "fields": { - "app_label": "relations", - "model": "personplace" - }, - "model": "contenttypes.contenttype", - "pk": 40 - }, - { - "fields": { - "app_label": "relations", - "model": "personinstitution" - }, - "model": "contenttypes.contenttype", - "pk": 41 - }, - { - "fields": { - "app_label": "relations", - "model": "personevent" - }, - "model": "contenttypes.contenttype", - "pk": 42 - }, - { - "fields": { - "app_label": "relations", - "model": "personwork" - }, - "model": "contenttypes.contenttype", - "pk": 43 - }, - { - "fields": { - "app_label": "relations", - "model": "institutioninstitution" - }, - "model": "contenttypes.contenttype", - "pk": 44 - }, - { - "fields": { - "app_label": "relations", - "model": "institutionplace" - }, - "model": "contenttypes.contenttype", - "pk": 45 - }, - { - "fields": { - "app_label": "relations", - "model": "institutionevent" - }, - "model": "contenttypes.contenttype", - "pk": 46 - }, - { - "fields": { - "app_label": "relations", - "model": "institutionwork" - }, - "model": "contenttypes.contenttype", - "pk": 47 - }, - { - "fields": { - "app_label": "relations", - "model": "placeplace" - }, - "model": "contenttypes.contenttype", - "pk": 48 - }, - { - "fields": { - "app_label": "relations", - "model": "placeevent" - }, - "model": "contenttypes.contenttype", - "pk": 49 - }, - { - "fields": { - "app_label": "relations", - "model": "placework" - }, - "model": "contenttypes.contenttype", - "pk": 50 - }, - { - "fields": { - "app_label": "relations", - "model": "eventevent" - }, - "model": "contenttypes.contenttype", - "pk": 51 - }, - { - "fields": { - "app_label": "relations", - "model": "eventwork" - }, - "model": "contenttypes.contenttype", - "pk": 52 - }, - { - "fields": { - "app_label": "relations", - "model": "workwork" - }, - "model": "contenttypes.contenttype", - "pk": 53 - }, - { - "fields": { - "app_label": "metainfo", - "model": "tempentityclass" - }, - "model": "contenttypes.contenttype", - "pk": 54 - }, - { - "fields": { - "app_label": "metainfo", - "model": "source" - }, - "model": "contenttypes.contenttype", - "pk": 55 - }, - { - "fields": { - "app_label": "metainfo", - "model": "collection" - }, - "model": "contenttypes.contenttype", - "pk": 56 - }, - { - "fields": { - "app_label": "metainfo", - "model": "text" - }, - "model": "contenttypes.contenttype", - "pk": 57 - }, - { - "fields": { - "app_label": "metainfo", - "model": "uri" - }, - "model": "contenttypes.contenttype", - "pk": 58 - }, - { - "fields": { - "app_label": "highlighter", - "model": "project" - }, - "model": "contenttypes.contenttype", - "pk": 61 - }, - { - "fields": { - "app_label": "highlighter", - "model": "annotation" - }, - "model": "contenttypes.contenttype", - "pk": 63 - }, - { - "fields": { - "app_label": "highlighter", - "model": "vocabularyapi" - }, - "model": "contenttypes.contenttype", - "pk": 64 - }, - { - "fields": { - "app_label": "highlighter", - "model": "menuentry" - }, - "model": "contenttypes.contenttype", - "pk": 65 - }, - { - "fields": { - "app_label": "reversion", - "model": "revision" - }, - "model": "contenttypes.contenttype", - "pk": 66 - }, - { - "fields": { - "app_label": "reversion", - "model": "version" - }, - "model": "contenttypes.contenttype", - "pk": 67 - }, - { - "fields": { - "app_label": "metainfo", - "model": "uricandidate" - }, - "model": "contenttypes.contenttype", - "pk": 68 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "vocabnames" - }, - "model": "contenttypes.contenttype", - "pk": 69 - }, - { - "fields": { - "app_label": "highlighter", - "model": "texthigh" - }, - "model": "contenttypes.contenttype", - "pk": 70 - }, - { - "fields": { - "app_label": "highlighter", - "model": "annotationproject" - }, - "model": "contenttypes.contenttype", - "pk": 71 - }, - { - "fields": { - "app_label": "authtoken", - "model": "token" - }, - "model": "contenttypes.contenttype", - "pk": 72 - }, - { - "fields": { - "app_label": "guardian", - "model": "userobjectpermission" - }, - "model": "contenttypes.contenttype", - "pk": 73 - }, - { - "fields": { - "app_label": "guardian", - "model": "groupobjectpermission" - }, - "model": "contenttypes.contenttype", - "pk": 74 - }, - { - "fields": { - "app_label": "vocabularies", - "model": "institutionworkrelation" - }, - "model": "contenttypes.contenttype", - "pk": 75 - }, - { - "fields": { - "expire_date": "2016-05-12T09:16:06Z", - "session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "0iibvcg05d74v4ms54nlqtfwu3127zz2" - }, - { - "fields": { - "expire_date": "2016-04-26T10:05:04Z", - "session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "0mk3drnceigmyvpcvkr7ffmnn0pcxu3m" - }, - { - "fields": { - "expire_date": "2016-10-28T09:36:22Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "14h0i8mtbmsmb641vuf1mmg9mu3utkej" - }, - { - "fields": { - "expire_date": "2016-12-23T14:35:05Z", - "session_data": "ZGQzNTAwMWNmMmU3NDAxODhiNDllOGJlNTU3MWI2ZjJjMjIyN2ZkNzp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQifQ==" - }, - "model": "sessions.session", - "pk": "17188fqkhwwemz91phd0gdgifcpuw531" - }, - { - "fields": { - "expire_date": "2016-11-10T13:45:57Z", - "session_data": "N2QxOGQ2ZmRiMDg4YmNjYmFlYWU5MmU2OTMxN2NmNWVlZmRmYzU4Mzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyIsIl9hdXRoX3VzZXJfaWQiOiIxOSJ9" - }, - "model": "sessions.session", - "pk": "1e3937jsbpbzq86eazwokbyacjpilyvn" - }, - { - "fields": { - "expire_date": "2016-04-01T10:09:36Z", - "session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "1iccsxivof263x10kvzx24cpvfuisbsi" - }, - { - "fields": { - "expire_date": "2016-04-28T08:25:02Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "1lwdhe9xb39a33pc343apvu0lk8ary2s" - }, - { - "fields": { - "expire_date": "2016-08-03T06:28:05Z", - "session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "1qhlsjo05snaz4entoxovgtj2ncwecge" - }, - { - "fields": { - "expire_date": "2016-04-29T09:34:16Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "1sr2zc875imbhxlfzc7yec9ifk7fy1od" - }, - { - "fields": { - "expire_date": "2016-05-17T10:44:53Z", - "session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "1x8hqbj4s4bdwfzqnx28g9tthqhqq7un" - }, - { - "fields": { - "expire_date": "2016-04-18T13:49:39Z", - "session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "1xfmy4hsmq6pq4nv0vdvasuhaq8noome" - }, - { - "fields": { - "expire_date": "2016-03-29T08:08:50Z", - "session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "22m8og17mrvc3n0fk13i2vkobtfkzkq3" - }, - { - "fields": { - "expire_date": "2016-08-10T08:17:25Z", - "session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "23gvebwzexka8rn0jmlsufrinjplkz9v" - }, - { - "fields": { - "expire_date": "2016-07-26T14:15:06Z", - "session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "2cu9y7dl9lqoxwvx1oy4kpn1y4zg34y9" - }, - { - "fields": { - "expire_date": "2016-05-16T12:51:31Z", - "session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "2cvojjoinc37eps5rlggzu1ho45yuxe0" - }, - { - "fields": { - "expire_date": "2016-10-20T13:15:39Z", - "session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "2i3dk2ieeo47gcaghisc5h0zbf65n118" - }, - { - "fields": { - "expire_date": "2016-06-13T08:50:52Z", - "session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9" - }, - "model": "sessions.session", - "pk": "2pqm1dz1vp672h63rfmkzrowjfy8f0oh" - }, - { - "fields": { - "expire_date": "2016-03-15T15:43:29Z", - "session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "2w7qby6oq4rvrcaeaevu64nti6cnpru9" - }, - { - "fields": { - "expire_date": "2016-04-01T16:42:42Z", - "session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "3f0z4r7zm0tht811km9py85tymlqp00t" - }, - { - "fields": { - "expire_date": "2016-04-05T12:37:18Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "3hnvrjtupy19x3phudxa5sopqw9y9iaz" - }, - { - "fields": { - "expire_date": "2016-04-04T09:48:21Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "3jko01lpmo2mga91cswnbozalltzmk3y" - }, - { - "fields": { - "expire_date": "2016-10-20T07:40:34Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "3lv8rtmpmjthyrq24bovfs5n7rbujqf3" - }, - { - "fields": { - "expire_date": "2016-05-12T13:36:05Z", - "session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "446djbo3wp9tqs8v21oxethnp4l0yk97" - }, - { - "fields": { - "expire_date": "2016-07-05T09:34:31Z", - "session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9" - }, - "model": "sessions.session", - "pk": "454ylnuvk0bbbzt0yi42am7lzb0q70ky" - }, - { - "fields": { - "expire_date": "2016-05-13T11:28:30Z", - "session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "4893qcwmmuxkcygix9k5kdg2dilc0phm" - }, - { - "fields": { - "expire_date": "2016-06-08T08:03:34Z", - "session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9" - }, - "model": "sessions.session", - "pk": "4g0znsbb64ghdgxzw50r2t27czg8adzy" - }, - { - "fields": { - "expire_date": "2016-09-16T15:23:26Z", - "session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "4nq6qx3q5nblc3cep41pjoc6e8etfwp0" - }, - { - "fields": { - "expire_date": "2016-04-26T16:58:24Z", - "session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "4s25b1x3et3r2zr1bneuct9qqdzyas69" - }, - { - "fields": { - "expire_date": "2016-03-28T08:35:56Z", - "session_data": "Yjc1ZTJmY2IwYzhiZjU4NTZjYWI1ZTdhN2VlZjYwYzE2MzMwZTFmNTp7Il9hdXRoX3VzZXJfaWQiOiI2IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZmVlYTc0YWE5ODIwMDdhNDVlNTg4MDQ3MjA0MGJiYmI1NTkyNDhkIn0=" - }, - "model": "sessions.session", - "pk": "4zy7la98l1cp672s1my2yzjpg87fjt8a" - }, - { - "fields": { - "expire_date": "2016-05-16T12:15:48Z", - "session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "51nqufi4h9v4a891nwlhk3mal1ovkehy" - }, - { - "fields": { - "expire_date": "2016-04-18T10:26:56Z", - "session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "530ad4x705b6e19mkq2p46a9hvib918m" - }, - { - "fields": { - "expire_date": "2016-04-20T13:12:52Z", - "session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "53yzz4qwv2xjumg25xue56cfbc14u7xa" - }, - { - "fields": { - "expire_date": "2016-05-25T10:51:39Z", - "session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9" - }, - "model": "sessions.session", - "pk": "5gaa12xxiuiy29n2gcq6gudd7mews1t0" - }, - { - "fields": { - "expire_date": "2016-12-29T15:38:59Z", - "session_data": "MWViMWNkYmYzMDcyMDdkODk2YjFhMGE1NjhjODc0M2U4YjU5MTEzNjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI4OTkyMDVlMTVlY2NiNzY3MmRmY2NkYzRiMDIxMDc0M2NlMzE2M2E0IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==" - }, - "model": "sessions.session", - "pk": "5ldc34wi4hz71txq3e6fcte29ekx76vw" - }, - { - "fields": { - "expire_date": "2016-04-21T14:12:41Z", - "session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "5q78l6m3so761jfuh2sr3ba5g7ecrrnx" - }, - { - "fields": { - "expire_date": "2016-04-21T10:22:04Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "604o4ygivh7hxq5gxiqxpeqoy7gp9dao" - }, - { - "fields": { - "expire_date": "2016-05-09T08:10:25Z", - "session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "64kn8m7vjepmlabt55wfcix1sqz32ygp" - }, - { - "fields": { - "expire_date": "2016-08-26T11:22:37Z", - "session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "6k16reryrvgvlux4peggv2dwnpdw018v" - }, - { - "fields": { - "expire_date": "2016-06-08T12:26:52Z", - "session_data": "ZDViMTY3Yjc5ZGYxZTI4ZGQ3NDY3ZTdiM2FlOWU5N2U2NThiODQ0ZTp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "6umok2rqb8rix7mc76fq3o8hzuglv429" - }, - { - "fields": { - "expire_date": "2016-05-09T10:37:41Z", - "session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "7a1irdvtwaoaj0ot9t6rkfjrphdoi7qt" - }, - { - "fields": { - "expire_date": "2016-07-08T10:43:50Z", - "session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "7bfyyt41ce7u7zc17h76zg28qa13zlcj" - }, - { - "fields": { - "expire_date": "2016-04-21T11:56:57Z", - "session_data": "NTVkMDJhMTU5YzdmNDJiYzRlNDI3YzA1Y2Y2OGIwOTM4YjEyYjAwMzp7Il9hdXRoX3VzZXJfaWQiOiIxMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9" - }, - "model": "sessions.session", - "pk": "7c01s688teucprvj9wuoiuebtl8bff2d" - }, - { - "fields": { - "expire_date": "2016-03-29T11:41:48Z", - "session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "7v8fu4ervbbic4dexs17fqr39eujm6ex" - }, - { - "fields": { - "expire_date": "2016-10-17T10:07:28Z", - "session_data": "YTc1YjAzY2RhYzA2MjkwNzUwZWUxNWE1OWIwNTc2NWZjYzg3M2QzMDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2lkIjoiMTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "8apy2h2gxtvjgfnmj33l6dd0z6pv0ve2" - }, - { - "fields": { - "expire_date": "2016-06-21T12:35:35Z", - "session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "8r3e79uu0q70bam9x9jakccdc7qllnmy" - }, - { - "fields": { - "expire_date": "2016-05-16T11:46:41Z", - "session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "8ued50m4hjwwcp5ip4xr9kxbtld9sz4u" - }, - { - "fields": { - "expire_date": "2016-12-14T16:16:28Z", - "session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "8xxuzavslpeyoriuqe2pxewkzdn4wrro" - }, - { - "fields": { - "expire_date": "2016-03-31T10:09:32Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "8xznu8ny0ztd5ogrjbsrnxi44shml3il" - }, - { - "fields": { - "expire_date": "2016-07-12T08:26:15Z", - "session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "9js1dx2odq429n3e7xrxc9c2qct9d2t8" - }, - { - "fields": { - "expire_date": "2017-01-02T13:44:56Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "9mf1xzu1346ss0edpll2dwougyoippqv" - }, - { - "fields": { - "expire_date": "2016-09-07T09:00:09Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "9nsplw3pobd4a2d4xkmckjyxess4qxry" - }, - { - "fields": { - "expire_date": "2016-05-11T11:10:15Z", - "session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "9w7dnxj064kgexjyfkjgt6cf29nx9ygb" - }, - { - "fields": { - "expire_date": "2017-01-03T09:23:20Z", - "session_data": "NDYzOTYxNjEwMGU5YmY1OTU0YjZmOTI1YzQwNzhmMWExMmNjM2IxMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE3IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9" - }, - "model": "sessions.session", - "pk": "9y7cusefgkupgi0osxnrkchh8nd5ramg" - }, - { - "fields": { - "expire_date": "2016-04-18T14:19:29Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "a3jvsn0c2dywsu4czsnz9xruzx7z3duo" - }, - { - "fields": { - "expire_date": "2016-05-04T08:02:47Z", - "session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "a4jaohehk6v8pvt05cbutwder21hrbcb" - }, - { - "fields": { - "expire_date": "2016-04-20T19:21:08Z", - "session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "ag17bbz4wf1rog8ppyxbifif0wfa9edx" - }, - { - "fields": { - "expire_date": "2016-04-28T11:54:57Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "aleekmuumpcgsa11hg701p7yvwyh1ahf" - }, - { - "fields": { - "expire_date": "2016-07-05T07:44:25Z", - "session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "b2i1awuvd7zdjycxljrgdi0iq43b8kzy" - }, - { - "fields": { - "expire_date": "2017-01-04T09:48:12Z", - "session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==" - }, - "model": "sessions.session", - "pk": "be63mi87uoc2xmvbgcrh8w10gxmddy59" - }, - { - "fields": { - "expire_date": "2016-05-09T12:01:50Z", - "session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "bor0plwbv6vo26iwfcyg011cs3g8b4z6" - }, - { - "fields": { - "expire_date": "2016-04-18T09:47:15Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "bvmf3qn6z1wpokibfwhwvv3sj35xixiw" - }, - { - "fields": { - "expire_date": "2016-05-21T08:38:04Z", - "session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "c0mebo725euvitftiukwfw6dxip0koqs" - }, - { - "fields": { - "expire_date": "2016-04-21T08:30:05Z", - "session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "c3s4ht1lu6uct1cahkko5ribfpslh2v5" - }, - { - "fields": { - "expire_date": "2016-10-19T15:55:59Z", - "session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9" - }, - "model": "sessions.session", - "pk": "ca3irnu5shsqqe84snn6nd3jz0yvg5ky" - }, - { - "fields": { - "expire_date": "2016-05-13T07:52:18Z", - "session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "czn1xaj1pl52ouw6om2uk7gu417u9pu7" - }, - { - "fields": { - "expire_date": "2016-11-07T12:37:20Z", - "session_data": "MDU0NzgzY2M4NmZmMWFiMzM3OTNmNjA5NzA0YmEzYzgwNjM0YzNkYjp7Il9hdXRoX3VzZXJfaWQiOiIxNCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5OTIwNWUxNWVjY2I3NjcyZGZjY2RjNGIwMjEwNzQzY2UzMTYzYTQiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "d7g9ou0slmb2dxi9hllol3rp17wj1gt5" - }, - { - "fields": { - "expire_date": "2016-05-02T07:57:42Z", - "session_data": "MjY2NTdjZjlhZWVhOWRjYjI3MTAyZWNhMjRjZGM0OGY2M2EwNjFiMTp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "da9ald43zlct5w8wjy2jer4uuw1me508" - }, - { - "fields": { - "expire_date": "2016-05-12T19:05:43Z", - "session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "dhg4klk0p3kg8fq2geiqxr3bo23ate4f" - }, - { - "fields": { - "expire_date": "2016-12-28T14:05:09Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "djgqp8bgimckrrz7xgrx4le7m5d9xtzb" - }, - { - "fields": { - "expire_date": "2016-04-27T08:00:35Z", - "session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "djovzn0xi209v7yfln4nl7ucsbczbwyd" - }, - { - "fields": { - "expire_date": "2016-06-16T13:41:51Z", - "session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9" - }, - "model": "sessions.session", - "pk": "dn51wznu1aa6a8lty2rq7pj4e23b8ho9" - }, - { - "fields": { - "expire_date": "2017-01-17T09:34:14Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "dt5k6r59shu6ufm330uubkay81fj7im7" - }, - { - "fields": { - "expire_date": "2016-04-27T10:15:28Z", - "session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "dvsoylbri4ltzo6k3p3damrtuvmbroz8" - }, - { - "fields": { - "expire_date": "2016-06-20T08:42:22Z", - "session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9" - }, - "model": "sessions.session", - "pk": "dzox0vg6n0v3s8x3sexsyskt8hagyuld" - }, - { - "fields": { - "expire_date": "2016-12-14T11:11:40Z", - "session_data": "ZWViMDMxZmE5OTZmYzdkMDhkNjQwYjg1NGZiZDEzNzUxM2VlYmRiYTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==" - }, - "model": "sessions.session", - "pk": "el73hh1dxrbhvncsx40f6tlr8xg4q23y" - }, - { - "fields": { - "expire_date": "2016-09-14T14:53:54Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "eofnt62yc2rpm0me333lf8nfqicihjeq" - }, - { - "fields": { - "expire_date": "2016-07-27T09:07:15Z", - "session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "erwufifibov75oo9c5uklkwh5itqskcj" - }, - { - "fields": { - "expire_date": "2016-12-21T15:40:51Z", - "session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "fi4wwey9khy6y9tfj32yeu5fbdksdnau" - }, - { - "fields": { - "expire_date": "2016-10-26T12:38:51Z", - "session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "ftcw1q8cuz0fqv6ip663fh4wrx5dgydx" - }, - { - "fields": { - "expire_date": "2016-10-17T17:19:23Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "fzjw8n6ihqlokw2ckhoi3ljnyaxfew9a" - }, - { - "fields": { - "expire_date": "2016-06-08T11:35:30Z", - "session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "g9goolu28f7nem5sntxmm8zckxkwz75r" - }, - { - "fields": { - "expire_date": "2016-06-07T13:29:28Z", - "session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "gcjmti8uy2ry8z3mcq3gga727dqwfrdv" - }, - { - "fields": { - "expire_date": "2016-06-28T08:16:12Z", - "session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9" - }, - "model": "sessions.session", - "pk": "gi62wdj66c5j78be7q372m29mv6gdora" - }, - { - "fields": { - "expire_date": "2016-06-21T07:03:28Z", - "session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9" - }, - "model": "sessions.session", - "pk": "gj3b6zp6h18wyux7kkzfnmkobhuh5hef" - }, - { - "fields": { - "expire_date": "2016-05-02T17:18:28Z", - "session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "gjuve267k4260hvyils2ls2496ak9z37" - }, - { - "fields": { - "expire_date": "2016-04-05T07:59:21Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "gtef8am7v4lxlgmr0iw3lro09q1ppfv8" - }, - { - "fields": { - "expire_date": "2016-09-05T14:43:01Z", - "session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "gyjj4brwe14dunmzuz5pwjff5vv2aw26" - }, - { - "fields": { - "expire_date": "2016-05-24T08:40:28Z", - "session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "h0oilrzbq6hh6gj8in11dloe9lle66uw" - }, - { - "fields": { - "expire_date": "2016-04-16T08:59:39Z", - "session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "hmkwbnt2edjp0hm9n25ezqfj4tuy9h17" - }, - { - "fields": { - "expire_date": "2016-03-30T09:46:34Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "hpksrftsd23i2olvth8rjw654h2nwm9u" - }, - { - "fields": { - "expire_date": "2016-09-19T08:08:24Z", - "session_data": "MTVlNjdhYjgxMDY4OTliNDljNThlMDJmNzkyYzE5MTYzNDY4Y2U2Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE4IiwiX2F1dGhfdXNlcl9oYXNoIjoiY2Q0ZGNiZGNjMDJiYTg4ZDBiYTRlZDRiMzQ3ZjA2ZWNkMTM0ZDg1YiJ9" - }, - "model": "sessions.session", - "pk": "hut44xzfwmokk3j0rgw1y6bej4al49it" - }, - { - "fields": { - "expire_date": "2016-07-20T06:13:45Z", - "session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "i20kzsaia6xmnpbc6osh77c5goaw6jnp" - }, - { - "fields": { - "expire_date": "2016-03-31T14:52:42Z", - "session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "i3q8tg06vzjyfpxiotc9e1bz82ta8v2o" - }, - { - "fields": { - "expire_date": "2016-06-08T08:07:45Z", - "session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "i4spw7fr2wg0e6m1vn2xa0i8txp684vi" - }, - { - "fields": { - "expire_date": "2016-04-15T11:14:21Z", - "session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "ilpszhdk7mwhzo89kqgddjupkf27ok54" - }, - { - "fields": { - "expire_date": "2016-03-15T16:03:56Z", - "session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "imakeqah5lviaceijxe33lnovxbek8nu" - }, - { - "fields": { - "expire_date": "2016-06-06T07:28:47Z", - "session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "ioz45zoaruvhib9f8obmdvb9pzt09wcp" - }, - { - "fields": { - "expire_date": "2016-06-07T13:05:08Z", - "session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9" - }, - "model": "sessions.session", - "pk": "jaa8d8mdlv8alhnorqooa5r7wohajc2u" - }, - { - "fields": { - "expire_date": "2016-12-28T09:49:32Z", - "session_data": "M2Q3NGMyZGMwYmY3YTg5ZDg3NTZjNWM5ODM4YjU3YzZjOWQ0NWY4ODp7Il9hdXRoX3VzZXJfaWQiOiIxOSIsIl9hdXRoX3VzZXJfaGFzaCI6IjY3ZjMxZmYzODI1ODc3ZjhmNWFkMzQ5YjI3N2FkMTEyZTk5NjlhZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "jghkwi5l48e732l6senbb027s7ww69fb" - }, - { - "fields": { - "expire_date": "2016-04-19T15:12:15Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "ka3msywv1o7njsbgs3q2631094nuqclo" - }, - { - "fields": { - "expire_date": "2016-05-31T10:05:18Z", - "session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "kb4xl9693ddmya8oaruvcgl070khe8mq" - }, - { - "fields": { - "expire_date": "2016-12-23T05:35:47Z", - "session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9" - }, - "model": "sessions.session", - "pk": "kgd8yd7f2tdrcor1rk8t0sqb2ldk042z" - }, - { - "fields": { - "expire_date": "2016-12-30T19:29:46Z", - "session_data": "YWRkYWMyYTIwODc5ZjUyNDQ4NTA3MjEzN2I3YTBkMzcyNTY3MDA1Zjp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMifQ==" - }, - "model": "sessions.session", - "pk": "kl4hod1xry6xgyjkmn9ozdsc1t7ycgec" - }, - { - "fields": { - "expire_date": "2016-10-25T15:37:43Z", - "session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9" - }, - "model": "sessions.session", - "pk": "kn0v2rbr6pu2q44ckuyc5a1n0edaw2y0" - }, - { - "fields": { - "expire_date": "2016-05-02T09:44:34Z", - "session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "knqvpsn88en5yygqemcw6edtg2jt8249" - }, - { - "fields": { - "expire_date": "2016-05-13T06:27:59Z", - "session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "kxlgqlc529cp6t14zf4klzf50l5uznf7" - }, - { - "fields": { - "expire_date": "2016-05-13T11:21:45Z", - "session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "l1xjedr3on0ldkdp3g8zi6o9y1q9wqxh" - }, - { - "fields": { - "expire_date": "2016-09-14T11:45:48Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "le4a8wynksh1utfu4n5kz3o0tky32990" - }, - { - "fields": { - "expire_date": "2016-11-01T14:58:57Z", - "session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "ln689yu5bsom0ltzgm2trggdbc42wps5" - }, - { - "fields": { - "expire_date": "2016-10-04T13:24:20Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "m5zayaokhfweblphgrlbk4vccvffwyi4" - }, - { - "fields": { - "expire_date": "2016-04-21T08:28:33Z", - "session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "m787xp45lpgoa269n6728z0b37p8iy1q" - }, - { - "fields": { - "expire_date": "2016-04-19T19:17:17Z", - "session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "mf6ntnvxhczzz5zarydcb9r5n6ip338t" - }, - { - "fields": { - "expire_date": "2016-11-23T16:20:25Z", - "session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "mowegyjhef74cko3cbe5ztx25hhlazxm" - }, - { - "fields": { - "expire_date": "2016-05-23T13:26:40Z", - "session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9" - }, - "model": "sessions.session", - "pk": "mp8qypbtsseryqda3y9xr8q1ohmd9c92" - }, - { - "fields": { - "expire_date": "2016-05-16T10:14:08Z", - "session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "n4cce9pgaoiht3mzxxml6yjwljahj4kg" - }, - { - "fields": { - "expire_date": "2016-09-14T14:54:12Z", - "session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9" - }, - "model": "sessions.session", - "pk": "n5rmgcysy0g0f4cz38hwpiybum63t91l" - }, - { - "fields": { - "expire_date": "2016-12-22T15:22:58Z", - "session_data": "MTY5NjBmYTYyM2I0NzM5NzhlMDg4OWRmNWIxZDllMDQ0MWZkY2ZmYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "npxptqbrj2lpm93vfwurfonfsehc1yds" - }, - { - "fields": { - "expire_date": "2016-04-11T20:27:35Z", - "session_data": "Y2U0NzNjZWQwYmRhOWE0ODFlZGNhZWVlYTY2NmJkOTVmMTM0OTRjODp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyZjRiOTA3N2QyNzcwMjMwYTQ1NDdkYTZkZmY5ZDZkODc1MzRhZWNkIn0=" - }, - "model": "sessions.session", - "pk": "nqc1537rhlifkiupfsj17x6lfs3zepzg" - }, - { - "fields": { - "expire_date": "2016-11-08T10:15:12Z", - "session_data": "NDEzMTc3MjA1ODkzMmI3YjgwNGY1ZGQ5M2NjYTU5MDg2YjRmMzg3Zjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==" - }, - "model": "sessions.session", - "pk": "nswul70gr80dq4qwgs4di508w00uud6b" - }, - { - "fields": { - "expire_date": "2016-08-24T09:07:00Z", - "session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9" - }, - "model": "sessions.session", - "pk": "nzdcc0dkg7wdlluk2vq2ljtmad4h5vzp" - }, - { - "fields": { - "expire_date": "2016-07-05T10:17:31Z", - "session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9" - }, - "model": "sessions.session", - "pk": "o7gkkib47r6mq2f7gzr2vhtoi923rzkd" - }, - { - "fields": { - "expire_date": "2016-08-08T10:29:46Z", - "session_data": "ZDY1MjlkZmU2N2VlMWExZmMzNDdmYmEyZGE4OTViMzdiZDJkODllNDp7Il9hdXRoX3VzZXJfaGFzaCI6IjZjNWI1Y2Q2Mjg0ZDJlOTkxOTg3MmM2MjlmMjAzOWI1MzM4YTFlYTMiLCJfYXV0aF91c2VyX2lkIjoiMTMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "odorbcaogkfzuupexk2zyze0ewnene46" - }, - { - "fields": { - "expire_date": "2016-04-29T07:40:16Z", - "session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "oeq1kyp2lgk18bbnoya8bdw7r8e0pxct" - }, - { - "fields": { - "expire_date": "2016-04-28T12:49:30Z", - "session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "oftocczwlm0ye9gmcjr2ja5zc5kl0th6" - }, - { - "fields": { - "expire_date": "2016-09-16T07:07:44Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "ow41h8cvh3uwelx4zqi343gf9u1sfk54" - }, - { - "fields": { - "expire_date": "2016-04-06T11:53:13Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "pokxuyjlddmdq61hkw1pymxcrgnt0ybm" - }, - { - "fields": { - "expire_date": "2016-11-24T11:13:28Z", - "session_data": "NDBlNzJmOTRhNTU4Y2NiOGE4MjdhNmM3MDI2NWRjNTA0MWIyOWQ0MTp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiIzN2YzOWFiYWNiY2I2MTc4OTk4ZjAyZGI1ODNmYzk0OTg2NmFjNGZjIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2lkIjoiMTIifQ==" - }, - "model": "sessions.session", - "pk": "pq0v11mb3gtx27zfq18jtcqmkgsonwtf" - }, - { - "fields": { - "expire_date": "2016-04-18T11:48:29Z", - "session_data": "OThjMmMzOWI1MWU5ZDA5OGI4NjdhOTJjMzZhN2RhMzEwMGUxZDhlZDp7Il9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "q6ygz2rv74l3az0uu14rbg6s7fwrmioc" - }, - { - "fields": { - "expire_date": "2016-03-28T14:27:50Z", - "session_data": "OGQ3YTk2MDlkMjkxMzkzMWFmMDEyNjFmOGMxMTYzYmFjZDRkOWRkNTp7Il9hdXRoX3VzZXJfaWQiOiIxMCIsIl9hdXRoX3VzZXJfaGFzaCI6IjcyMjVhYjkzYmQzZTQ2MWVkZmQ0NGY3YWZjMzNlOTYwMmQ5YzZiZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "qi66ci58ybleptvfa4qenkhecsabekut" - }, - { - "fields": { - "expire_date": "2016-12-09T16:53:29Z", - "session_data": "ZWEyNzBjOTM2YTI1MjdmYzcxYjQxNTkyM2EzN2Y1N2Y5NzY5ODBhMDp7ImFubm90YXRpb25fcHJvamVjdCI6IjEiLCJfYXV0aF91c2VyX2lkIjoiMTEiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIifQ==" - }, - "model": "sessions.session", - "pk": "qnc7zqg4t049l6nf2uaoll0t45339htf" - }, - { - "fields": { - "expire_date": "2016-03-17T11:19:13Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "r0zqub8g13155fj5sptxtt67mfjrgos7" - }, - { - "fields": { - "expire_date": "2016-09-20T08:48:24Z", - "session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "rgh85gzso4azmdz1jgl64aumv4wzrbjy" - }, - { - "fields": { - "expire_date": "2016-04-29T08:12:45Z", - "session_data": "MzViYTlkYmViYWY1NzIwNjVlMmExZWQ0M2UzYWJjYWI3ZDE4MzE0NTp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "riiin9a0s64pfme9ubcorjkqxdxej59k" - }, - { - "fields": { - "expire_date": "2016-11-10T07:54:55Z", - "session_data": "ZmUzMWJlNDFjNWIzZmI0MjdkMTI0YTg3MzJlZDU5MjI1YmU4NjAxYzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSIsImFubm90YXRpb25fcHJvamVjdCI6IjEifQ==" - }, - "model": "sessions.session", - "pk": "ru7211el9bz5ls2h791ei77fpl0yqh7o" - }, - { - "fields": { - "expire_date": "2016-06-01T09:22:04Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "ryh7badf8sk52fnosn0im30u153w96bx" - }, - { - "fields": { - "expire_date": "2016-11-17T11:25:00Z", - "session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "s51v90yvhhv345wa7wwdl8kwwbtd9ove" - }, - { - "fields": { - "expire_date": "2016-06-07T07:10:33Z", - "session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9" - }, - "model": "sessions.session", - "pk": "slk0wycwsx94mrdjglmo0xg9ihk5nhid" - }, - { - "fields": { - "expire_date": "2016-11-02T13:21:25Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "srttph7yvaqfjfljbvqkx1gu7ylywcd0" - }, - { - "fields": { - "expire_date": "2016-12-22T23:47:44Z", - "session_data": "ZTM4YzQ0OTFjMDY0YzkxYTBiNmZiMjMzM2FmNjAzOWY1MDcxZjhlNTp7Il9hdXRoX3VzZXJfaWQiOiIyMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiZDUxZTc4MDViNmNkOGI1MDkwNTdlMWM5ZDczNzcxMjE0OWRhOTEwMCJ9" - }, - "model": "sessions.session", - "pk": "t2ed29ekg6tov4ixbshlrhj1jkf3ydnq" - }, - { - "fields": { - "expire_date": "2016-04-06T09:13:02Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "t3cuutcqa6vtlybwzsa5p2303me1f5hk" - }, - { - "fields": { - "expire_date": "2016-04-18T13:16:42Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "t3ts65ztihrj3wf4snagm5gh099f4yt4" - }, - { - "fields": { - "expire_date": "2016-09-07T09:17:51Z", - "session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "tibkv4welc3hdum9tks2uw66w32ut4d6" - }, - { - "fields": { - "expire_date": "2016-03-29T08:45:55Z", - "session_data": "YmYzMTdmZmJmNGJlZWE2MjExNDljNDRlMGJiMTZhOTQ3NjQ2ZWZmMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=" - }, - "model": "sessions.session", - "pk": "tryzyt7y5tfw6btajspbb3ekxtukcg6c" - }, - { - "fields": { - "expire_date": "2016-04-28T12:48:36Z", - "session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "txw6kfzk32bxeqm21knvrf570by4v27p" - }, - { - "fields": { - "expire_date": "2016-06-13T08:36:52Z", - "session_data": "ZTdjZjZiNjA2M2RmNzZjMTdhNzYyMDg1MGZlODgzZDQwZTk0NDFjYjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "uesi563p5dol5hv4gjor3noj55kz8chz" - }, - { - "fields": { - "expire_date": "2016-05-13T08:32:22Z", - "session_data": "YzA2ZDI4ZGE0Njg5MTVjMTMxNjUyZTczNmRmYjI2NjZkYzc2MTJkMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9" - }, - "model": "sessions.session", - "pk": "uou3pothn76iu9zi34fij69m8inc1v2s" - }, - { - "fields": { - "expire_date": "2016-07-05T09:34:00Z", - "session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9" - }, - "model": "sessions.session", - "pk": "v04mdgl0o7ggps7zvgs71pfc610r3mdu" - }, - { - "fields": { - "expire_date": "2016-06-06T09:17:34Z", - "session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "vmr93v0jyc49tbyesymlv6b7k3zimcac" - }, - { - "fields": { - "expire_date": "2016-11-25T22:11:01Z", - "session_data": "YTc5YjkwZjRiOGU1ZjE2MGU0OGYwNjU0NDRkMTA0MmYyNWIzNTM0Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE1IiwiX2F1dGhfdXNlcl9oYXNoIjoiZDAyNWRmNTQwN2NlYmQxOTUzNDNhNmUzZTgyOWRkYmY0M2E5YzQ2NSJ9" - }, - "model": "sessions.session", - "pk": "vmrxhzxvi2lmq1si3163rg5f2p35xm20" - }, - { - "fields": { - "expire_date": "2016-10-19T09:11:45Z", - "session_data": "Njc2Mzg0MzBjZjQ2ODA5YzdhYWFjZDI4Mzg0NDUzN2E5ZmVhMzkzMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE5IiwiX2F1dGhfdXNlcl9oYXNoIjoiNjdmMzFmZjM4MjU4NzdmOGY1YWQzNDliMjc3YWQxMTJlOTk2OWFmYyJ9" - }, - "model": "sessions.session", - "pk": "w85gdvg9cv7cw4bzsqzhnh48ale9e505" - }, - { - "fields": { - "expire_date": "2016-03-25T11:21:04Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "wja89v3nk6dn5wulzb1vyhint9ypgtc7" - }, - { - "fields": { - "expire_date": "2016-12-19T13:49:09Z", - "session_data": "YTUyZjM5M2RmMzU5ZGU1YWYwN2U0MWUwZTc1MDFlODUzMjQ2YWNjZTp7Il9hdXRoX3VzZXJfaWQiOiIxNyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiY2FhYzI0MDZlYWFiOTA5M2MxZTYyMDQyMWNjNTRjODA4ZjA3N2U2OCJ9" - }, - "model": "sessions.session", - "pk": "wkz9j2f8yn96a1q1h387f1et6gf2jqvd" - }, - { - "fields": { - "expire_date": "2016-10-03T12:40:30Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "wp8esojlxiexoxz3ztm8ct9o9wunxs6v" - }, - { - "fields": { - "expire_date": "2016-05-31T09:28:51Z", - "session_data": "MDIwMWE2YzMzMTc1MmM5ODI3NGZkYjVlYzAwMjI1YzI0MGNhMmYyMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "x4by2dqbc8ayqkp8h4lec89esz09izhp" - }, - { - "fields": { - "expire_date": "2016-10-24T18:27:59Z", - "session_data": "MDhlNGIwYThiODc3NTQ1MDJiNjA5NDE5NjA2NWM3MGQ5ZDU0M2ZjYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyIsIl9hdXRoX3VzZXJfaWQiOiIxMiJ9" - }, - "model": "sessions.session", - "pk": "x5hi7v1e2wpaza3um7gvymf7q1a0frs3" - }, - { - "fields": { - "expire_date": "2016-08-15T11:56:07Z", - "session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9" - }, - "model": "sessions.session", - "pk": "x78x7rtmlygthr84o6zpio7hqojn0m26" - }, - { - "fields": { - "expire_date": "2016-04-21T08:23:30Z", - "session_data": "MTEwMjhhNzIwY2FiNjRjOTZhMzJmZTM4OWMxM2MxYjk4ODg0YTZmMjp7Il9hdXRoX3VzZXJfaGFzaCI6IjUyZGZkMWYwMmJkN2ZjZWQ2ZmM3ZGU0ZGRjOGRlYmMxYjkxYmNhNWYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "xbx4f4mi9zfgngz6ahhz2brt9yx1a1wx" - }, - { - "fields": { - "expire_date": "2017-01-03T10:42:04Z", - "session_data": "NjdiM2E4NGNmNGQwNmY5OGU1Zjc5OGNkYzg0ZmFlNWVhMjM4OGQwZjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjE0IiwiX2F1dGhfdXNlcl9oYXNoIjoiODk5MjA1ZTE1ZWNjYjc2NzJkZmNjZGM0YjAyMTA3NDNjZTMxNjNhNCJ9" - }, - "model": "sessions.session", - "pk": "xeta229mvebwff8lxrg15tg92yby9l7h" - }, - { - "fields": { - "expire_date": "2016-10-20T15:38:48Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "xjameie76erma5u2xcefnxiqkaydbqem" - }, - { - "fields": { - "expire_date": "2016-10-03T12:41:43Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "xnsmsv7jk2xrtveyrxmp8hwos9wkupj8" - }, - { - "fields": { - "expire_date": "2016-05-13T06:21:47Z", - "session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "xqn4o938970paagobhs75vdj78qklbpt" - }, - { - "fields": { - "expire_date": "2016-03-28T11:24:43Z", - "session_data": "OGZkZjg1ZmMwYWRiMDZhY2JkMjI0Mzc2OGEwNWRjYzFkZGE0Y2ZhMTp7Il9hdXRoX3VzZXJfaWQiOiI4IiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIzOTA3NmVmZTg5NzRlMjQxNTZlOTFkOTNkNjgxYzcyNjY5MzVmNTFiIn0=" - }, - "model": "sessions.session", - "pk": "xvoh3s3tb9rplihcim2wx7rmifr9ye8g" - }, - { - "fields": { - "expire_date": "2016-10-17T17:19:59Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "xzwc8x471lswzbo6jxr3r3tgmfjhm1ou" - }, - { - "fields": { - "expire_date": "2016-07-05T15:37:48Z", - "session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "y1i2uumab55sfreo33n184zl0hmrmkoo" - }, - { - "fields": { - "expire_date": "2016-05-23T09:12:20Z", - "session_data": "ZmZiNzIwNDQ4YWIyNGIwZWEyYTg4ODA3ODYzNjA3OTM4ZjVjY2RmMjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEyIiwiX2F1dGhfdXNlcl9oYXNoIjoiMzdmMzlhYmFjYmNiNjE3ODk5OGYwMmRiNTgzZmM5NDk4NjZhYzRmYyJ9" - }, - "model": "sessions.session", - "pk": "y7lf4rw7p0yzwf4u6lvibsqemlza7h81" - }, - { - "fields": { - "expire_date": "2016-12-29T08:20:29Z", - "session_data": "YTVkY2VkNDJkYjU5YjUzMTUxMjM5YWE1M2M1Njk5MWJlNTAwNGJhYjp7Il9hdXRoX3VzZXJfaWQiOiIxMSIsIl9hdXRoX3VzZXJfaGFzaCI6Ijc2YjVjMDkyNTZiNWQzOTA5OWJkOTc0MmU2ZTkyOWY2ZDQyYjFmZTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "y90ll3s9ei54tpb6fwm1hpbfweqtks8g" - }, - { - "fields": { - "expire_date": "2016-11-21T14:11:46Z", - "session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "yf9905ii8mcn5xb35uvygpowu7jw03oc" - }, - { - "fields": { - "expire_date": "2016-04-28T12:47:33Z", - "session_data": "NGVjNWM2NWMwODA5ZWQ2M2U3YmQ2MTc3MTg4YzUyM2M4NjBjNjI2Yzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEzIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyJ9" - }, - "model": "sessions.session", - "pk": "ykzz4og15rbp734i6zas54al3618ih6t" - }, - { - "fields": { - "expire_date": "2016-06-20T07:23:58Z", - "session_data": "NTI0MjM1YzRjMmFiOGU5ZDI2ZTU4ZmQzNDM4MmYxOWUyY2I5ZTRjMDp7Il9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2lkIjoiMTIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "yl0hc8l899vc54qmdcaznw266l10qdlf" - }, - { - "fields": { - "expire_date": "2016-06-10T09:57:45Z", - "session_data": "OGY1ZmEyMjI5YmZlOTkyMWZlNmMwMDYzNTI1ODgxYmY2MWJjYjJlYTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjExIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiJ9" - }, - "model": "sessions.session", - "pk": "yujjg1ipi5p7tpy8dkf2ib936agdr1cs" - }, - { - "fields": { - "expire_date": "2016-04-29T12:27:51Z", - "session_data": "YjFkNWIyNjY2M2VmYzk2NjQ1NGIzYjRjZmY3MjFhNGI4YjFhMjFmMTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTJkZmQxZjAyYmQ3ZmNlZDZmYzdkZTRkZGM4ZGViYzFiOTFiY2E1ZiIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=" - }, - "model": "sessions.session", - "pk": "yw5a1u05yee1uc8l8rusj5qc791yeac1" - }, - { - "fields": { - "expire_date": "2016-04-18T11:53:02Z", - "session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "z1mpzj7y2rtez64aj4i29ghfldffi2sd" - }, - { - "fields": { - "expire_date": "2016-06-20T13:24:18Z", - "session_data": "ODgyMDg5MDA5M2ViY2QzNGIwNTg0NWM5NWEyOGJiYTMxYWRlMzM2Mjp7Il9hdXRoX3VzZXJfaWQiOiIxMiIsIl9hdXRoX3VzZXJfaGFzaCI6IjM3ZjM5YWJhY2JjYjYxNzg5OThmMDJkYjU4M2ZjOTQ5ODY2YWM0ZmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9" - }, - "model": "sessions.session", - "pk": "z7s03vfqblz8ginn2pijfbgbq8tfvpew" - }, - { - "fields": { - "expire_date": "2016-04-21T10:07:32Z", - "session_data": "ZWNjOGQ1ZWM4YzY2ZWQ3NWFiMTcwNTNhMzE3Y2ZjOTc1M2E1OGI4MDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI1MmRmZDFmMDJiZDdmY2VkNmZjN2RlNGRkYzhkZWJjMWI5MWJjYTVmIn0=" - }, - "model": "sessions.session", - "pk": "zb5o0bg10jiaavcobv9jh70ywh0haj2l" - }, - { - "fields": { - "expire_date": "2017-01-03T11:30:35Z", - "session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "zd89eekj8db021j20g95g8h3l2qoajg2" - }, - { - "fields": { - "expire_date": "2016-07-07T12:20:16Z", - "session_data": "NDVjMTE4MTFmMGRlMjNhNDc5MmI1MzU5NGU4MTc4YTMyOTI2ZDE4Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzZiNWMwOTI1NmI1ZDM5MDk5YmQ5NzQyZTZlOTI5ZjZkNDJiMWZlMiIsIl9hdXRoX3VzZXJfaWQiOiIxMSJ9" - }, - "model": "sessions.session", - "pk": "zi5wew8abm7i1cnrv2qg3gfviw7l3o3h" - }, - { - "fields": { - "expire_date": "2016-06-20T14:32:15Z", - "session_data": "ZGY1NTliZmMxNTM0M2YwZGMzYWUyNTFmMjg4MGRhYWFjMTQ3MjM2Yjp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNmM1YjVjZDYyODRkMmU5OTE5ODcyYzYyOWYyMDM5YjUzMzhhMWVhMyIsIl9hdXRoX3VzZXJfaWQiOiIxMyJ9" - }, - "model": "sessions.session", - "pk": "zutipuy0l6zlpgjy0v54xnp17i8zyu7i" - }, - { - "fields": { - "content_type": 56, - "db": "default", - "format": "json", - "object_id": "22", - "object_repr": "testcollection", - "revision": 7078, - "serialized_data": "[{\"model\": \"metainfo.collection\", \"pk\": 22, \"fields\": {\"name\": \"testcollection\", \"description\": \"\", \"collection_type\": 125, \"groups_allowed\": []}}]" - }, - "model": "reversion.version", - "pk": 30521 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99852", - "object_repr": "testwork", - "revision": 7079, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99852, \"fields\": {\"name\": \"testwork\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30522 - }, - { - "fields": { - "content_type": 58, - "db": "default", - "format": "json", - "object_id": "67377", - "object_repr": "https://apis.eos.arz.oeaw.ac.at/entity/99852", - "revision": 7079, - "serialized_data": "[{\"model\": \"metainfo.uri\", \"pk\": 67377, \"fields\": {\"uri\": \"https://apis.eos.arz.oeaw.ac.at/entity/99852\", \"domain\": \"apis default\", \"rdf_link\": \"\", \"entity\": 99852, \"loaded\": false, \"loaded_time\": null}}]" - }, - "model": "reversion.version", - "pk": 30523 - }, - { - "fields": { - "content_type": 12, - "db": "default", - "format": "json", - "object_id": "99852", - "object_repr": "testwork", - "revision": 7079, - "serialized_data": "[{\"model\": \"entities.work\", \"pk\": 99852, \"fields\": {\"kind\": 429}}]" - }, - "model": "reversion.version", - "pk": 30524 - }, - { - "fields": { - "content_type": 69, - "db": "default", - "format": "json", - "object_id": "12", - "object_repr": "VocabNames object", - "revision": 7080, - "serialized_data": "[{\"model\": \"vocabularies.vocabnames\", \"pk\": 12, \"fields\": {\"name\": \"PersonWorkRelation\"}}]" - }, - "model": "reversion.version", - "pk": 30525 - }, - { - "fields": { - "content_type": 14, - "db": "default", - "format": "json", - "object_id": "424", - "object_repr": "author", - "revision": 7080, - "serialized_data": "[{\"model\": \"vocabularies.relationbaseclass\", \"pk\": 424, \"fields\": {\"name_reverse\": \"authored\"}}]" - }, - "model": "reversion.version", - "pk": 30526 - }, - { - "fields": { - "content_type": 29, - "db": "default", - "format": "json", - "object_id": "424", - "object_repr": "author", - "revision": 7080, - "serialized_data": "[{\"model\": \"vocabularies.personworkrelation\", \"pk\": 424, \"fields\": {}}]" - }, - "model": "reversion.version", - "pk": 30527 - }, - { - "fields": { - "content_type": 13, - "db": "default", - "format": "json", - "object_id": "424", - "object_repr": "author", - "revision": 7080, - "serialized_data": "[{\"model\": \"vocabularies.vocabsbaseclass\", \"pk\": 424, \"fields\": {\"name\": \"author\", \"description\": \"\", \"parent_class\": null, \"status\": \"can\", \"userAdded\": 12, \"vocab_name\": 12}}]" - }, - "model": "reversion.version", - "pk": 30528 - }, - { - "fields": { - "content_type": 43, - "db": "default", - "format": "json", - "object_id": "99854", - "object_repr": "Costenoble, Karl Ludwig (author) testwork", - "revision": 7081, - "serialized_data": "[{\"model\": \"relations.personwork\", \"pk\": 99854, \"fields\": {\"relation_type\": 424, \"related_person\": 93034, \"related_work\": 99852}}]" - }, - "model": "reversion.version", - "pk": 30529 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99854", - "object_repr": "(ID: 99854)", - "revision": 7081, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99854, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30530 - }, - { - "fields": { - "content_type": 43, - "db": "default", - "format": "json", - "object_id": "99855", - "object_repr": "Thalberg, Sigismund (author) testwork", - "revision": 7082, - "serialized_data": "[{\"model\": \"relations.personwork\", \"pk\": 99855, \"fields\": {\"relation_type\": 424, \"related_person\": 27245, \"related_work\": 99852}}]" - }, - "model": "reversion.version", - "pk": 30531 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99855", - "object_repr": "(ID: 99855)", - "revision": 7082, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99855, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30532 - }, - { - "fields": { - "content_type": 11, - "db": "default", - "format": "json", - "object_id": "99856", - "object_repr": "testevent", - "revision": 7083, - "serialized_data": "[{\"model\": \"entities.event\", \"pk\": 99856, \"fields\": {\"kind\": 380}}]" - }, - "model": "reversion.version", - "pk": 30533 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99856", - "object_repr": "testevent", - "revision": 7083, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99856, \"fields\": {\"name\": \"testevent\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30534 - }, - { - "fields": { - "content_type": 58, - "db": "default", - "format": "json", - "object_id": "67378", - "object_repr": "https://apis.eos.arz.oeaw.ac.at/entity/99856", - "revision": 7083, - "serialized_data": "[{\"model\": \"metainfo.uri\", \"pk\": 67378, \"fields\": {\"uri\": \"https://apis.eos.arz.oeaw.ac.at/entity/99856\", \"domain\": \"apis default\", \"rdf_link\": \"\", \"entity\": 99856, \"loaded\": false, \"loaded_time\": null}}]" - }, - "model": "reversion.version", - "pk": 30535 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99857", - "object_repr": "(ID: 99857)", - "revision": 7084, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99857, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30536 - }, - { - "fields": { - "content_type": 42, - "db": "default", - "format": "json", - "object_id": "99857", - "object_repr": "Costenoble, Karl Ludwig (nahm Teil an) testevent", - "revision": 7084, - "serialized_data": "[{\"model\": \"relations.personevent\", \"pk\": 99857, \"fields\": {\"relation_type\": 398, \"related_person\": 93034, \"related_event\": 99856}}]" - }, - "model": "reversion.version", - "pk": 30537 - }, - { - "fields": { - "content_type": 42, - "db": "default", - "format": "json", - "object_id": "99858", - "object_repr": "Liszt, Franz von (nahm Teil an) testevent", - "revision": 7085, - "serialized_data": "[{\"model\": \"relations.personevent\", \"pk\": 99858, \"fields\": {\"relation_type\": 398, \"related_person\": 62757, \"related_event\": 99856}}]" - }, - "model": "reversion.version", - "pk": 30538 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99858", - "object_repr": "(ID: 99858)", - "revision": 7085, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99858, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30539 - }, - { - "fields": { - "content_type": 69, - "db": "default", - "format": "json", - "object_id": "13", - "object_repr": "VocabNames object", - "revision": 7086, - "serialized_data": "[{\"model\": \"vocabularies.vocabnames\", \"pk\": 13, \"fields\": {\"name\": \"PlaceEventRelation\"}}]" - }, - "model": "reversion.version", - "pk": 30540 - }, - { - "fields": { - "content_type": 13, - "db": "default", - "format": "json", - "object_id": "5773", - "object_repr": "had event", - "revision": 7086, - "serialized_data": "[{\"model\": \"vocabularies.vocabsbaseclass\", \"pk\": 5773, \"fields\": {\"name\": \"had event\", \"description\": \"\", \"parent_class\": null, \"status\": \"can\", \"userAdded\": 12, \"vocab_name\": 13}}]" - }, - "model": "reversion.version", - "pk": 30541 - }, - { - "fields": { - "content_type": 34, - "db": "default", - "format": "json", - "object_id": "5773", - "object_repr": "had event", - "revision": 7086, - "serialized_data": "[{\"model\": \"vocabularies.placeeventrelation\", \"pk\": 5773, \"fields\": {}}]" - }, - "model": "reversion.version", - "pk": 30542 - }, - { - "fields": { - "content_type": 14, - "db": "default", - "format": "json", - "object_id": "5773", - "object_repr": "had event", - "revision": 7086, - "serialized_data": "[{\"model\": \"vocabularies.relationbaseclass\", \"pk\": 5773, \"fields\": {\"name_reverse\": \"took place in\"}}]" - }, - "model": "reversion.version", - "pk": 30543 - }, - { - "fields": { - "content_type": 49, - "db": "default", - "format": "json", - "object_id": "99859", - "object_repr": "Wien (had event) testevent", - "revision": 7087, - "serialized_data": "[{\"model\": \"relations.placeevent\", \"pk\": 99859, \"fields\": {\"relation_type\": 5773, \"related_place\": 183, \"related_event\": 99856}}]" - }, - "model": "reversion.version", - "pk": 30544 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99859", - "object_repr": "(ID: 99859)", - "revision": 7087, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99859, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30545 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99860", - "object_repr": "(ID: 99860)", - "revision": 7088, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99860, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30546 - }, - { - "fields": { - "content_type": 49, - "db": "default", - "format": "json", - "object_id": "99860", - "object_repr": "Wien (had event) testevent", - "revision": 7088, - "serialized_data": "[{\"model\": \"relations.placeevent\", \"pk\": 99860, \"fields\": {\"relation_type\": 5773, \"related_place\": 183, \"related_event\": 99856}}]" - }, - "model": "reversion.version", - "pk": 30547 - }, - { - "fields": { - "content_type": 69, - "db": "default", - "format": "json", - "object_id": "14", - "object_repr": "VocabNames object", - "revision": 7089, - "serialized_data": "[{\"model\": \"vocabularies.vocabnames\", \"pk\": 14, \"fields\": {\"name\": \"InstitutionEventRelation\"}}]" - }, - "model": "reversion.version", - "pk": 30548 - }, - { - "fields": { - "content_type": 30, - "db": "default", - "format": "json", - "object_id": "5774", - "object_repr": "veranstaltete", - "revision": 7089, - "serialized_data": "[{\"model\": \"vocabularies.institutioneventrelation\", \"pk\": 5774, \"fields\": {}}]" - }, - "model": "reversion.version", - "pk": 30549 - }, - { - "fields": { - "content_type": 13, - "db": "default", - "format": "json", - "object_id": "5774", - "object_repr": "veranstaltete", - "revision": 7089, - "serialized_data": "[{\"model\": \"vocabularies.vocabsbaseclass\", \"pk\": 5774, \"fields\": {\"name\": \"veranstaltete\", \"description\": \"\", \"parent_class\": null, \"status\": \"can\", \"userAdded\": 12, \"vocab_name\": 14}}]" - }, - "model": "reversion.version", - "pk": 30550 - }, - { - "fields": { - "content_type": 14, - "db": "default", - "format": "json", - "object_id": "5774", - "object_repr": "veranstaltete", - "revision": 7089, - "serialized_data": "[{\"model\": \"vocabularies.relationbaseclass\", \"pk\": 5774, \"fields\": {\"name_reverse\": \"wurde veranstaltet von\"}}]" - }, - "model": "reversion.version", - "pk": 30551 - }, - { - "fields": { - "content_type": 20, - "db": "default", - "format": "json", - "object_id": "5775", - "object_repr": "testtype", - "revision": 7090, - "serialized_data": "[{\"model\": \"vocabularies.institutiontype\", \"pk\": 5775, \"fields\": {}}]" - }, - "model": "reversion.version", - "pk": 30552 - }, - { - "fields": { - "content_type": 13, - "db": "default", - "format": "json", - "object_id": "5775", - "object_repr": "testtype", - "revision": 7090, - "serialized_data": "[{\"model\": \"vocabularies.vocabsbaseclass\", \"pk\": 5775, \"fields\": {\"name\": \"testtype\", \"description\": \"\", \"parent_class\": null, \"status\": \"can\", \"userAdded\": 12, \"vocab_name\": 9}}]" - }, - "model": "reversion.version", - "pk": 30553 - }, - { - "fields": { - "content_type": 58, - "db": "default", - "format": "json", - "object_id": "67379", - "object_repr": "https://apis.eos.arz.oeaw.ac.at/entity/99861", - "revision": 7091, - "serialized_data": "[{\"model\": \"metainfo.uri\", \"pk\": 67379, \"fields\": {\"uri\": \"https://apis.eos.arz.oeaw.ac.at/entity/99861\", \"domain\": \"apis default\", \"rdf_link\": \"\", \"entity\": 99861, \"loaded\": false, \"loaded_time\": null}}]" - }, - "model": "reversion.version", - "pk": 30554 - }, - { - "fields": { - "content_type": 10, - "db": "default", - "format": "json", - "object_id": "99861", - "object_repr": "testinstitution", - "revision": 7091, - "serialized_data": "[{\"model\": \"entities.institution\", \"pk\": 99861, \"fields\": {\"kind\": 5775, \"homepage\": \"\"}}]" - }, - "model": "reversion.version", - "pk": 30555 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99861", - "object_repr": "testinstitution", - "revision": 7091, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99861, \"fields\": {\"name\": \"testinstitution\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30556 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99862", - "object_repr": "(ID: 99862)", - "revision": 7092, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99862, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30557 - }, - { - "fields": { - "content_type": 46, - "db": "default", - "format": "json", - "object_id": "99862", - "object_repr": "testinstitution (veranstaltete) testevent", - "revision": 7092, - "serialized_data": "[{\"model\": \"relations.institutionevent\", \"pk\": 99862, \"fields\": {\"relation_type\": 5774, \"related_institution\": 99861, \"related_event\": 99856}}]" - }, - "model": "reversion.version", - "pk": 30558 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99862", - "object_repr": "(ID: 99862)", - "revision": 7093, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99862, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30559 - }, - { - "fields": { - "content_type": 46, - "db": "default", - "format": "json", - "object_id": "99862", - "object_repr": "testinstitution (veranstaltete) testevent", - "revision": 7093, - "serialized_data": "[{\"model\": \"relations.institutionevent\", \"pk\": 99862, \"fields\": {\"relation_type\": 5774, \"related_institution\": 99861, \"related_event\": 99856}}]" - }, - "model": "reversion.version", - "pk": 30560 - }, - { - "fields": { - "content_type": 69, - "db": "default", - "format": "json", - "object_id": "15", - "object_repr": "VocabNames object", - "revision": 7094, - "serialized_data": "[{\"model\": \"vocabularies.vocabnames\", \"pk\": 15, \"fields\": {\"name\": \"InstitutionWorkRelation\"}}]" - }, - "model": "reversion.version", - "pk": 30561 - }, - { - "fields": { - "content_type": 13, - "db": "default", - "format": "json", - "object_id": "5776", - "object_repr": "test relation", - "revision": 7094, - "serialized_data": "[{\"model\": \"vocabularies.vocabsbaseclass\", \"pk\": 5776, \"fields\": {\"name\": \"test relation\", \"description\": \"\", \"parent_class\": null, \"status\": \"can\", \"userAdded\": 12, \"vocab_name\": 15}}]" - }, - "model": "reversion.version", - "pk": 30562 - }, - { - "fields": { - "content_type": 14, - "db": "default", - "format": "json", - "object_id": "5776", - "object_repr": "test relation", - "revision": 7094, - "serialized_data": "[{\"model\": \"vocabularies.relationbaseclass\", \"pk\": 5776, \"fields\": {\"name_reverse\": \"reverse test relation\"}}]" - }, - "model": "reversion.version", - "pk": 30563 - }, - { - "fields": { - "content_type": 75, - "db": "default", - "format": "json", - "object_id": "5776", - "object_repr": "test relation", - "revision": 7094, - "serialized_data": "[{\"model\": \"vocabularies.institutionworkrelation\", \"pk\": 5776, \"fields\": {}}]" - }, - "model": "reversion.version", - "pk": 30564 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99866", - "object_repr": "(ID: 99866)", - "revision": 7095, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99866, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30565 - }, - { - "fields": { - "content_type": 47, - "db": "default", - "format": "json", - "object_id": "99866", - "object_repr": "testinstitution (test relation) testwork", - "revision": 7095, - "serialized_data": "[{\"model\": \"relations.institutionwork\", \"pk\": 99866, \"fields\": {\"relation_type\": 5776, \"related_institution\": 99861, \"related_work\": 99852}}]" - }, - "model": "reversion.version", - "pk": 30566 - }, - { - "fields": { - "content_type": 29, - "db": "default", - "format": "json", - "object_id": "424", - "object_repr": "author", - "revision": 7096, - "serialized_data": "[{\"model\": \"vocabularies.personworkrelation\", \"pk\": 424, \"fields\": {}}]" - }, - "model": "reversion.version", - "pk": 30567 - }, - { - "fields": { - "content_type": 14, - "db": "default", - "format": "json", - "object_id": "424", - "object_repr": "author", - "revision": 7096, - "serialized_data": "[{\"model\": \"vocabularies.relationbaseclass\", \"pk\": 424, \"fields\": {\"name_reverse\": \"authored\"}}]" - }, - "model": "reversion.version", - "pk": 30568 - }, - { - "fields": { - "content_type": 13, - "db": "default", - "format": "json", - "object_id": "424", - "object_repr": "author", - "revision": 7096, - "serialized_data": "[{\"model\": \"vocabularies.vocabsbaseclass\", \"pk\": 424, \"fields\": {\"name\": \"author\", \"description\": \"\", \"parent_class\": null, \"status\": \"can\", \"userAdded\": 12, \"vocab_name\": 12}}]" - }, - "model": "reversion.version", - "pk": 30569 - }, - { - "fields": { - "content_type": 29, - "db": "default", - "format": "json", - "object_id": "424", - "object_repr": "author", - "revision": 7097, - "serialized_data": "[{\"model\": \"vocabularies.personworkrelation\", \"pk\": 424, \"fields\": {}}]" - }, - "model": "reversion.version", - "pk": 30570 - }, - { - "fields": { - "content_type": 14, - "db": "default", - "format": "json", - "object_id": "424", - "object_repr": "author", - "revision": 7097, - "serialized_data": "[{\"model\": \"vocabularies.relationbaseclass\", \"pk\": 424, \"fields\": {\"name_reverse\": \"authored by\"}}]" - }, - "model": "reversion.version", - "pk": 30571 - }, - { - "fields": { - "content_type": 13, - "db": "default", - "format": "json", - "object_id": "424", - "object_repr": "author", - "revision": 7097, - "serialized_data": "[{\"model\": \"vocabularies.vocabsbaseclass\", \"pk\": 424, \"fields\": {\"name\": \"author\", \"description\": \"\", \"parent_class\": null, \"status\": \"can\", \"userAdded\": 12, \"vocab_name\": 12}}]" - }, - "model": "reversion.version", - "pk": 30572 - }, - { - "fields": { - "content_type": 43, - "db": "default", - "format": "json", - "object_id": "99867", - "object_repr": "Thalberg, Sigismund (author) testwork", - "revision": 7098, - "serialized_data": "[{\"model\": \"relations.personwork\", \"pk\": 99867, \"fields\": {\"relation_type\": 424, \"related_person\": 27245, \"related_work\": 99852}}]" - }, - "model": "reversion.version", - "pk": 30573 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99867", - "object_repr": "(ID: 99867)", - "revision": 7098, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99867, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30574 - }, - { - "fields": { - "content_type": 35, - "db": "default", - "format": "json", - "object_id": "5777", - "object_repr": "testrelation", - "revision": 7099, - "serialized_data": "[{\"model\": \"vocabularies.placeworkrelation\", \"pk\": 5777, \"fields\": {}}]" - }, - "model": "reversion.version", - "pk": 30575 - }, - { - "fields": { - "content_type": 69, - "db": "default", - "format": "json", - "object_id": "16", - "object_repr": "VocabNames object", - "revision": 7099, - "serialized_data": "[{\"model\": \"vocabularies.vocabnames\", \"pk\": 16, \"fields\": {\"name\": \"PlaceWorkRelation\"}}]" - }, - "model": "reversion.version", - "pk": 30576 - }, - { - "fields": { - "content_type": 13, - "db": "default", - "format": "json", - "object_id": "5777", - "object_repr": "testrelation", - "revision": 7099, - "serialized_data": "[{\"model\": \"vocabularies.vocabsbaseclass\", \"pk\": 5777, \"fields\": {\"name\": \"testrelation\", \"description\": \"\", \"parent_class\": null, \"status\": \"can\", \"userAdded\": 12, \"vocab_name\": 16}}]" - }, - "model": "reversion.version", - "pk": 30577 - }, - { - "fields": { - "content_type": 14, - "db": "default", - "format": "json", - "object_id": "5777", - "object_repr": "testrelation", - "revision": 7099, - "serialized_data": "[{\"model\": \"vocabularies.relationbaseclass\", \"pk\": 5777, \"fields\": {\"name_reverse\": \"test relation reverse\"}}]" - }, - "model": "reversion.version", - "pk": 30578 - }, - { - "fields": { - "content_type": 50, - "db": "default", - "format": "json", - "object_id": "99868", - "object_repr": "Wien (testrelation) testwork", - "revision": 7100, - "serialized_data": "[{\"model\": \"relations.placework\", \"pk\": 99868, \"fields\": {\"relation_type\": 5777, \"related_place\": 183, \"related_work\": 99852}}]" - }, - "model": "reversion.version", - "pk": 30579 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99868", - "object_repr": "(ID: 99868)", - "revision": 7100, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99868, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30580 - }, - { - "fields": { - "content_type": 37, - "db": "default", - "format": "json", - "object_id": "5778", - "object_repr": "testrelation", - "revision": 7101, - "serialized_data": "[{\"model\": \"vocabularies.eventworkrelation\", \"pk\": 5778, \"fields\": {}}]" - }, - "model": "reversion.version", - "pk": 30581 - }, - { - "fields": { - "content_type": 69, - "db": "default", - "format": "json", - "object_id": "17", - "object_repr": "VocabNames object", - "revision": 7101, - "serialized_data": "[{\"model\": \"vocabularies.vocabnames\", \"pk\": 17, \"fields\": {\"name\": \"EventWorkRelation\"}}]" - }, - "model": "reversion.version", - "pk": 30582 - }, - { - "fields": { - "content_type": 13, - "db": "default", - "format": "json", - "object_id": "5778", - "object_repr": "testrelation", - "revision": 7101, - "serialized_data": "[{\"model\": \"vocabularies.vocabsbaseclass\", \"pk\": 5778, \"fields\": {\"name\": \"testrelation\", \"description\": \"\", \"parent_class\": null, \"status\": \"can\", \"userAdded\": 12, \"vocab_name\": 17}}]" - }, - "model": "reversion.version", - "pk": 30583 - }, - { - "fields": { - "content_type": 14, - "db": "default", - "format": "json", - "object_id": "5778", - "object_repr": "testrelation", - "revision": 7101, - "serialized_data": "[{\"model\": \"vocabularies.relationbaseclass\", \"pk\": 5778, \"fields\": {\"name_reverse\": \"testrelation reverse\"}}]" - }, - "model": "reversion.version", - "pk": 30584 - }, - { - "fields": { - "content_type": 52, - "db": "default", - "format": "json", - "object_id": "99871", - "object_repr": "testevent (testrelation) testwork", - "revision": 7102, - "serialized_data": "[{\"model\": \"relations.eventwork\", \"pk\": 99871, \"fields\": {\"relation_type\": 5778, \"related_event\": 99856, \"related_work\": 99852}}]" - }, - "model": "reversion.version", - "pk": 30585 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99871", - "object_repr": "(ID: 99871)", - "revision": 7102, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99871, \"fields\": {\"name\": \"\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30586 - }, - { - "fields": { - "content_type": 12, - "db": "default", - "format": "json", - "object_id": "99872", - "object_repr": "testwork", - "revision": 7103, - "serialized_data": "[{\"model\": \"entities.work\", \"pk\": 99872, \"fields\": {\"kind\": 429}}]" - }, - "model": "reversion.version", - "pk": 30587 - }, - { - "fields": { - "content_type": 58, - "db": "default", - "format": "json", - "object_id": "68065", - "object_repr": "https://apis.eos.arz.oeaw.ac.at/entity/99872", - "revision": 7103, - "serialized_data": "[{\"model\": \"metainfo.uri\", \"pk\": 68065, \"fields\": {\"uri\": \"https://apis.eos.arz.oeaw.ac.at/entity/99872\", \"domain\": \"apis default\", \"rdf_link\": \"\", \"entity\": 99872, \"loaded\": false, \"loaded_time\": null}}]" - }, - "model": "reversion.version", - "pk": 30588 - }, - { - "fields": { - "content_type": 54, - "db": "default", - "format": "json", - "object_id": "99872", - "object_repr": "testwork", - "revision": 7103, - "serialized_data": "[{\"model\": \"metainfo.tempentityclass\", \"pk\": 99872, \"fields\": {\"name\": \"testwork\", \"review\": false, \"start_date\": null, \"end_date\": null, \"start_date_written\": \"\", \"end_date_written\": \"\", \"status\": \"\", \"source\": null, \"references\": \"\", \"notes\": \"\", \"text\": [], \"collection\": []}}]" - }, - "model": "reversion.version", - "pk": 30589 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Opatija", - "label_type": 6, - "temp_entity": 26 - }, - "model": "labels.label", - "pk": 17 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Opatija, sr. Rijeka", - "label_type": 4, - "temp_entity": 26 - }, - "model": "labels.label", - "pk": 19 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Opatija, sr. Rijeka", - "label_type": 4, - "temp_entity": 26 - }, - "model": "labels.label", - "pk": 20 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Zagreb", - "label_type": 6, - "temp_entity": 133 - }, - "model": "labels.label", - "pk": 50 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Zagreb", - "label_type": 4, - "temp_entity": 133 - }, - "model": "labels.label", - "pk": 51 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Vienna", - "label_type": 6, - "temp_entity": 183 - }, - "model": "labels.label", - "pk": 67 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Wien", - "label_type": 4, - "temp_entity": 183 - }, - "model": "labels.label", - "pk": 68 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Brno", - "label_type": 6, - "temp_entity": 327 - }, - "model": "labels.label", - "pk": 108 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Brno, kr. Jihomoravský", - "label_type": 4, - "temp_entity": 327 - }, - "model": "labels.label", - "pk": 109 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Dlouhá Ves, kr. Plzeňský", - "label_type": 4, - "temp_entity": 384 - }, - "model": "labels.label", - "pk": 118 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Budapest", - "label_type": 6, - "temp_entity": 400 - }, - "model": "labels.label", - "pk": 121 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Budapest", - "label_type": 4, - "temp_entity": 400 - }, - "model": "labels.label", - "pk": 122 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Bucharest", - "label_type": 6, - "temp_entity": 831 - }, - "model": "labels.label", - "pk": 252 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bucureşti", - "label_type": 4, - "temp_entity": 831 - }, - "model": "labels.label", - "pk": 253 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Baden bei Wien", - "label_type": 6, - "temp_entity": 926 - }, - "model": "labels.label", - "pk": 287 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Baden", - "label_type": 4, - "temp_entity": 926 - }, - "model": "labels.label", - "pk": 288 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Berlin", - "label_type": 6, - "temp_entity": 1390 - }, - "model": "labels.label", - "pk": 445 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Berlin", - "label_type": 4, - "temp_entity": 1390 - }, - "model": "labels.label", - "pk": 446 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Liberec", - "label_type": 6, - "temp_entity": 1424 - }, - "model": "labels.label", - "pk": 456 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Liberec - Ostašov, kr. Liberecký", - "label_type": 4, - "temp_entity": 1424 - }, - "model": "labels.label", - "pk": 457 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bezau", - "label_type": 4, - "temp_entity": 1454 - }, - "model": "labels.label", - "pk": 466 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bodensdorf, Bez. Feldkirchen", - "label_type": 4, - "temp_entity": 1701 - }, - "model": "labels.label", - "pk": 531 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Heilbronn", - "label_type": 6, - "temp_entity": 1718 - }, - "model": "labels.label", - "pk": 536 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Heilbronn", - "label_type": 4, - "temp_entity": 1718 - }, - "model": "labels.label", - "pk": 537 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Botoşani", - "label_type": 6, - "temp_entity": 2006 - }, - "model": "labels.label", - "pk": 613 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Botoşani", - "label_type": 4, - "temp_entity": 2006 - }, - "model": "labels.label", - "pk": 614 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Bratislava", - "label_type": 6, - "temp_entity": 2072 - }, - "model": "labels.label", - "pk": 639 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bratislava", - "label_type": 4, - "temp_entity": 2072 - }, - "model": "labels.label", - "pk": 640 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bratislava", - "label_type": 4, - "temp_entity": 2072 - }, - "model": "labels.label", - "pk": 641 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Broumov", - "label_type": 6, - "temp_entity": 2085 - }, - "model": "labels.label", - "pk": 645 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Broumov, kr. Královéhradecký", - "label_type": 4, - "temp_entity": 2085 - }, - "model": "labels.label", - "pk": 646 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Broumov, kr. Královéhradecký", - "label_type": 4, - "temp_entity": 2085 - }, - "model": "labels.label", - "pk": 647 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Wrocław", - "label_type": 6, - "temp_entity": 2161 - }, - "model": "labels.label", - "pk": 669 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Wrocław", - "label_type": 4, - "temp_entity": 2161 - }, - "model": "labels.label", - "pk": 670 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Wrocław", - "label_type": 4, - "temp_entity": 2161 - }, - "model": "labels.label", - "pk": 671 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Brixen", - "label_type": 6, - "temp_entity": 2170 - }, - "model": "labels.label", - "pk": 672 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bressanone/Brixen, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 2170 - }, - "model": "labels.label", - "pk": 673 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Hradec Králové", - "label_type": 6, - "temp_entity": 2197 - }, - "model": "labels.label", - "pk": 680 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Hradec Králové - Březhrad, kr. Královéhradecký", - "label_type": 4, - "temp_entity": 2197 - }, - "model": "labels.label", - "pk": 681 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bressanone/Brixen, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 2170 - }, - "model": "labels.label", - "pk": 693 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bressanone/Brixen, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 2170 - }, - "model": "labels.label", - "pk": 694 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Brno, kr. Jihomoravský", - "label_type": 4, - "temp_entity": 327 - }, - "model": "labels.label", - "pk": 697 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Brody", - "label_type": 6, - "temp_entity": 2281 - }, - "model": "labels.label", - "pk": 704 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Brody, obl. L'viv", - "label_type": 4, - "temp_entity": 2281 - }, - "model": "labels.label", - "pk": 705 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Brno, kr. Jihomoravský", - "label_type": 4, - "temp_entity": 327 - }, - "model": "labels.label", - "pk": 713 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Brno, kr. Jihomoravský", - "label_type": 4, - "temp_entity": 327 - }, - "model": "labels.label", - "pk": 714 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Brno, kr. Jihomoravský", - "label_type": 4, - "temp_entity": 327 - }, - "model": "labels.label", - "pk": 715 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Brno, kr. Jihomoravský", - "label_type": 4, - "temp_entity": 327 - }, - "model": "labels.label", - "pk": 716 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Buenos Aires", - "label_type": 6, - "temp_entity": 2489 - }, - "model": "labels.label", - "pk": 757 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Buenos Aires", - "label_type": 4, - "temp_entity": 2489 - }, - "model": "labels.label", - "pk": 759 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bucureşti", - "label_type": 4, - "temp_entity": 831 - }, - "model": "labels.label", - "pk": 760 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bucureşti", - "label_type": 4, - "temp_entity": 831 - }, - "model": "labels.label", - "pk": 761 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 2602 - }, - "model": "labels.label", - "pk": 789 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Chernivtsi", - "label_type": 6, - "temp_entity": 2854 - }, - "model": "labels.label", - "pk": 870 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Černivci", - "label_type": 4, - "temp_entity": 2854 - }, - "model": "labels.label", - "pk": 871 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Černivci", - "label_type": 4, - "temp_entity": 2854 - }, - "model": "labels.label", - "pk": 876 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Cieszyn", - "label_type": 6, - "temp_entity": 3105 - }, - "model": "labels.label", - "pk": 944 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Cieszyn, woj. Bielsko", - "label_type": 4, - "temp_entity": 3105 - }, - "model": "labels.label", - "pk": 945 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Cluj-Napoca", - "label_type": 6, - "temp_entity": 3162 - }, - "model": "labels.label", - "pk": 962 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Cluj-Napoca, jud. Cluj", - "label_type": 4, - "temp_entity": 3162 - }, - "model": "labels.label", - "pk": 963 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Černivci", - "label_type": 4, - "temp_entity": 2854 - }, - "model": "labels.label", - "pk": 1050 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Düren", - "label_type": 6, - "temp_entity": 4096 - }, - "model": "labels.label", - "pk": 1214 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Düren", - "label_type": 4, - "temp_entity": 4096 - }, - "model": "labels.label", - "pk": 1215 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Údlice, kr. Ústecký", - "label_type": 4, - "temp_entity": 4269 - }, - "model": "labels.label", - "pk": 1268 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Graz", - "label_type": 6, - "temp_entity": 4767 - }, - "model": "labels.label", - "pk": 1412 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Graz", - "label_type": 4, - "temp_entity": 4767 - }, - "model": "labels.label", - "pk": 1413 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Freistadt", - "label_type": 6, - "temp_entity": 4877 - }, - "model": "labels.label", - "pk": 1446 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Freistadt", - "label_type": 4, - "temp_entity": 4877 - }, - "model": "labels.label", - "pk": 1447 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Ghidfalău, jud. Covasna", - "label_type": 4, - "temp_entity": 5294 - }, - "model": "labels.label", - "pk": 1560 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Marienheide", - "label_type": 4, - "temp_entity": 5308 - }, - "model": "labels.label", - "pk": 1565 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Gorizia", - "label_type": 6, - "temp_entity": 5478 - }, - "model": "labels.label", - "pk": 1619 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Gorizia, reg. Friuli - Venezia Giulia", - "label_type": 4, - "temp_entity": 5478 - }, - "model": "labels.label", - "pk": 1620 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Gorizia, reg. Friuli - Venezia Giulia", - "label_type": 4, - "temp_entity": 5478 - }, - "model": "labels.label", - "pk": 1635 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Gorizia, reg. Friuli - Venezia Giulia", - "label_type": 4, - "temp_entity": 5478 - }, - "model": "labels.label", - "pk": 1636 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Merano", - "label_type": 6, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 1670 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano - Quarazze / Meran - Gratsch, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 1671 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Grieskirchen", - "label_type": 4, - "temp_entity": 5749 - }, - "model": "labels.label", - "pk": 1691 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Velké Losiny, kr. Olomoucký", - "label_type": 4, - "temp_entity": 6004 - }, - "model": "labels.label", - "pk": 1755 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Velké Losiny, kr. Olomoucký", - "label_type": 4, - "temp_entity": 6004 - }, - "model": "labels.label", - "pk": 1756 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Hanover", - "label_type": 6, - "temp_entity": 6324 - }, - "model": "labels.label", - "pk": 1841 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Hannover", - "label_type": 4, - "temp_entity": 6324 - }, - "model": "labels.label", - "pk": 1842 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Innsbruck", - "label_type": 6, - "temp_entity": 6700 - }, - "model": "labels.label", - "pk": 1926 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Innsbruck", - "label_type": 4, - "temp_entity": 6700 - }, - "model": "labels.label", - "pk": 1927 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Hrastje, sr. Maribor", - "label_type": 4, - "temp_entity": 6947 - }, - "model": "labels.label", - "pk": 1982 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Hrastje, sr. Maribor", - "label_type": 4, - "temp_entity": 6947 - }, - "model": "labels.label", - "pk": 1983 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Brno - Brno-sever, kr. Jihomoravský", - "label_type": 4, - "temp_entity": 327 - }, - "model": "labels.label", - "pk": 2002 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Jaworzno, woj. Katowice", - "label_type": 4, - "temp_entity": 7454 - }, - "model": "labels.label", - "pk": 2108 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Leoben", - "label_type": 6, - "temp_entity": 7622 - }, - "model": "labels.label", - "pk": 2153 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Leoben", - "label_type": 4, - "temp_entity": 7622 - }, - "model": "labels.label", - "pk": 2154 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 2602 - }, - "model": "labels.label", - "pk": 2190 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 2602 - }, - "model": "labels.label", - "pk": 2191 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Kassel", - "label_type": 6, - "temp_entity": 7986 - }, - "model": "labels.label", - "pk": 2249 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Kassel", - "label_type": 4, - "temp_entity": 7986 - }, - "model": "labels.label", - "pk": 2250 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Cluj-Napoca, jud. Cluj", - "label_type": 4, - "temp_entity": 3162 - }, - "model": "labels.label", - "pk": 2340 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Cluj-Napoca, jud. Cluj", - "label_type": 4, - "temp_entity": 3162 - }, - "model": "labels.label", - "pk": 2341 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Klosterneuburg", - "label_type": 4, - "temp_entity": 8482 - }, - "model": "labels.label", - "pk": 2373 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Hradec Králové", - "label_type": 4, - "temp_entity": 2197 - }, - "model": "labels.label", - "pk": 2394 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Konstanz", - "label_type": 6, - "temp_entity": 8798 - }, - "model": "labels.label", - "pk": 2458 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Konstanz", - "label_type": 4, - "temp_entity": 8798 - }, - "model": "labels.label", - "pk": 2459 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Kufstein", - "label_type": 6, - "temp_entity": 9287 - }, - "model": "labels.label", - "pk": 2581 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Kufstein", - "label_type": 4, - "temp_entity": 9287 - }, - "model": "labels.label", - "pk": 2582 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Hradec Králové - Kukleny, kr. Královéhradecký", - "label_type": 4, - "temp_entity": 2197 - }, - "model": "labels.label", - "pk": 2585 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Brno - Brno-jih, kr. Jihomoravský", - "label_type": 4, - "temp_entity": 327 - }, - "model": "labels.label", - "pk": 2595 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Lachovice, kr. Karlovarský", - "label_type": 4, - "temp_entity": 9455 - }, - "model": "labels.label", - "pk": 2625 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Ljubljana", - "label_type": 6, - "temp_entity": 9475 - }, - "model": "labels.label", - "pk": 2632 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Ljubljana", - "label_type": 4, - "temp_entity": 9475 - }, - "model": "labels.label", - "pk": 2633 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Lviv", - "label_type": 6, - "temp_entity": 9735 - }, - "model": "labels.label", - "pk": 2711 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "L'viv", - "label_type": 4, - "temp_entity": 9735 - }, - "model": "labels.label", - "pk": 2712 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "L'viv", - "label_type": 4, - "temp_entity": 9735 - }, - "model": "labels.label", - "pk": 2713 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Linz", - "label_type": 6, - "temp_entity": 10015 - }, - "model": "labels.label", - "pk": 2789 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Linz", - "label_type": 4, - "temp_entity": 10015 - }, - "model": "labels.label", - "pk": 2790 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "City of London", - "label_type": 6, - "temp_entity": 10265 - }, - "model": "labels.label", - "pk": 2858 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "London City", - "label_type": 6, - "temp_entity": 10265 - }, - "model": "labels.label", - "pk": 2859 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "The City", - "label_type": 6, - "temp_entity": 10265 - }, - "model": "labels.label", - "pk": 2860 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "London", - "label_type": 6, - "temp_entity": 10265 - }, - "model": "labels.label", - "pk": 2861 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "London", - "label_type": 4, - "temp_entity": 10265 - }, - "model": "labels.label", - "pk": 2862 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "L'viv", - "label_type": 4, - "temp_entity": 9735 - }, - "model": "labels.label", - "pk": 2927 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "L'viv", - "label_type": 4, - "temp_entity": 9735 - }, - "model": "labels.label", - "pk": 2928 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "L'viv", - "label_type": 4, - "temp_entity": 9735 - }, - "model": "labels.label", - "pk": 2929 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Liberec - Vratislavice nad Nisou, kr. Liberecký", - "label_type": 4, - "temp_entity": 1424 - }, - "model": "labels.label", - "pk": 2951 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Liberec - Vratislavice nad Nisou, kr. Liberecký", - "label_type": 4, - "temp_entity": 1424 - }, - "model": "labels.label", - "pk": 2952 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano - Maia Bassa / Meran-Untermais", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 2963 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Maribor", - "label_type": 6, - "temp_entity": 10793 - }, - "model": "labels.label", - "pk": 3022 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Maribor", - "label_type": 4, - "temp_entity": 10793 - }, - "model": "labels.label", - "pk": 3023 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Maribor", - "label_type": 4, - "temp_entity": 10793 - }, - "model": "labels.label", - "pk": 3039 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Maribor", - "label_type": 4, - "temp_entity": 10793 - }, - "model": "labels.label", - "pk": 3040 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Maribor", - "label_type": 4, - "temp_entity": 10793 - }, - "model": "labels.label", - "pk": 3041 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano/Meran, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 3116 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano/Meran, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 3117 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano (Castello di Trautmannsdorf) / Meran (Schloß Trautmannsdorf), reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 3118 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano - Maia Alta / Meran - Obermais, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 3119 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano - Maia Bassa / Meran-Untermais", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 3120 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano/Meran, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 3121 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Stříbro, kr. Plzeňský", - "label_type": 4, - "temp_entity": 11238 - }, - "model": "labels.label", - "pk": 3158 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Moldava, kr. Ústecký", - "label_type": 4, - "temp_entity": 11556 - }, - "model": "labels.label", - "pk": 3239 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Munich", - "label_type": 6, - "temp_entity": 11799 - }, - "model": "labels.label", - "pk": 3324 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "München", - "label_type": 4, - "temp_entity": 11799 - }, - "model": "labels.label", - "pk": 3325 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Nysa", - "label_type": 6, - "temp_entity": 12211 - }, - "model": "labels.label", - "pk": 3441 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Nysa, woj. Opole", - "label_type": 4, - "temp_entity": 12211 - }, - "model": "labels.label", - "pk": 3442 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Hradec Králové - Nový Hradec Králové, kr. Královéhradecký", - "label_type": 4, - "temp_entity": 2197 - }, - "model": "labels.label", - "pk": 3491 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Liberec - Dolní Hanychov, kr. Liberecký", - "label_type": 4, - "temp_entity": 1424 - }, - "model": "labels.label", - "pk": 3549 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Nice", - "label_type": 6, - "temp_entity": 12758 - }, - "model": "labels.label", - "pk": 3580 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Nice", - "label_type": 4, - "temp_entity": 12758 - }, - "model": "labels.label", - "pk": 3581 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Brno - Brno-jih, kr. Jihomoravský", - "label_type": 4, - "temp_entity": 327 - }, - "model": "labels.label", - "pk": 3657 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Liberec - Horní Hanychov, kr. Liberecký", - "label_type": 4, - "temp_entity": 1424 - }, - "model": "labels.label", - "pk": 3663 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 3671 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano - Maia Alta / Meran-Obermais, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 3672 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Liberec - Horní Růžodol, kr. Liberecký", - "label_type": 4, - "temp_entity": 1424 - }, - "model": "labels.label", - "pk": 3681 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Brno - Maloměřice-Obřany, kr. Jihomoravský", - "label_type": 4, - "temp_entity": 327 - }, - "model": "labels.label", - "pk": 3697 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Sopron", - "label_type": 6, - "temp_entity": 13253 - }, - "model": "labels.label", - "pk": 3710 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Sopron, m. Győr-Moson-Sopron", - "label_type": 4, - "temp_entity": 13253 - }, - "model": "labels.label", - "pk": 3711 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Olomouc", - "label_type": 6, - "temp_entity": 13382 - }, - "model": "labels.label", - "pk": 3737 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Olomouc", - "label_type": 4, - "temp_entity": 13382 - }, - "model": "labels.label", - "pk": 3738 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Olomouc", - "label_type": 4, - "temp_entity": 13382 - }, - "model": "labels.label", - "pk": 3739 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Olomouc", - "label_type": 4, - "temp_entity": 13382 - }, - "model": "labels.label", - "pk": 3740 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Olomouc", - "label_type": 4, - "temp_entity": 13382 - }, - "model": "labels.label", - "pk": 3741 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Paris", - "label_type": 6, - "temp_entity": 13714 - }, - "model": "labels.label", - "pk": 3828 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Paris", - "label_type": 4, - "temp_entity": 13714 - }, - "model": "labels.label", - "pk": 3829 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Petting", - "label_type": 4, - "temp_entity": 13987 - }, - "model": "labels.label", - "pk": 3901 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Prague", - "label_type": 6, - "temp_entity": 14608 - }, - "model": "labels.label", - "pk": 4050 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Praha", - "label_type": 4, - "temp_entity": 14608 - }, - "model": "labels.label", - "pk": 4051 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Praha, kr. Hlavní město Praha", - "label_type": 4, - "temp_entity": 14608 - }, - "model": "labels.label", - "pk": 4052 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Praha", - "label_type": 4, - "temp_entity": 14608 - }, - "model": "labels.label", - "pk": 4053 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Praha", - "label_type": 4, - "temp_entity": 14608 - }, - "model": "labels.label", - "pk": 4054 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Praha", - "label_type": 4, - "temp_entity": 14608 - }, - "model": "labels.label", - "pk": 4055 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bratislava", - "label_type": 4, - "temp_entity": 2072 - }, - "model": "labels.label", - "pk": 4077 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bratislava", - "label_type": 4, - "temp_entity": 2072 - }, - "model": "labels.label", - "pk": 4078 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Liberec - Růžodol I, kr. Liberecký", - "label_type": 4, - "temp_entity": 1424 - }, - "model": "labels.label", - "pk": 4333 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Liberec - Horní Růžodol, kr. Liberecký", - "label_type": 4, - "temp_entity": 1424 - }, - "model": "labels.label", - "pk": 4334 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Liberec - Ruprechtice, kr. Liberecký", - "label_type": 4, - "temp_entity": 1424 - }, - "model": "labels.label", - "pk": 4389 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Černivci", - "label_type": 4, - "temp_entity": 2854 - }, - "model": "labels.label", - "pk": 4415 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Svätý Jur", - "label_type": 6, - "temp_entity": 16242 - }, - "model": "labels.label", - "pk": 4478 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Svätý Jur, kr. Bratislava", - "label_type": 4, - "temp_entity": 16242 - }, - "model": "labels.label", - "pk": 4479 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "St. Pankraz", - "label_type": 6, - "temp_entity": 16310 - }, - "model": "labels.label", - "pk": 4500 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "San Pancrazio / Sankt Pankraz, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 16310 - }, - "model": "labels.label", - "pk": 4501 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Štíty, kr. Olomoucký", - "label_type": 4, - "temp_entity": 16594 - }, - "model": "labels.label", - "pk": 4581 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Liberec - Krásná Studánka, kr. Liberecký", - "label_type": 4, - "temp_entity": 1424 - }, - "model": "labels.label", - "pk": 4624 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schwanberg", - "label_type": 4, - "temp_entity": 16864 - }, - "model": "labels.label", - "pk": 4652 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Wien - Sechshaus", - "label_type": 4, - "temp_entity": 183 - }, - "model": "labels.label", - "pk": 4676 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Dlouhá Ves, kr. Plzeňský", - "label_type": 4, - "temp_entity": 384 - }, - "model": "labels.label", - "pk": 4878 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Szczakowa, woj. Katowice", - "label_type": 4, - "temp_entity": 18374 - }, - "model": "labels.label", - "pk": 5025 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Szeged, m. Csongrád", - "label_type": 4, - "temp_entity": 18400 - }, - "model": "labels.label", - "pk": 5031 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Cieszyn, woj. Bielsko", - "label_type": 4, - "temp_entity": 3105 - }, - "model": "labels.label", - "pk": 5150 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Cieszyn, woj. Bielsko", - "label_type": 4, - "temp_entity": 3105 - }, - "model": "labels.label", - "pk": 5152 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Trento", - "label_type": 6, - "temp_entity": 19215 - }, - "model": "labels.label", - "pk": 5273 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Trento, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 19215 - }, - "model": "labels.label", - "pk": 5274 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Trento, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 19215 - }, - "model": "labels.label", - "pk": 5275 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Trento, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 19215 - }, - "model": "labels.label", - "pk": 5290 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Trento, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 19215 - }, - "model": "labels.label", - "pk": 5291 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Mojmírovce, kr. Nitra", - "label_type": 4, - "temp_entity": 19599 - }, - "model": "labels.label", - "pk": 5386 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Caldaro/Kaltern, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 2602 - }, - "model": "labels.label", - "pk": 5411 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano - Maia Bassa / Meran-Untermais, reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 5422 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Warsaw", - "label_type": 6, - "temp_entity": 20549 - }, - "model": "labels.label", - "pk": 5650 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Warszawa", - "label_type": 4, - "temp_entity": 20549 - }, - "model": "labels.label", - "pk": 5651 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Warszawa", - "label_type": 4, - "temp_entity": 20549 - }, - "model": "labels.label", - "pk": 5652 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Warszawa", - "label_type": 4, - "temp_entity": 20549 - }, - "model": "labels.label", - "pk": 5653 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Warszawa", - "label_type": 4, - "temp_entity": 20549 - }, - "model": "labels.label", - "pk": 5654 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Warszawa", - "label_type": 4, - "temp_entity": 20549 - }, - "model": "labels.label", - "pk": 5655 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Warszawa", - "label_type": 4, - "temp_entity": 20549 - }, - "model": "labels.label", - "pk": 5656 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bela Crkva, sr. Pančevo", - "label_type": 4, - "temp_entity": 20659 - }, - "model": "labels.label", - "pk": 5677 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bad Gastein", - "label_type": 4, - "temp_entity": 20872 - }, - "model": "labels.label", - "pk": 5726 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Wisborough Green", - "label_type": 4, - "temp_entity": 20988 - }, - "model": "labels.label", - "pk": 5758 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Wrocław", - "label_type": 4, - "temp_entity": 2161 - }, - "model": "labels.label", - "pk": 5809 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "L'viv - Znesinnja, obl. L'viv", - "label_type": 4, - "temp_entity": 9735 - }, - "model": "labels.label", - "pk": 5903 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Svitavy", - "label_type": 6, - "temp_entity": 21818 - }, - "model": "labels.label", - "pk": 5941 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Svitavy, kr. Pardubický", - "label_type": 4, - "temp_entity": 21818 - }, - "model": "labels.label", - "pk": 5942 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Jamnitz", - "label_type": 4, - "temp_entity": 22216 - }, - "model": "labels.label", - "pk": 5959 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Stronach (Lienz)", - "label_type": 4, - "temp_entity": 22259 - }, - "model": "labels.label", - "pk": 5960 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Nizza", - "label_type": 4, - "temp_entity": 12758 - }, - "model": "labels.label", - "pk": 5961 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Grünburg", - "label_type": 4, - "temp_entity": 22322 - }, - "model": "labels.label", - "pk": 5962 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Olten", - "label_type": 6, - "temp_entity": 22354 - }, - "model": "labels.label", - "pk": 5963 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Olten, Kt. Solothurn", - "label_type": 4, - "temp_entity": 22354 - }, - "model": "labels.label", - "pk": 5964 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bad Kreuznach", - "label_type": 4, - "temp_entity": 22475 - }, - "model": "labels.label", - "pk": 5965 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Lasberg", - "label_type": 4, - "temp_entity": 22494 - }, - "model": "labels.label", - "pk": 5966 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Fribourg", - "label_type": 6, - "temp_entity": 22526 - }, - "model": "labels.label", - "pk": 5967 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Fribourg", - "label_type": 4, - "temp_entity": 22526 - }, - "model": "labels.label", - "pk": 5968 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bocșa", - "label_type": 4, - "temp_entity": 22545 - }, - "model": "labels.label", - "pk": 5969 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Ludźmierz", - "label_type": 4, - "temp_entity": 22558 - }, - "model": "labels.label", - "pk": 5970 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Warszawa, woj. mazowieckie", - "label_type": 4, - "temp_entity": 20549 - }, - "model": "labels.label", - "pk": 5971 - }, - { - "fields": { - "isocode_639_3": "eng", - "label": "Vezzano", - "label_type": 6, - "temp_entity": 22570 - }, - "model": "labels.label", - "pk": 5972 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Vezzano", - "label_type": 4, - "temp_entity": 22570 - }, - "model": "labels.label", - "pk": 5973 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Thalberg, Sigismund (Fortuné François)", - "label_type": 598, - "temp_entity": 27245 - }, - "model": "labels.label", - "pk": 6951 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Fortuné François", - "label_type": 597, - "temp_entity": 27245 - }, - "model": "labels.label", - "pk": 6952 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bratislava, kr. Bratislavský", - "label_type": 4, - "temp_entity": 2072 - }, - "model": "labels.label", - "pk": 7018 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bressanone/Brixen", - "label_type": 4, - "temp_entity": 2170 - }, - "model": "labels.label", - "pk": 7161 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Wien (?)", - "label_type": 4, - "temp_entity": 183 - }, - "model": "labels.label", - "pk": 8216 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bressanone", - "label_type": 4, - "temp_entity": 2170 - }, - "model": "labels.label", - "pk": 8588 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano/Meran, reg. Trento - Alto Adige", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 9187 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Teschen/Těšín/Cieszyn", - "label_type": 4, - "temp_entity": 3105 - }, - "model": "labels.label", - "pk": 9289 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "?, kr. ?", - "label_type": 4, - "temp_entity": 14608 - }, - "model": "labels.label", - "pk": 10492 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano - ? / Meran - ? , reg. Trentino - Alto Adige", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 12551 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Ľviv (?)", - "label_type": 4, - "temp_entity": 9735 - }, - "model": "labels.label", - "pk": 12706 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bratislava (?)", - "label_type": 4, - "temp_entity": 2072 - }, - "model": "labels.label", - "pk": 13574 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Linz (?)", - "label_type": 4, - "temp_entity": 10015 - }, - "model": "labels.label", - "pk": 13859 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Gorizia, reg. Friuli-Venezia Giulia", - "label_type": 4, - "temp_entity": 5478 - }, - "model": "labels.label", - "pk": 14306 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Reicha (Rejcha), Anton (Antonín) Josef", - "label_type": 598, - "temp_entity": 46414 - }, - "model": "labels.label", - "pk": 15282 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Rejcha", - "label_type": 597, - "temp_entity": 46414 - }, - "model": "labels.label", - "pk": 15283 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Antonín Josef", - "label_type": 597, - "temp_entity": 46414 - }, - "model": "labels.label", - "pk": 15284 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Moscheles, Ignaz (Isaak)", - "label_type": 598, - "temp_entity": 56248 - }, - "model": "labels.label", - "pk": 18793 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Isaak", - "label_type": 597, - "temp_entity": 56248 - }, - "model": "labels.label", - "pk": 18794 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Gastein", - "label_type": 4, - "temp_entity": 20872 - }, - "model": "labels.label", - "pk": 20331 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Liszt, Franz von", - "label_type": 598, - "temp_entity": 62757 - }, - "model": "labels.label", - "pk": 21059 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bressanone/Brixen, reg. Trento - Alto Adige", - "label_type": 4, - "temp_entity": 2170 - }, - "model": "labels.label", - "pk": 21545 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Praha - Malá Chuchle, kr. Hlavní město Praha", - "label_type": 4, - "temp_entity": 14608 - }, - "model": "labels.label", - "pk": 21609 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Praha - Horní Počernice, kr. Hlavní město Praha", - "label_type": 4, - "temp_entity": 14608 - }, - "model": "labels.label", - "pk": 25058 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Szeged", - "label_type": 4, - "temp_entity": 18400 - }, - "model": "labels.label", - "pk": 26197 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Prag", - "label_type": 4, - "temp_entity": 14608 - }, - "model": "labels.label", - "pk": 27645 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Blahetka, Marie Leopoldine", - "label_type": 598, - "temp_entity": 88219 - }, - "model": "labels.label", - "pk": 29838 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Beethoven, Ludwig van", - "label_type": 598, - "temp_entity": 88902 - }, - "model": "labels.label", - "pk": 30089 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Freiburg/Fribourg", - "label_type": 4, - "temp_entity": 22526 - }, - "model": "labels.label", - "pk": 30728 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Merano/Meran", - "label_type": 4, - "temp_entity": 5691 - }, - "model": "labels.label", - "pk": 30935 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Stříbro", - "label_type": 4, - "temp_entity": 11238 - }, - "model": "labels.label", - "pk": 31498 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bäuerle, Friederike; Ps. Friedrich Horn", - "label_type": 598, - "temp_entity": 92412 - }, - "model": "labels.label", - "pk": 31596 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Friedrich Horn", - "label_type": 430, - "temp_entity": 92412 - }, - "model": "labels.label", - "pk": 31597 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "L’viv", - "label_type": 4, - "temp_entity": 9735 - }, - "model": "labels.label", - "pk": 31632 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Czerny (Černý), Carl", - "label_type": 598, - "temp_entity": 92603 - }, - "model": "labels.label", - "pk": 31701 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Černý", - "label_type": 597, - "temp_entity": 92603 - }, - "model": "labels.label", - "pk": 31702 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Bahr, Hermann", - "label_type": 598, - "temp_entity": 93003 - }, - "model": "labels.label", - "pk": 31766 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Czerny, Adalbert", - "label_type": 598, - "temp_entity": 93009 - }, - "model": "labels.label", - "pk": 31769 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Czetz, Johann", - "label_type": 598, - "temp_entity": 93012 - }, - "model": "labels.label", - "pk": 31770 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Czikann, Johann Jakob Heinrich", - "label_type": 598, - "temp_entity": 93015 - }, - "model": "labels.label", - "pk": 31771 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Clam-Gallas, Eduard Gf.", - "label_type": 598, - "temp_entity": 93018 - }, - "model": "labels.label", - "pk": 31772 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Clam-Martinic, Heinrich Jaroslav Gf.", - "label_type": 598, - "temp_entity": 93021 - }, - "model": "labels.label", - "pk": 31773 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Clam-Martinic, Heinrich Gf.", - "label_type": 598, - "temp_entity": 93024 - }, - "model": "labels.label", - "pk": 31774 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Claus, Karl Friedrich", - "label_type": 598, - "temp_entity": 93028 - }, - "model": "labels.label", - "pk": 31775 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Conze, Alexander", - "label_type": 598, - "temp_entity": 93031 - }, - "model": "labels.label", - "pk": 31776 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Costenoble, Karl Ludwig", - "label_type": 598, - "temp_entity": 93034 - }, - "model": "labels.label", - "pk": 31777 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Čelakovský, Jaromír", - "label_type": 598, - "temp_entity": 93044 - }, - "model": "labels.label", - "pk": 31780 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Čelakovský, Ladislav", - "label_type": 598, - "temp_entity": 93047 - }, - "model": "labels.label", - "pk": 31781 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Červený, Václav František", - "label_type": 598, - "temp_entity": 93050 - }, - "model": "labels.label", - "pk": 31782 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Charlemont, Hugo de", - "label_type": 598, - "temp_entity": 93056 - }, - "model": "labels.label", - "pk": 31783 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Chlumczanský, Wenzel Leopold von", - "label_type": 598, - "temp_entity": 93059 - }, - "model": "labels.label", - "pk": 31784 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Dumba, Konstantin Theodor", - "label_type": 598, - "temp_entity": 93065 - }, - "model": "labels.label", - "pk": 31785 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Doderer, Wilhelm von", - "label_type": 598, - "temp_entity": 93068 - }, - "model": "labels.label", - "pk": 31786 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Defregger, Franz von", - "label_type": 598, - "temp_entity": 93071 - }, - "model": "labels.label", - "pk": 31787 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Dengel, Ignaz Philipp", - "label_type": 598, - "temp_entity": 93074 - }, - "model": "labels.label", - "pk": 31788 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Holovsky, Hilde", - "label_type": 598, - "temp_entity": 93136 - }, - "model": "labels.label", - "pk": 31811 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Lorenz, Heinrich", - "label_type": 598, - "temp_entity": 93328 - }, - "model": "labels.label", - "pk": 31872 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Löwy, Julius; Ps. Von der Als", - "label_type": 598, - "temp_entity": 93337 - }, - "model": "labels.label", - "pk": 31874 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Von der Als", - "label_type": 430, - "temp_entity": 93337 - }, - "model": "labels.label", - "pk": 31875 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Lobmeyr, Josef", - "label_type": 598, - "temp_entity": 93352 - }, - "model": "labels.label", - "pk": 31879 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Lichtblau, Adolf; Ps. A. L. Blau", - "label_type": 598, - "temp_entity": 93366 - }, - "model": "labels.label", - "pk": 31883 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "A. L. Blau", - "label_type": 430, - "temp_entity": 93366 - }, - "model": "labels.label", - "pk": 31884 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Lichtblau, Ludwig", - "label_type": 598, - "temp_entity": 93369 - }, - "model": "labels.label", - "pk": 31885 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Leitgeb, Hubert", - "label_type": 598, - "temp_entity": 93378 - }, - "model": "labels.label", - "pk": 31888 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Lenhossék, Mihály Ignác von", - "label_type": 598, - "temp_entity": 93387 - }, - "model": "labels.label", - "pk": 31890 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Lefler, Heinrich", - "label_type": 598, - "temp_entity": 93393 - }, - "model": "labels.label", - "pk": 31892 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Leichter, Käthe; geb. Pick", - "label_type": 598, - "temp_entity": 93396 - }, - "model": "labels.label", - "pk": 31893 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Pick", - "label_type": 612, - "temp_entity": 93396 - }, - "model": "labels.label", - "pk": 31894 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Leidesdorf, Franz; Ps. Wallner", - "label_type": 598, - "temp_entity": 93400 - }, - "model": "labels.label", - "pk": 31895 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Wallner", - "label_type": 430, - "temp_entity": 93400 - }, - "model": "labels.label", - "pk": 31896 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Lapaine, Valentin", - "label_type": 598, - "temp_entity": 93409 - }, - "model": "labels.label", - "pk": 31899 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Langer-Schroll, Johanna; verehel. Suida und Langer", - "label_type": 598, - "temp_entity": 93415 - }, - "model": "labels.label", - "pk": 31900 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Suida und Langer", - "label_type": 606, - "temp_entity": 93415 - }, - "model": "labels.label", - "pk": 31901 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Müller, Wolf Johannes", - "label_type": 598, - "temp_entity": 93418 - }, - "model": "labels.label", - "pk": 31902 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Mörl, Maria Theresia von", - "label_type": 598, - "temp_entity": 93442 - }, - "model": "labels.label", - "pk": 31910 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Millosicz, Georg Frh. von", - "label_type": 598, - "temp_entity": 93445 - }, - "model": "labels.label", - "pk": 31911 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Miklosich, Franz von", - "label_type": 598, - "temp_entity": 93448 - }, - "model": "labels.label", - "pk": 31912 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Meithner, Karl", - "label_type": 598, - "temp_entity": 93469 - }, - "model": "labels.label", - "pk": 31917 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Margulies, Berl", - "label_type": 598, - "temp_entity": 93481 - }, - "model": "labels.label", - "pk": 31920 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Mánesová, Amalie", - "label_type": 598, - "temp_entity": 93484 - }, - "model": "labels.label", - "pk": 31921 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Mánes, Quido", - "label_type": 598, - "temp_entity": 93487 - }, - "model": "labels.label", - "pk": 31922 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Mayer, Karl", - "label_type": 598, - "temp_entity": 93510 - }, - "model": "labels.label", - "pk": 31928 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Mahl-Schedl von Alpenburg, Johann Nep.; Ps. Ritter von Alpenburg", - "label_type": 598, - "temp_entity": 93513 - }, - "model": "labels.label", - "pk": 31929 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Ritter von Alpenburg", - "label_type": 430, - "temp_entity": 93513 - }, - "model": "labels.label", - "pk": 31930 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Nováček, Rudolf", - "label_type": 598, - "temp_entity": 93516 - }, - "model": "labels.label", - "pk": 31931 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Ortmann, Rudolf", - "label_type": 598, - "temp_entity": 93540 - }, - "model": "labels.label", - "pk": 31940 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Oellacher, Josef", - "label_type": 598, - "temp_entity": 93546 - }, - "model": "labels.label", - "pk": 31942 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Poljanec, Leopold", - "label_type": 598, - "temp_entity": 93561 - }, - "model": "labels.label", - "pk": 31947 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Petzold, Emil", - "label_type": 598, - "temp_entity": 93573 - }, - "model": "labels.label", - "pk": 31950 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Peithner von Lichtenfels, Eduard", - "label_type": 598, - "temp_entity": 93588 - }, - "model": "labels.label", - "pk": 31955 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Patera, Adolf", - "label_type": 598, - "temp_entity": 93600 - }, - "model": "labels.label", - "pk": 31958 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Rumpler, Matthias", - "label_type": 598, - "temp_entity": 93609 - }, - "model": "labels.label", - "pk": 31960 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Rotter, Johann (Hans)", - "label_type": 598, - "temp_entity": 93615 - }, - "model": "labels.label", - "pk": 31961 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Hans", - "label_type": 597, - "temp_entity": 93615 - }, - "model": "labels.label", - "pk": 31962 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Revertera von Salandra, Friedrich Gf.", - "label_type": 598, - "temp_entity": 93639 - }, - "model": "labels.label", - "pk": 31969 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Reichenberger, Andreas", - "label_type": 598, - "temp_entity": 93642 - }, - "model": "labels.label", - "pk": 31970 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Reiser, Othmar", - "label_type": 598, - "temp_entity": 93645 - }, - "model": "labels.label", - "pk": 31971 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Randa, Maximilian von", - "label_type": 598, - "temp_entity": 93651 - }, - "model": "labels.label", - "pk": 31973 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Radakovič, Michael", - "label_type": 598, - "temp_entity": 93654 - }, - "model": "labels.label", - "pk": 31974 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Szigligeti, Ede (Edvárd); bis 1834 József Szathmáry", - "label_type": 598, - "temp_entity": 93657 - }, - "model": "labels.label", - "pk": 31975 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Edvárd", - "label_type": 597, - "temp_entity": 93657 - }, - "model": "labels.label", - "pk": 31976 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": " bis 1834 József Szathmáry", - "label_type": 653, - "temp_entity": 93657 - }, - "model": "labels.label", - "pk": 31977 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Szurmay von Uzsok, Sándor (Alexander) Frh.", - "label_type": 598, - "temp_entity": 93663 - }, - "model": "labels.label", - "pk": 31978 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Alexander Frh.", - "label_type": 597, - "temp_entity": 93663 - }, - "model": "labels.label", - "pk": 31979 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Stülz, Jodok", - "label_type": 598, - "temp_entity": 93678 - }, - "model": "labels.label", - "pk": 31988 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Stowasser, Otto Hellmuth", - "label_type": 598, - "temp_entity": 93684 - }, - "model": "labels.label", - "pk": 31990 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Steindler, Olga; verehel. Ehrenhaft-S.", - "label_type": 598, - "temp_entity": 93702 - }, - "model": "labels.label", - "pk": 32001 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Ehrenhaft-S.", - "label_type": 606, - "temp_entity": 93702 - }, - "model": "labels.label", - "pk": 32002 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Stein, Ernst (Ernest) Edward Aurel; Ps. Gottlieb Hellseher", - "label_type": 598, - "temp_entity": 93705 - }, - "model": "labels.label", - "pk": 32003 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Ernest Edward Aurel", - "label_type": 597, - "temp_entity": 93705 - }, - "model": "labels.label", - "pk": 32004 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Gottlieb Hellseher", - "label_type": 430, - "temp_entity": 93705 - }, - "model": "labels.label", - "pk": 32005 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Stariha, Janez Nep.", - "label_type": 598, - "temp_entity": 93714 - }, - "model": "labels.label", - "pk": 32009 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Šnjarić, Lukas", - "label_type": 598, - "temp_entity": 93748 - }, - "model": "labels.label", - "pk": 32018 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Sichulski, Kazimierz", - "label_type": 598, - "temp_entity": 93779 - }, - "model": "labels.label", - "pk": 32030 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Settari, Wilhelm Anton Maria", - "label_type": 598, - "temp_entity": 93785 - }, - "model": "labels.label", - "pk": 32032 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Sehnal, Eugen", - "label_type": 598, - "temp_entity": 93791 - }, - "model": "labels.label", - "pk": 32034 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schwartz, P. Anton Maria", - "label_type": 598, - "temp_entity": 93800 - }, - "model": "labels.label", - "pk": 32037 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schwarz, Johann", - "label_type": 598, - "temp_entity": 93803 - }, - "model": "labels.label", - "pk": 32038 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schwarz, Kaspar", - "label_type": 598, - "temp_entity": 93809 - }, - "model": "labels.label", - "pk": 32039 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schweitzer, Leopold Albrecht", - "label_type": 598, - "temp_entity": 93815 - }, - "model": "labels.label", - "pk": 32041 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schwabl, Franz", - "label_type": 598, - "temp_entity": 93818 - }, - "model": "labels.label", - "pk": 32042 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schuëcker, Edmund; eigentl. Schuöcker", - "label_type": 598, - "temp_entity": 93836 - }, - "model": "labels.label", - "pk": 32052 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schuöcker", - "label_type": 597, - "temp_entity": 93836 - }, - "model": "labels.label", - "pk": 32053 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schrödl, Leopold", - "label_type": 598, - "temp_entity": 93839 - }, - "model": "labels.label", - "pk": 32054 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schreyer, Johann", - "label_type": 598, - "temp_entity": 93854 - }, - "model": "labels.label", - "pk": 32059 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Scholz, Franz", - "label_type": 598, - "temp_entity": 93863 - }, - "model": "labels.label", - "pk": 32062 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schrammel, Johann", - "label_type": 598, - "temp_entity": 93866 - }, - "model": "labels.label", - "pk": 32063 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Scholl, Joseph", - "label_type": 598, - "temp_entity": 93878 - }, - "model": "labels.label", - "pk": 32067 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schönberger (Schoenberger), (Carl Friedrich) Adolf Frh. von", - "label_type": 598, - "temp_entity": 93891 - }, - "model": "labels.label", - "pk": 32069 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schoenberger", - "label_type": 597, - "temp_entity": 93891 - }, - "model": "labels.label", - "pk": 32070 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Carl Friedrich Frh. von", - "label_type": 597, - "temp_entity": 93891 - }, - "model": "labels.label", - "pk": 32071 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schönberger, Benno", - "label_type": 598, - "temp_entity": 93894 - }, - "model": "labels.label", - "pk": 32072 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schnitzler, Julius", - "label_type": 598, - "temp_entity": 93900 - }, - "model": "labels.label", - "pk": 32075 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schober, Alfred", - "label_type": 598, - "temp_entity": 93903 - }, - "model": "labels.label", - "pk": 32076 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schoeller, Gustav Adolph von", - "label_type": 598, - "temp_entity": 93909 - }, - "model": "labels.label", - "pk": 32079 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schmutzler, Leopold", - "label_type": 598, - "temp_entity": 93921 - }, - "model": "labels.label", - "pk": 32084 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schmidt, Joseph", - "label_type": 598, - "temp_entity": 93933 - }, - "model": "labels.label", - "pk": 32087 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schmidt, Anton", - "label_type": 598, - "temp_entity": 93940 - }, - "model": "labels.label", - "pk": 32088 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schmal, Johannes Adolf", - "label_type": 598, - "temp_entity": 93946 - }, - "model": "labels.label", - "pk": 32090 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schmidt-Beauchez, Louis", - "label_type": 598, - "temp_entity": 93955 - }, - "model": "labels.label", - "pk": 32094 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schindler, Josef", - "label_type": 598, - "temp_entity": 93958 - }, - "model": "labels.label", - "pk": 32095 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Scheu, Josef Franz Georg", - "label_type": 598, - "temp_entity": 93961 - }, - "model": "labels.label", - "pk": 32096 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schikaneder, Jakub", - "label_type": 598, - "temp_entity": 93964 - }, - "model": "labels.label", - "pk": 32097 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schell, Karl", - "label_type": 598, - "temp_entity": 93967 - }, - "model": "labels.label", - "pk": 32098 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Schenk, Samuel Leopold", - "label_type": 598, - "temp_entity": 93970 - }, - "model": "labels.label", - "pk": 32099 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Tölgyessy, Artúr", - "label_type": 598, - "temp_entity": 93988 - }, - "model": "labels.label", - "pk": 32107 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Thun und Hohenstein, Emanuel Maria Gf. von", - "label_type": 598, - "temp_entity": 93991 - }, - "model": "labels.label", - "pk": 32108 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Teschenberg, Ernst Maximilian Frh. von; eigentl. Kluger Frh. von Teschenberg Ernst", - "label_type": 598, - "temp_entity": 94003 - }, - "model": "labels.label", - "pk": 32111 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Kluger Frh. von Teschenberg Ernst", - "label_type": 597, - "temp_entity": 94003 - }, - "model": "labels.label", - "pk": 32112 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Tetmajer (Przerwa-Tetmajer), Kazimierz", - "label_type": 598, - "temp_entity": 94006 - }, - "model": "labels.label", - "pk": 32113 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Przerwa-Tetmajer", - "label_type": 597, - "temp_entity": 94006 - }, - "model": "labels.label", - "pk": 32114 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Teuber, Emmerich (genannt Imre)", - "label_type": 598, - "temp_entity": 94009 - }, - "model": "labels.label", - "pk": 32115 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "genannt Imre", - "label_type": 597, - "temp_entity": 94009 - }, - "model": "labels.label", - "pk": 32116 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Tauber, Richard; eigentl. Richard Denemy, ab 1913 Denemy-Tauber", - "label_type": 598, - "temp_entity": 94018 - }, - "model": "labels.label", - "pk": 32119 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Richard Denemy", - "label_type": 597, - "temp_entity": 94018 - }, - "model": "labels.label", - "pk": 32120 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": " ab 1913 Denemy-Tauber", - "label_type": 597, - "temp_entity": 94018 - }, - "model": "labels.label", - "pk": 32121 - }, - { - "fields": { - "isocode_639_3": "deu", - "label": "Laibach", - "label_type": 6, - "temp_entity": 9475 - }, - "model": "labels.label", - "pk": 32390 - }, - { - "fields": { - "collection": [], - "first_name": "Sigismund", - "gender": "male", - "profession": [ - 151, - 544 - ], - "text": [ - 12155, - 12156 - ], - "title": [] - }, - "model": "entities.person", - "pk": 27245 - }, - { - "fields": { - "collection": [], - "first_name": "Anton Josef", - "gender": "male", - "profession": [ - 151, - 188, - 2054 - ], - "text": [ - 21722, - 21723 - ], - "title": [] - }, - "model": "entities.person", - "pk": 46414 - }, - { - "fields": { - "collection": [], - "first_name": "Ignaz", - "gender": "male", - "profession": [ - 151, - 544 - ], - "text": [ - 27186, - 27187 - ], - "title": [] - }, - "model": "entities.person", - "pk": 56248 - }, - { - "fields": { - "collection": [], - "first_name": "Franz von", - "gender": "male", - "profession": [ - 151, - 483 - ], - "text": [ - 30762, - 30763 - ], - "title": [] - }, - "model": "entities.person", - "pk": 62757 - }, - { - "fields": { - "collection": [], - "first_name": "Marie Leopoldine", - "gender": "female", - "profession": [ - 151, - 1750 - ], - "text": [ - 44908, - 44909 - ], - "title": [] - }, - "model": "entities.person", - "pk": 88219 - }, - { - "fields": { - "collection": [], - "first_name": "Ludwig van", - "gender": "male", - "profession": [ - 151, - 483 - ], - "text": [ - 45290, - 45291 - ], - "title": [] - }, - "model": "entities.person", - "pk": 88902 - }, - { - "fields": { - "collection": [], - "first_name": "Friederike", - "gender": "female", - "profession": [ - 128, - 5578 - ], - "text": [ - 47030, - 47031 - ], - "title": [] - }, - "model": "entities.person", - "pk": 92412 - }, - { - "fields": { - "collection": [], - "first_name": "Carl", - "gender": "male", - "profession": [ - 151, - 5599 - ], - "text": [ - 47126, - 47127 - ], - "title": [] - }, - "model": "entities.person", - "pk": 92603 - }, - { - "fields": { - "collection": [], - "first_name": "Hermann", - "gender": "male", - "profession": [ - 128, - 129 - ], - "text": [ - 47200, - 47201 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93003 - }, - { - "fields": { - "collection": [], - "first_name": "Adalbert", - "gender": "male", - "profession": [ - 154, - 155 - ], - "text": [ - 47204, - 47205 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93009 - }, - { - "fields": { - "collection": [], - "first_name": "Johann", - "gender": "male", - "profession": [ - 134, - 143, - 157, - 158 - ], - "text": [ - 47206, - 47207 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93012 - }, - { - "fields": { - "collection": [], - "first_name": "Johann Jakob Heinrich", - "gender": "male", - "profession": [ - 128, - 146, - 159 - ], - "text": [ - 47208, - 47209 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93015 - }, - { - "fields": { - "collection": [], - "first_name": "Eduard Gf.", - "gender": "male", - "profession": [ - 143, - 144 - ], - "text": [ - 47210, - 47211 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93018 - }, - { - "fields": { - "collection": [], - "first_name": "Heinrich Jaroslav Gf.", - "gender": "male", - "profession": [ - 132, - 134, - 145, - 146 - ], - "text": [ - 47212, - 47213 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93021 - }, - { - "fields": { - "collection": [], - "first_name": "Heinrich Gf.", - "gender": "male", - "profession": [ - 134, - 147 - ], - "text": [ - 47214, - 47215 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93024 - }, - { - "fields": { - "collection": [], - "first_name": "Karl Friedrich", - "gender": "male", - "profession": [ - 135, - 148 - ], - "text": [ - 47216, - 47217 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93028 - }, - { - "fields": { - "collection": [], - "first_name": "Alexander", - "gender": "male", - "profession": [ - 149, - 150 - ], - "text": [ - 47218, - 47219 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93031 - }, - { - "fields": { - "collection": [], - "first_name": "Karl Ludwig", - "gender": "male", - "profession": [ - 128, - 151, - 152 - ], - "text": [ - 47220, - 47221 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93034 - }, - { - "fields": { - "collection": [], - "first_name": "Jaromír", - "gender": "male", - "profession": [ - 132, - 133, - 134 - ], - "text": [ - 47226, - 47227 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93044 - }, - { - "fields": { - "collection": [], - "first_name": "Ladislav", - "gender": "male", - "profession": [ - 135, - 136 - ], - "text": [ - 47228, - 47229 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93047 - }, - { - "fields": { - "collection": [], - "first_name": "Václav František", - "gender": "male", - "profession": [ - 137, - 138 - ], - "text": [ - 47230, - 47231 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93050 - }, - { - "fields": { - "collection": [], - "first_name": "Hugo de", - "gender": "male", - "profession": [ - 139, - 140 - ], - "text": [ - 47232, - 47233 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93056 - }, - { - "fields": { - "collection": [], - "first_name": "Wenzel Leopold von", - "gender": "male", - "profession": [ - 141, - 142 - ], - "text": [ - 47234, - 47235 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93059 - }, - { - "fields": { - "collection": [], - "first_name": "Konstantin Theodor", - "gender": "male", - "profession": [ - 146, - 162 - ], - "text": [ - 47236, - 47237 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93065 - }, - { - "fields": { - "collection": [], - "first_name": "Wilhelm von", - "gender": "male", - "profession": [ - 139, - 161 - ], - "text": [ - 47238, - 47239 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93068 - }, - { - "fields": { - "collection": [], - "first_name": "Franz von", - "gender": "male", - "profession": [ - 139, - 140 - ], - "text": [ - 47240, - 47241 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93071 - }, - { - "fields": { - "collection": [], - "first_name": "Ignaz Philipp", - "gender": "male", - "profession": [ - 149, - 160 - ], - "text": [ - 47242, - 47243 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93074 - }, - { - "fields": { - "collection": [], - "first_name": "Hilde", - "gender": "female", - "profession": [ - 163, - 164 - ], - "text": [ - 47276, - 47277 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93136 - }, - { - "fields": { - "collection": [], - "first_name": "Heinrich", - "gender": "male", - "profession": [ - 154, - 175 - ], - "text": [ - 47384, - 47385 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93328 - }, - { - "fields": { - "collection": [], - "first_name": "Julius", - "gender": "male", - "profession": [ - 128, - 174 - ], - "text": [ - 47388, - 47389 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93337 - }, - { - "fields": { - "collection": [], - "first_name": "Josef", - "gender": "male", - "profession": [ - 137, - 173 - ], - "text": [ - 47394, - 47395 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93352 - }, - { - "fields": { - "collection": [], - "first_name": "Adolf", - "gender": "male", - "profession": [ - 128, - 129 - ], - "text": [ - 47402, - 47403 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93366 - }, - { - "fields": { - "collection": [], - "first_name": "Ludwig", - "gender": "male", - "profession": [ - 132, - 172 - ], - "text": [ - 47404, - 47405 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93369 - }, - { - "fields": { - "collection": [], - "first_name": "Hubert", - "gender": "male", - "profession": [ - 135, - 136 - ], - "text": [ - 47410, - 47411 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93378 - }, - { - "fields": { - "collection": [], - "first_name": "Mihály Ignác von", - "gender": "male", - "profession": [ - 154, - 171 - ], - "text": [ - 47414, - 47415 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93387 - }, - { - "fields": { - "collection": [], - "first_name": "Heinrich", - "gender": "male", - "profession": [ - 139, - 168 - ], - "text": [ - 47418, - 47419 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93393 - }, - { - "fields": { - "collection": [], - "first_name": "Käthe", - "gender": "female", - "profession": [ - 128, - 134, - 169 - ], - "text": [ - 47420, - 47421 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93396 - }, - { - "fields": { - "collection": [], - "first_name": "Franz", - "gender": "male", - "profession": [ - 128, - 151, - 170 - ], - "text": [ - 47422, - 47423 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93400 - }, - { - "fields": { - "collection": [], - "first_name": "Valentin", - "gender": "male", - "profession": [ - 157, - 167 - ], - "text": [ - 47428, - 47429 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93409 - }, - { - "fields": { - "collection": [], - "first_name": "Johanna", - "gender": "female", - "profession": [ - 137, - 165, - 166 - ], - "text": [ - 47430, - 47431 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93415 - }, - { - "fields": { - "collection": [], - "first_name": "Wolf Johannes", - "gender": "male", - "profession": [ - 135, - 185 - ], - "text": [ - 47432, - 47433 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93418 - }, - { - "fields": { - "collection": [], - "first_name": "Maria Theresia von", - "gender": "female", - "profession": [ - 141, - 184 - ], - "text": [ - 47446, - 47447 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93442 - }, - { - "fields": { - "collection": [], - "first_name": "Georg Frh. von", - "gender": "male", - "profession": [ - 143, - 183 - ], - "text": [ - 47448, - 47449 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93445 - }, - { - "fields": { - "collection": [], - "first_name": "Franz von", - "gender": "male", - "profession": [ - 134, - 149, - 182 - ], - "text": [ - 47450, - 47451 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93448 - }, - { - "fields": { - "collection": [], - "first_name": "Karl", - "gender": "male", - "profession": [ - 134, - 180, - 181 - ], - "text": [ - 47460, - 47461 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93469 - }, - { - "fields": { - "collection": [], - "first_name": "Berl", - "gender": "male", - "profession": [ - 151, - 179 - ], - "text": [ - 47466, - 47467 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93481 - }, - { - "fields": { - "collection": [], - "first_name": "Amalie", - "gender": "female", - "profession": [ - 139, - 178 - ], - "text": [ - 47468, - 47469 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93484 - }, - { - "fields": { - "collection": [], - "first_name": "Quido", - "gender": "male", - "profession": [ - 139, - 140 - ], - "text": [ - 47470, - 47471 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93487 - }, - { - "fields": { - "collection": [], - "first_name": "Karl", - "gender": "male", - "profession": [ - 128, - 177 - ], - "text": [ - 47482, - 47483 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93510 - }, - { - "fields": { - "collection": [], - "first_name": "Johann Nep.", - "gender": "male", - "profession": [ - 128, - 134, - 176 - ], - "text": [ - 47484, - 47485 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93513 - }, - { - "fields": { - "collection": [], - "first_name": "Rudolf", - "gender": "male", - "profession": [ - 151, - 186 - ], - "text": [ - 47486, - 47487 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93516 - }, - { - "fields": { - "collection": [], - "first_name": "Rudolf", - "gender": "male", - "profession": [ - 188, - 189 - ], - "text": [ - 47502, - 47503 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93540 - }, - { - "fields": { - "collection": [], - "first_name": "Josef", - "gender": "male", - "profession": [ - 135, - 187 - ], - "text": [ - 47506, - 47507 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93546 - }, - { - "fields": { - "collection": [], - "first_name": "Leopold", - "gender": "male", - "profession": [ - 135, - 188, - 193 - ], - "text": [ - 47516, - 47517 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93561 - }, - { - "fields": { - "collection": [], - "first_name": "Emil", - "gender": "male", - "profession": [ - 149, - 192 - ], - "text": [ - 47522, - 47523 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93573 - }, - { - "fields": { - "collection": [], - "first_name": "Eduard", - "gender": "male", - "profession": [ - 139, - 191 - ], - "text": [ - 47530, - 47531 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93588 - }, - { - "fields": { - "collection": [], - "first_name": "Adolf", - "gender": "male", - "profession": [ - 135, - 190 - ], - "text": [ - 47536, - 47537 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93600 - }, - { - "fields": { - "collection": [], - "first_name": "Matthias", - "gender": "male", - "profession": [ - 128, - 141, - 200 - ], - "text": [ - 47540, - 47541 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93609 - }, - { - "fields": { - "collection": [], - "first_name": "Johann", - "gender": "male", - "profession": [ - 134, - 137, - 149, - 199 - ], - "text": [ - 47542, - 47543 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93615 - }, - { - "fields": { - "collection": [], - "first_name": "Friedrich Gf.", - "gender": "male", - "profession": [ - 134, - 146, - 198 - ], - "text": [ - 47556, - 47557 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93639 - }, - { - "fields": { - "collection": [], - "first_name": "Andreas", - "gender": "male", - "profession": [ - 141, - 196 - ], - "text": [ - 47558, - 47559 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93642 - }, - { - "fields": { - "collection": [], - "first_name": "Othmar", - "gender": "male", - "profession": [ - 135, - 197 - ], - "text": [ - 47560, - 47561 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93645 - }, - { - "fields": { - "collection": [], - "first_name": "Maximilian von", - "gender": "male", - "profession": [ - 143, - 146, - 195 - ], - "text": [ - 47564, - 47565 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93651 - }, - { - "fields": { - "collection": [], - "first_name": "Michael", - "gender": "male", - "profession": [ - 135, - 194 - ], - "text": [ - 47566, - 47567 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93654 - }, - { - "fields": { - "collection": [], - "first_name": "Ede", - "gender": "male", - "profession": [ - 128, - 151, - 230 - ], - "text": [ - 47568, - 47569 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93657 - }, - { - "fields": { - "collection": [], - "first_name": "Sándor Frh.", - "gender": "male", - "profession": [ - 134, - 143, - 231 - ], - "text": [ - 47570, - 47571 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93663 - }, - { - "fields": { - "collection": [], - "first_name": "Jodok", - "gender": "male", - "profession": [ - 141, - 149, - 229 - ], - "text": [ - 47580, - 47581 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93678 - }, - { - "fields": { - "collection": [], - "first_name": "Otto Hellmuth", - "gender": "male", - "profession": [ - 146, - 149, - 228 - ], - "text": [ - 47584, - 47585 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93684 - }, - { - "fields": { - "collection": [], - "first_name": "Olga", - "gender": "female", - "profession": [ - 135, - 188, - 226 - ], - "text": [ - 47594, - 47595 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93702 - }, - { - "fields": { - "collection": [], - "first_name": "Ernst Edward Aurel", - "gender": "male", - "profession": [ - 149, - 227 - ], - "text": [ - 47596, - 47597 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93705 - }, - { - "fields": { - "collection": [], - "first_name": "Janez Nep.", - "gender": "male", - "profession": [ - 141, - 225 - ], - "text": [ - 47602, - 47603 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93714 - }, - { - "fields": { - "collection": [], - "first_name": "Lukas", - "gender": "male", - "profession": [ - 143, - 224 - ], - "text": [ - 47614, - 47615 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93748 - }, - { - "fields": { - "collection": [], - "first_name": "Kazimierz", - "gender": "male", - "profession": [ - 139, - 223 - ], - "text": [ - 47626, - 47627 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93779 - }, - { - "fields": { - "collection": [], - "first_name": "Wilhelm Anton Maria", - "gender": "male", - "profession": [ - 139, - 140 - ], - "text": [ - 47630, - 47631 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93785 - }, - { - "fields": { - "collection": [], - "first_name": "Eugen", - "gender": "male", - "profession": [ - 139, - 161 - ], - "text": [ - 47634, - 47635 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93791 - }, - { - "fields": { - "collection": [], - "first_name": "P. Anton Maria", - "gender": "male", - "profession": [ - 141, - 219 - ], - "text": [ - 47640, - 47641 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93800 - }, - { - "fields": { - "collection": [], - "first_name": "Johann", - "gender": "male", - "profession": [ - 149, - 188, - 220 - ], - "text": [ - 47642, - 47643 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93803 - }, - { - "fields": { - "collection": [], - "first_name": "Kaspar", - "gender": "male", - "profession": [ - 134, - 137, - 221 - ], - "text": [ - 47644, - 47645 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93809 - }, - { - "fields": { - "collection": [], - "first_name": "Leopold Albrecht", - "gender": "male", - "profession": [ - 128, - 222 - ], - "text": [ - 47648, - 47649 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93815 - }, - { - "fields": { - "collection": [], - "first_name": "Franz", - "gender": "male", - "profession": [ - 217, - 218 - ], - "text": [ - 47650, - 47651 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93818 - }, - { - "fields": { - "collection": [], - "first_name": "Edmund", - "gender": "male", - "profession": [ - 151, - 216 - ], - "text": [ - 47660, - 47661 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93836 - }, - { - "fields": { - "collection": [], - "first_name": "Leopold", - "gender": "male", - "profession": [ - 139, - 215 - ], - "text": [ - 47662, - 47663 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93839 - }, - { - "fields": { - "collection": [], - "first_name": "Johann", - "gender": "male", - "profession": [ - 157, - 167 - ], - "text": [ - 47672, - 47673 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93854 - }, - { - "fields": { - "collection": [], - "first_name": "Franz", - "gender": "male", - "profession": [ - 154, - 202 - ], - "text": [ - 47676, - 47677 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93863 - }, - { - "fields": { - "collection": [], - "first_name": "Johann", - "gender": "male", - "profession": [ - 151, - 214 - ], - "text": [ - 47678, - 47679 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93866 - }, - { - "fields": { - "collection": [], - "first_name": "Joseph", - "gender": "male", - "profession": [ - 132, - 134, - 213 - ], - "text": [ - 47684, - 47685 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93878 - }, - { - "fields": { - "collection": [], - "first_name": "Adolf Frh. von", - "gender": "male", - "profession": [ - 143, - 146, - 211 - ], - "text": [ - 47688, - 47689 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93891 - }, - { - "fields": { - "collection": [], - "first_name": "Benno", - "gender": "male", - "profession": [ - 151, - 212 - ], - "text": [ - 47690, - 47691 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93894 - }, - { - "fields": { - "collection": [], - "first_name": "Julius", - "gender": "male", - "profession": [ - 154, - 208 - ], - "text": [ - 47694, - 47695 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93900 - }, - { - "fields": { - "collection": [], - "first_name": "Alfred", - "gender": "male", - "profession": [ - 132, - 146, - 209 - ], - "text": [ - 47696, - 47697 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93903 - }, - { - "fields": { - "collection": [], - "first_name": "Gustav Adolph von", - "gender": "male", - "profession": [ - 137, - 210 - ], - "text": [ - 47700, - 47701 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93909 - }, - { - "fields": { - "collection": [], - "first_name": "Leopold", - "gender": "male", - "profession": [ - 139, - 140 - ], - "text": [ - 47706, - 47707 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93921 - }, - { - "fields": { - "collection": [], - "first_name": "Joseph", - "gender": "male", - "profession": [ - 151, - 207 - ], - "text": [ - 47712, - 47713 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93933 - }, - { - "fields": { - "collection": [], - "first_name": "Anton", - "gender": "male", - "profession": [ - 134, - 137, - 206 - ], - "text": [ - 47714, - 47715 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93940 - }, - { - "fields": { - "collection": [], - "first_name": "Johannes Adolf", - "gender": "male", - "profession": [ - 128, - 174 - ], - "text": [ - 47718, - 47719 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93946 - }, - { - "fields": { - "collection": [], - "first_name": "Louis", - "gender": "male", - "profession": [ - 128, - 188, - 205 - ], - "text": [ - 47724, - 47725 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93955 - }, - { - "fields": { - "collection": [], - "first_name": "Josef", - "gender": "male", - "profession": [ - 149, - 204 - ], - "text": [ - 47726, - 47727 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93958 - }, - { - "fields": { - "collection": [], - "first_name": "Josef Franz Georg", - "gender": "male", - "profession": [ - 128, - 151, - 203 - ], - "text": [ - 47728, - 47729 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93961 - }, - { - "fields": { - "collection": [], - "first_name": "Jakub", - "gender": "male", - "profession": [ - 139, - 140 - ], - "text": [ - 47730, - 47731 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93964 - }, - { - "fields": { - "collection": [], - "first_name": "Karl", - "gender": "male", - "profession": [ - 137, - 201 - ], - "text": [ - 47732, - 47733 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93967 - }, - { - "fields": { - "collection": [], - "first_name": "Samuel Leopold", - "gender": "male", - "profession": [ - 154, - 202 - ], - "text": [ - 47734, - 47735 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93970 - }, - { - "fields": { - "collection": [], - "first_name": "Artúr", - "gender": "male", - "profession": [ - 139, - 140 - ], - "text": [ - 47746, - 47747 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93988 - }, - { - "fields": { - "collection": [], - "first_name": "Emanuel Maria Gf. von", - "gender": "male", - "profession": [ - 141, - 235 - ], - "text": [ - 47748, - 47749 - ], - "title": [] - }, - "model": "entities.person", - "pk": 93991 - }, - { - "fields": { - "collection": [], - "first_name": "Ernst Maximilian Frh. von", - "gender": "male", - "profession": [ - 128, - 146, - 233 - ], - "text": [ - 47754, - 47755 - ], - "title": [] - }, - "model": "entities.person", - "pk": 94003 - }, - { - "fields": { - "collection": [], - "first_name": "Kazimierz", - "gender": "male", - "profession": [ - 128, - 129 - ], - "text": [ - 47756, - 47757 - ], - "title": [] - }, - "model": "entities.person", - "pk": 94006 - }, - { - "fields": { - "collection": [], - "first_name": "Emmerich", - "gender": "male", - "profession": [ - 166, - 234 - ], - "text": [ - 47758, - 47759 - ], - "title": [] - }, - "model": "entities.person", - "pk": 94009 - }, - { - "fields": { - "collection": [], - "first_name": "Richard", - "gender": "male", - "profession": [ - 151, - 232 - ], - "text": [ - 47764, - 47765 - ], - "title": [] - }, - "model": "entities.person", - "pk": 94018 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 45.33917, - "lng": 14.30833, - "text": [ - 11225 - ] - }, - "model": "entities.place", - "pk": 26 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": 45.81444, - "lng": 15.97798, - "text": [ - 11275 - ] - }, - "model": "entities.place", - "pk": 133 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": 48.20849, - "lng": 16.37208, - "text": [ - 11203 - ] - }, - "model": "entities.place", - "pk": 183 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 49.19522, - "lng": 16.60796, - "text": [ - 11259 - ] - }, - "model": "entities.place", - "pk": 327 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 49.19627, - "lng": 13.50926, - "text": [ - 11284 - ] - }, - "model": "entities.place", - "pk": 384 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": 47.49801, - "lng": 19.03991, - "text": [ - 11223 - ] - }, - "model": "entities.place", - "pk": 400 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": 44.43225, - "lng": 26.10626, - "text": [ - 11242, - 11243 - ] - }, - "model": "entities.place", - "pk": 831 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 48.00543, - "lng": 16.23264, - "text": [ - 11313, - 11314 - ] - }, - "model": "entities.place", - "pk": 926 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": 52.52437, - "lng": 13.41053, - "text": [ - 11226, - 11227 - ] - }, - "model": "entities.place", - "pk": 1390 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 50.76711, - "lng": 15.05619, - "text": [ - 11258 - ] - }, - "model": "entities.place", - "pk": 1424 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 47.38478, - "lng": 9.90139, - "text": [ - 11337, - 11338 - ] - }, - "model": "entities.place", - "pk": 1454 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 46.69111, - "lng": 13.97111, - "text": [ - 11271 - ] - }, - "model": "entities.place", - "pk": 1701 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 49.13995, - "lng": 9.22054, - "text": [ - 11269, - 11270 - ] - }, - "model": "entities.place", - "pk": 1718 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 47.75, - "lng": 26.66667, - "text": [ - 11251 - ] - }, - "model": "entities.place", - "pk": 2006 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": 48.14816, - "lng": 17.10674, - "text": [ - 11220 - ] - }, - "model": "entities.place", - "pk": 2072 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 50.58566, - "lng": 16.33181, - "text": [ - 11272 - ] - }, - "model": "entities.place", - "pk": 2085 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 51.1, - "lng": 17.03333, - "text": [ - 11199 - ] - }, - "model": "entities.place", - "pk": 2161 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 46.71503, - "lng": 11.65598, - "text": [ - 11279 - ] - }, - "model": "entities.place", - "pk": 2170 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 50.20923, - "lng": 15.83277, - "text": [ - 11204 - ] - }, - "model": "entities.place", - "pk": 2197 - }, - { - "fields": { - "collection": [], - "kind": 11, - "lat": 50.08791, - "lng": 25.15027, - "text": [ - 11244, - 11245 - ] - }, - "model": "entities.place", - "pk": 2281 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": -34.61315, - "lng": -58.37723, - "text": [ - 11256, - 11257 - ] - }, - "model": "entities.place", - "pk": 2489 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 46.41326, - "lng": 11.24616, - "text": [ - 11252 - ] - }, - "model": "entities.place", - "pk": 2602 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 48.29149, - "lng": 25.94034, - "text": [ - 11224 - ] - }, - "model": "entities.place", - "pk": 2854 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 49.75133, - "lng": 18.63213, - "text": [ - 11260 - ] - }, - "model": "entities.place", - "pk": 3105 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 46.76667, - "lng": 23.6, - "text": [ - 11330 - ] - }, - "model": "entities.place", - "pk": 3162 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 50.80434, - "lng": 6.49299, - "text": [ - 11299, - 11300 - ] - }, - "model": "entities.place", - "pk": 4096 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 50.4406, - "lng": 13.45738, - "text": [ - 11231 - ] - }, - "model": "entities.place", - "pk": 4269 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 47.06667, - "lng": 15.45, - "text": [ - 11210, - 11211 - ] - }, - "model": "entities.place", - "pk": 4767 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 48.51103, - "lng": 14.50453, - "text": [ - 11319, - 11320 - ] - }, - "model": "entities.place", - "pk": 4877 - }, - { - "fields": { - "collection": [], - "kind": 11, - "lat": 45.9, - "lng": 25.85, - "text": [ - 11246 - ] - }, - "model": "entities.place", - "pk": 5294 - }, - { - "fields": { - "collection": [], - "kind": 10, - "lat": 51.08317, - "lng": 7.53087, - "text": [ - 11289, - 11290 - ] - }, - "model": "entities.place", - "pk": 5308 - }, - { - "fields": { - "collection": [], - "kind": 11, - "lat": 45.94088, - "lng": 13.62167, - "text": [ - 11303 - ] - }, - "model": "entities.place", - "pk": 5478 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 46.66817, - "lng": 11.15953, - "text": [ - 11326 - ] - }, - "model": "entities.place", - "pk": 5691 - }, - { - "fields": { - "collection": [], - "kind": 11, - "lat": 48.23333, - "lng": 13.83333, - "text": [ - 11229, - 11230 - ] - }, - "model": "entities.place", - "pk": 5749 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 50.03197, - "lng": 17.04058, - "text": [ - 11294 - ] - }, - "model": "entities.place", - "pk": 6004 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 52.37052, - "lng": 9.73322, - "text": [ - 11221, - 11222 - ] - }, - "model": "entities.place", - "pk": 6324 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 47.26266, - "lng": 11.39454, - "text": [ - 11235, - 11236 - ] - }, - "model": "entities.place", - "pk": 6700 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 46.61472, - "lng": 16.08583, - "text": [ - 11278 - ] - }, - "model": "entities.place", - "pk": 6947 - }, - { - "fields": { - "collection": [], - "kind": 11, - "lat": 50.20528, - "lng": 19.27498, - "text": [ - 11336 - ] - }, - "model": "entities.place", - "pk": 7454 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 47.3765, - "lng": 15.09144, - "text": [ - 11249, - 11250 - ] - }, - "model": "entities.place", - "pk": 7622 - }, - { - "fields": { - "collection": [], - "kind": 11, - "lat": 51.31667, - "lng": 9.5, - "text": [ - 11218, - 11219 - ] - }, - "model": "entities.place", - "pk": 7986 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 48.30521, - "lng": 16.32522, - "text": [ - 11322, - 11323 - ] - }, - "model": "entities.place", - "pk": 8482 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 47.66033, - "lng": 9.17582, - "text": [ - 11301, - 11302 - ] - }, - "model": "entities.place", - "pk": 8798 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 47.58333, - "lng": 12.16667, - "text": [ - 11324, - 11325 - ] - }, - "model": "entities.place", - "pk": 9287 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 50.08364, - "lng": 13.03925, - "text": [ - 11288 - ] - }, - "model": "entities.place", - "pk": 9455 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": 46.05108, - "lng": 14.50513, - "text": [ - 11331 - ] - }, - "model": "entities.place", - "pk": 9475 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 49.83826, - "lng": 24.02324, - "text": [ - 11263 - ] - }, - "model": "entities.place", - "pk": 9735 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 48.30639, - "lng": 14.28611, - "text": [ - 11195, - 11196 - ] - }, - "model": "entities.place", - "pk": 10015 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": 51.50853, - "lng": -0.12574, - "text": [ - 11239, - 11240 - ] - }, - "model": "entities.place", - "pk": 10265 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 46.55472, - "lng": 15.64667, - "text": [ - 11266 - ] - }, - "model": "entities.place", - "pk": 10793 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 49.75565, - "lng": 12.997, - "text": [ - 11234 - ] - }, - "model": "entities.place", - "pk": 11238 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 50.72063, - "lng": 13.65723, - "text": [ - 11308 - ] - }, - "model": "entities.place", - "pk": 11556 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 48.13743, - "lng": 11.57549, - "text": [ - 11197, - 11198 - ] - }, - "model": "entities.place", - "pk": 11799 - }, - { - "fields": { - "collection": [], - "kind": 11, - "lat": 50.47379, - "lng": 17.33437, - "text": [ - 11321 - ] - }, - "model": "entities.place", - "pk": 12211 - }, - { - "fields": { - "collection": [], - "kind": 11, - "lat": 43.70313, - "lng": 7.26608, - "text": [ - 11205 - ] - }, - "model": "entities.place", - "pk": 12758 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 47.68501, - "lng": 16.59049, - "text": [ - 11344 - ] - }, - "model": "entities.place", - "pk": 13253 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 49.59552, - "lng": 17.25175, - "text": [ - 11228 - ] - }, - "model": "entities.place", - "pk": 13382 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": 48.85341, - "lng": 2.3488, - "text": [ - 11291, - 11292 - ] - }, - "model": "entities.place", - "pk": 13714 - }, - { - "fields": { - "collection": [], - "kind": 10, - "lat": 47.91232, - "lng": 12.81512, - "text": [ - 11280, - 11281 - ] - }, - "model": "entities.place", - "pk": 13987 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": 50.08804, - "lng": 14.42076, - "text": [ - 11200 - ] - }, - "model": "entities.place", - "pk": 14608 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 48.25216, - "lng": 17.21539, - "text": [ - 11214 - ] - }, - "model": "entities.place", - "pk": 16242 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 46.586, - "lng": 11.08571, - "text": [ - 11327 - ] - }, - "model": "entities.place", - "pk": 16310 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 49.96122, - "lng": 16.76576, - "text": [ - 11293 - ] - }, - "model": "entities.place", - "pk": 16594 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 46.75833, - "lng": 15.20833, - "text": [ - 11286, - 11287 - ] - }, - "model": "entities.place", - "pk": 16864 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 50.2421, - "lng": 19.30725, - "text": [ - 11241 - ] - }, - "model": "entities.place", - "pk": 18374 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 46.253, - "lng": 20.14824, - "text": [ - 11351 - ] - }, - "model": "entities.place", - "pk": 18400 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 46.06787, - "lng": 11.12108, - "text": [ - 11348 - ] - }, - "model": "entities.place", - "pk": 19215 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 48.20735, - "lng": 18.06581, - "text": [ - 11285 - ] - }, - "model": "entities.place", - "pk": 19599 - }, - { - "fields": { - "collection": [], - "kind": 12, - "lat": 52.22977, - "lng": 21.01178, - "text": [ - 11345 - ] - }, - "model": "entities.place", - "pk": 20549 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 44.8975, - "lng": 21.41722, - "text": [ - 11255 - ] - }, - "model": "entities.place", - "pk": 20659 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 47.11547, - "lng": 13.13467, - "text": [ - 11339 - ] - }, - "model": "entities.place", - "pk": 20872 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 51.02308, - "lng": -0.50604, - "text": [ - 11304, - 11305 - ] - }, - "model": "entities.place", - "pk": 20988 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 49.75594, - "lng": 16.46829, - "text": [ - 11215 - ] - }, - "model": "entities.place", - "pk": 21818 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 49.01898, - "lng": 15.56994, - "text": [ - 11206, - 11207 - ] - }, - "model": "entities.place", - "pk": 22216 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 46.83333, - "lng": 12.85, - "text": [ - 11261, - 11262 - ] - }, - "model": "entities.place", - "pk": 22259 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 47.97234, - "lng": 14.26472, - "text": [ - 11237, - 11238 - ] - }, - "model": "entities.place", - "pk": 22322 - }, - { - "fields": { - "collection": [], - "kind": 11, - "lat": 47.34999, - "lng": 7.90329, - "text": [ - 11253, - 11254 - ] - }, - "model": "entities.place", - "pk": 22354 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 49.8414, - "lng": 7.86713, - "text": [ - 11311, - 11312 - ] - }, - "model": "entities.place", - "pk": 22475 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 48.47121, - "lng": 14.54023, - "text": [ - 11317, - 11318 - ] - }, - "model": "entities.place", - "pk": 22494 - }, - { - "fields": { - "collection": [], - "kind": 13, - "lat": 46.80237, - "lng": 7.15128, - "text": [ - 11334, - 11335 - ] - }, - "model": "entities.place", - "pk": 22526 - }, - { - "fields": { - "collection": [], - "kind": 11, - "lat": 45.37333, - "lng": 21.70917, - "text": [ - 11342, - 11343 - ] - }, - "model": "entities.place", - "pk": 22545 - }, - { - "fields": { - "collection": [], - "kind": 9, - "lat": 49.46656, - "lng": 19.9825, - "text": [ - 11346, - 11347 - ] - }, - "model": "entities.place", - "pk": 22558 - }, - { - "fields": { - "collection": [], - "kind": 5, - "lat": 46.07867, - "lng": 10.99735, - "text": [ - 11349, - 11350 - ] - }, - "model": "entities.place", - "pk": 22570 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93025 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93035 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93051 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93060 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93075 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93379 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93397 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93410 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93449 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93562 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93610 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93658 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93715 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93749 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93804 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93855 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93879 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93934 - }, - { - "fields": { - "collection": [], - "kind": null, - "lat": null, - "lng": null, - "text": [] - }, - "model": "entities.place", - "pk": 93937 - }, - { - "fields": { - "collection": [ - 22 - ], - "homepage": "", - "kind": 5775, - "text": [] - }, - "model": "entities.institution", - "pk": 99861 - }, - { - "fields": { - "collection": [ - 22 - ], - "kind": 380, - "text": [] - }, - "model": "entities.event", - "pk": 99856 - }, - { - "fields": { - "collection": [ - 22 - ], - "kind": 429, - "text": [] - }, - "model": "entities.work", - "pk": 99872 - }, - { - "fields": { - "name": "ProfessionType" - }, - "model": "vocabularies.vocabnames", - "pk": 1 - }, - { - "fields": { - "name": "PersonPlaceRelation" - }, - "model": "vocabularies.vocabnames", - "pk": 2 - }, - { - "fields": { - "name": "LabelType" - }, - "model": "vocabularies.vocabnames", - "pk": 3 - }, - { - "fields": { - "name": "PersonInstitutionRelation" - }, - "model": "vocabularies.vocabnames", - "pk": 4 - }, - { - "fields": { - "name": "InstitutionInstitutionRelation" - }, - "model": "vocabularies.vocabnames", - "pk": 5 - }, - { - "fields": { - "name": "PersonPersonRelation" - }, - "model": "vocabularies.vocabnames", - "pk": 6 - }, - { - "fields": { - "name": "TextType" - }, - "model": "vocabularies.vocabnames", - "pk": 7 - }, - { - "fields": { - "name": "InstitutionPlaceRelation" - }, - "model": "vocabularies.vocabnames", - "pk": 8 - }, - { - "fields": { - "name": "InstitutionType" - }, - "model": "vocabularies.vocabnames", - "pk": 9 - }, - { - "fields": { - "name": "PlaceType" - }, - "model": "vocabularies.vocabnames", - "pk": 10 - }, - { - "fields": { - "name": "CollectionType" - }, - "model": "vocabularies.vocabnames", - "pk": 11 - }, - { - "fields": { - "name": "PersonWorkRelation" - }, - "model": "vocabularies.vocabnames", - "pk": 12 - }, - { - "fields": { - "name": "PlaceEventRelation" - }, - "model": "vocabularies.vocabnames", - "pk": 13 - }, - { - "fields": { - "name": "InstitutionEventRelation" - }, - "model": "vocabularies.vocabnames", - "pk": 14 - }, - { - "fields": { - "name": "InstitutionWorkRelation" - }, - "model": "vocabularies.vocabnames", - "pk": 15 - }, - { - "fields": { - "name": "PlaceWorkRelation" - }, - "model": "vocabularies.vocabnames", - "pk": 16 - }, - { - "fields": { - "name": "EventWorkRelation" - }, - "model": "vocabularies.vocabnames", - "pk": 17 - }, - { - "fields": { - "collection": [], - "related_persona": 92412, - "related_personb": 92603, - "relation_type": 5608, - "text": [] - }, - "model": "relations.personperson", - "pk": 92840 - }, - { - "fields": { - "collection": [], - "related_persona": 92603, - "related_personb": 88902, - "relation_type": 5608, - "text": [] - }, - "model": "relations.personperson", - "pk": 92930 - }, - { - "fields": { - "collection": [], - "related_persona": 92603, - "related_personb": 27245, - "relation_type": 5608, - "text": [] - }, - "model": "relations.personperson", - "pk": 92931 - }, - { - "fields": { - "collection": [], - "related_persona": 92603, - "related_personb": 88219, - "relation_type": 5608, - "text": [] - }, - "model": "relations.personperson", - "pk": 92932 - }, - { - "fields": { - "collection": [], - "related_persona": 92603, - "related_personb": 62757, - "relation_type": 5608, - "text": [] - }, - "model": "relations.personperson", - "pk": 92933 - }, - { - "fields": { - "collection": [], - "related_persona": 92603, - "related_personb": 56248, - "relation_type": 5608, - "text": [] - }, - "model": "relations.personperson", - "pk": 92934 - }, - { - "fields": { - "collection": [], - "related_persona": 92603, - "related_personb": 46414, - "relation_type": 5608, - "text": [] - }, - "model": "relations.personperson", - "pk": 92935 - }, - { - "fields": { - "collection": [], - "related_person": 46414, - "related_place": 14608, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 46415 - }, - { - "fields": { - "collection": [], - "related_person": 46414, - "related_place": 13714, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 46416 - }, - { - "fields": { - "collection": [], - "related_person": 56248, - "related_place": 14608, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 56249 - }, - { - "fields": { - "collection": [], - "related_person": 88902, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 88904 - }, - { - "fields": { - "collection": [], - "related_person": 92412, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 92415 - }, - { - "fields": { - "collection": [], - "related_person": 92603, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 92604 - }, - { - "fields": { - "collection": [], - "related_person": 92603, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 92605 - }, - { - "fields": { - "collection": [], - "related_person": 93003, - "related_place": 10015, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93004 - }, - { - "fields": { - "collection": [], - "related_person": 93003, - "related_place": 11799, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93005 - }, - { - "fields": { - "collection": [], - "related_person": 93009, - "related_place": 18374, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93010 - }, - { - "fields": { - "collection": [], - "related_person": 93009, - "related_place": 1390, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93011 - }, - { - "fields": { - "collection": [], - "related_person": 93012, - "related_place": 5294, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93013 - }, - { - "fields": { - "collection": [], - "related_person": 93012, - "related_place": 2489, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93014 - }, - { - "fields": { - "collection": [], - "related_person": 93015, - "related_place": 327, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93016 - }, - { - "fields": { - "collection": [], - "related_person": 93015, - "related_place": 327, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93017 - }, - { - "fields": { - "collection": [], - "related_person": 93018, - "related_place": 14608, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93019 - }, - { - "fields": { - "collection": [], - "related_person": 93018, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93020 - }, - { - "fields": { - "collection": [], - "related_person": 93021, - "related_place": 16242, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93022 - }, - { - "fields": { - "collection": [], - "related_person": 93021, - "related_place": 14608, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93023 - }, - { - "fields": { - "collection": [], - "related_person": 93024, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93026 - }, - { - "fields": { - "collection": [], - "related_person": 93024, - "related_place": 93025, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93027 - }, - { - "fields": { - "collection": [], - "related_person": 93028, - "related_place": 7986, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93029 - }, - { - "fields": { - "collection": [], - "related_person": 93028, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93030 - }, - { - "fields": { - "collection": [], - "related_person": 93031, - "related_place": 6324, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93032 - }, - { - "fields": { - "collection": [], - "related_person": 93031, - "related_place": 1390, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93033 - }, - { - "fields": { - "collection": [], - "related_person": 93034, - "related_place": 93035, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93036 - }, - { - "fields": { - "collection": [], - "related_person": 93034, - "related_place": 14608, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93037 - }, - { - "fields": { - "collection": [], - "related_person": 93044, - "related_place": 2161, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93045 - }, - { - "fields": { - "collection": [], - "related_person": 93044, - "related_place": 14608, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93046 - }, - { - "fields": { - "collection": [], - "related_person": 93047, - "related_place": 14608, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93048 - }, - { - "fields": { - "collection": [], - "related_person": 93047, - "related_place": 14608, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93049 - }, - { - "fields": { - "collection": [], - "related_person": 93050, - "related_place": 93051, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93054 - }, - { - "fields": { - "collection": [], - "related_person": 93050, - "related_place": 2197, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93055 - }, - { - "fields": { - "collection": [], - "related_person": 93056, - "related_place": 22216, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93057 - }, - { - "fields": { - "collection": [], - "related_person": 93056, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93058 - }, - { - "fields": { - "collection": [], - "related_person": 93059, - "related_place": 93060, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93063 - }, - { - "fields": { - "collection": [], - "related_person": 93059, - "related_place": 14608, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93064 - }, - { - "fields": { - "collection": [], - "related_person": 93065, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93066 - }, - { - "fields": { - "collection": [], - "related_person": 93065, - "related_place": 1701, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93067 - }, - { - "fields": { - "collection": [], - "related_person": 93068, - "related_place": 1718, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93069 - }, - { - "fields": { - "collection": [], - "related_person": 93068, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93070 - }, - { - "fields": { - "collection": [], - "related_person": 93071, - "related_place": 22259, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93072 - }, - { - "fields": { - "collection": [], - "related_person": 93071, - "related_place": 11799, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93073 - }, - { - "fields": { - "collection": [], - "related_person": 93074, - "related_place": 93075, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93078 - }, - { - "fields": { - "collection": [], - "related_person": 93074, - "related_place": 6700, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93079 - }, - { - "fields": { - "collection": [], - "related_person": 93136, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93137 - }, - { - "fields": { - "collection": [], - "related_person": 93136, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93138 - }, - { - "fields": { - "collection": [], - "related_person": 93328, - "related_place": 11238, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93329 - }, - { - "fields": { - "collection": [], - "related_person": 93328, - "related_place": 4767, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93330 - }, - { - "fields": { - "collection": [], - "related_person": 93337, - "related_place": 4269, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93338 - }, - { - "fields": { - "collection": [], - "related_person": 93337, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93339 - }, - { - "fields": { - "collection": [], - "related_person": 93352, - "related_place": 5749, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93353 - }, - { - "fields": { - "collection": [], - "related_person": 93352, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93354 - }, - { - "fields": { - "collection": [], - "related_person": 93366, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93367 - }, - { - "fields": { - "collection": [], - "related_person": 93366, - "related_place": 26, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93368 - }, - { - "fields": { - "collection": [], - "related_person": 93369, - "related_place": 13382, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93370 - }, - { - "fields": { - "collection": [], - "related_person": 93369, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93371 - }, - { - "fields": { - "collection": [], - "related_person": 93378, - "related_place": 93379, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93382 - }, - { - "fields": { - "collection": [], - "related_person": 93378, - "related_place": 4767, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93383 - }, - { - "fields": { - "collection": [], - "related_person": 93387, - "related_place": 2072, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93388 - }, - { - "fields": { - "collection": [], - "related_person": 93387, - "related_place": 400, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93389 - }, - { - "fields": { - "collection": [], - "related_person": 93393, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93394 - }, - { - "fields": { - "collection": [], - "related_person": 93393, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93395 - }, - { - "fields": { - "collection": [], - "related_person": 93396, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93398 - }, - { - "fields": { - "collection": [], - "related_person": 93396, - "related_place": 93397, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93399 - }, - { - "fields": { - "collection": [], - "related_person": 93400, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93401 - }, - { - "fields": { - "collection": [], - "related_person": 93400, - "related_place": 12758, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93402 - }, - { - "fields": { - "collection": [], - "related_person": 93409, - "related_place": 93410, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93413 - }, - { - "fields": { - "collection": [], - "related_person": 93409, - "related_place": 133, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93414 - }, - { - "fields": { - "collection": [], - "related_person": 93415, - "related_place": 2085, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93416 - }, - { - "fields": { - "collection": [], - "related_person": 93415, - "related_place": 2085, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93417 - }, - { - "fields": { - "collection": [], - "related_person": 93418, - "related_place": 22354, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93419 - }, - { - "fields": { - "collection": [], - "related_person": 93418, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93420 - }, - { - "fields": { - "collection": [], - "related_person": 93442, - "related_place": 2602, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93443 - }, - { - "fields": { - "collection": [], - "related_person": 93442, - "related_place": 2602, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93444 - }, - { - "fields": { - "collection": [], - "related_person": 93445, - "related_place": 2006, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93446 - }, - { - "fields": { - "collection": [], - "related_person": 93445, - "related_place": 7622, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93447 - }, - { - "fields": { - "collection": [], - "related_person": 93448, - "related_place": 93449, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93452 - }, - { - "fields": { - "collection": [], - "related_person": 93448, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93453 - }, - { - "fields": { - "collection": [], - "related_person": 93469, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93470 - }, - { - "fields": { - "collection": [], - "related_person": 93469, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93471 - }, - { - "fields": { - "collection": [], - "related_person": 93481, - "related_place": 2281, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93482 - }, - { - "fields": { - "collection": [], - "related_person": 93481, - "related_place": 831, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93483 - }, - { - "fields": { - "collection": [], - "related_person": 93484, - "related_place": 14608, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93485 - }, - { - "fields": { - "collection": [], - "related_person": 93484, - "related_place": 14608, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93486 - }, - { - "fields": { - "collection": [], - "related_person": 93487, - "related_place": 14608, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93488 - }, - { - "fields": { - "collection": [], - "related_person": 93487, - "related_place": 14608, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93489 - }, - { - "fields": { - "collection": [], - "related_person": 93510, - "related_place": 4767, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93511 - }, - { - "fields": { - "collection": [], - "related_person": 93510, - "related_place": 10265, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93512 - }, - { - "fields": { - "collection": [], - "related_person": 93513, - "related_place": 22322, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93514 - }, - { - "fields": { - "collection": [], - "related_person": 93513, - "related_place": 6700, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93515 - }, - { - "fields": { - "collection": [], - "related_person": 93516, - "related_place": 20659, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93517 - }, - { - "fields": { - "collection": [], - "related_person": 93516, - "related_place": 14608, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93518 - }, - { - "fields": { - "collection": [], - "related_person": 93540, - "related_place": 1424, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93541 - }, - { - "fields": { - "collection": [], - "related_person": 93540, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93542 - }, - { - "fields": { - "collection": [], - "related_person": 93546, - "related_place": 2072, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93547 - }, - { - "fields": { - "collection": [], - "related_person": 93546, - "related_place": 6700, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93548 - }, - { - "fields": { - "collection": [], - "related_person": 93561, - "related_place": 93562, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93565 - }, - { - "fields": { - "collection": [], - "related_person": 93561, - "related_place": 10793, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93566 - }, - { - "fields": { - "collection": [], - "related_person": 93573, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93574 - }, - { - "fields": { - "collection": [], - "related_person": 93573, - "related_place": 9735, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93575 - }, - { - "fields": { - "collection": [], - "related_person": 93588, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93589 - }, - { - "fields": { - "collection": [], - "related_person": 93588, - "related_place": 1390, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93590 - }, - { - "fields": { - "collection": [], - "related_person": 93600, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93601 - }, - { - "fields": { - "collection": [], - "related_person": 93600, - "related_place": 3105, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93602 - }, - { - "fields": { - "collection": [], - "related_person": 93609, - "related_place": 13987, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93613 - }, - { - "fields": { - "collection": [], - "related_person": 93609, - "related_place": 93610, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93614 - }, - { - "fields": { - "collection": [], - "related_person": 93615, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93616 - }, - { - "fields": { - "collection": [], - "related_person": 93615, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93617 - }, - { - "fields": { - "collection": [], - "related_person": 93639, - "related_place": 9735, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93640 - }, - { - "fields": { - "collection": [], - "related_person": 93639, - "related_place": 2170, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93641 - }, - { - "fields": { - "collection": [], - "related_person": 93642, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93643 - }, - { - "fields": { - "collection": [], - "related_person": 93642, - "related_place": 10015, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93644 - }, - { - "fields": { - "collection": [], - "related_person": 93645, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93646 - }, - { - "fields": { - "collection": [], - "related_person": 93645, - "related_place": 6947, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93647 - }, - { - "fields": { - "collection": [], - "related_person": 93651, - "related_place": 21818, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93652 - }, - { - "fields": { - "collection": [], - "related_person": 93651, - "related_place": 2854, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93653 - }, - { - "fields": { - "collection": [], - "related_person": 93654, - "related_place": 4767, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93655 - }, - { - "fields": { - "collection": [], - "related_person": 93654, - "related_place": 4767, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93656 - }, - { - "fields": { - "collection": [], - "related_person": 93657, - "related_place": 93658, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93661 - }, - { - "fields": { - "collection": [], - "related_person": 93657, - "related_place": 400, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93662 - }, - { - "fields": { - "collection": [], - "related_person": 93663, - "related_place": 22545, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93664 - }, - { - "fields": { - "collection": [], - "related_person": 93663, - "related_place": 400, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93665 - }, - { - "fields": { - "collection": [], - "related_person": 93678, - "related_place": 1454, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93679 - }, - { - "fields": { - "collection": [], - "related_person": 93678, - "related_place": 20872, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93680 - }, - { - "fields": { - "collection": [], - "related_person": 93684, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93685 - }, - { - "fields": { - "collection": [], - "related_person": 93684, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93686 - }, - { - "fields": { - "collection": [], - "related_person": 93702, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93703 - }, - { - "fields": { - "collection": [], - "related_person": 93702, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93704 - }, - { - "fields": { - "collection": [], - "related_person": 93705, - "related_place": 7454, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93706 - }, - { - "fields": { - "collection": [], - "related_person": 93705, - "related_place": 22526, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93707 - }, - { - "fields": { - "collection": [], - "related_person": 93714, - "related_place": 93715, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93718 - }, - { - "fields": { - "collection": [], - "related_person": 93714, - "related_place": 9475, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93719 - }, - { - "fields": { - "collection": [], - "related_person": 93748, - "related_place": 93749, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93752 - }, - { - "fields": { - "collection": [], - "related_person": 93748, - "related_place": 3162, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93753 - }, - { - "fields": { - "collection": [], - "related_person": 93779, - "related_place": 9735, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93780 - }, - { - "fields": { - "collection": [], - "related_person": 93779, - "related_place": 9735, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93781 - }, - { - "fields": { - "collection": [], - "related_person": 93785, - "related_place": 16310, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93786 - }, - { - "fields": { - "collection": [], - "related_person": 93785, - "related_place": 5691, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93787 - }, - { - "fields": { - "collection": [], - "related_person": 93791, - "related_place": 9287, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93792 - }, - { - "fields": { - "collection": [], - "related_person": 93791, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93793 - }, - { - "fields": { - "collection": [], - "related_person": 93800, - "related_place": 926, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93801 - }, - { - "fields": { - "collection": [], - "related_person": 93800, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93802 - }, - { - "fields": { - "collection": [], - "related_person": 93803, - "related_place": 93804, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93807 - }, - { - "fields": { - "collection": [], - "related_person": 93803, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93808 - }, - { - "fields": { - "collection": [], - "related_person": 93809, - "related_place": 22494, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93810 - }, - { - "fields": { - "collection": [], - "related_person": 93809, - "related_place": 4877, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93811 - }, - { - "fields": { - "collection": [], - "related_person": 93815, - "related_place": 12211, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93816 - }, - { - "fields": { - "collection": [], - "related_person": 93815, - "related_place": 8482, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93817 - }, - { - "fields": { - "collection": [], - "related_person": 93818, - "related_place": 926, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93819 - }, - { - "fields": { - "collection": [], - "related_person": 93818, - "related_place": 926, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93820 - }, - { - "fields": { - "collection": [], - "related_person": 93836, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93837 - }, - { - "fields": { - "collection": [], - "related_person": 93836, - "related_place": 22475, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93838 - }, - { - "fields": { - "collection": [], - "related_person": 93839, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93840 - }, - { - "fields": { - "collection": [], - "related_person": 93839, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93841 - }, - { - "fields": { - "collection": [], - "related_person": 93854, - "related_place": 93855, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93858 - }, - { - "fields": { - "collection": [], - "related_person": 93854, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93859 - }, - { - "fields": { - "collection": [], - "related_person": 93863, - "related_place": 11556, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93864 - }, - { - "fields": { - "collection": [], - "related_person": 93863, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93865 - }, - { - "fields": { - "collection": [], - "related_person": 93866, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93867 - }, - { - "fields": { - "collection": [], - "related_person": 93866, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93868 - }, - { - "fields": { - "collection": [], - "related_person": 93878, - "related_place": 93879, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93880 - }, - { - "fields": { - "collection": [], - "related_person": 93878, - "related_place": 4767, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93881 - }, - { - "fields": { - "collection": [], - "related_person": 93891, - "related_place": 8798, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93892 - }, - { - "fields": { - "collection": [], - "related_person": 93891, - "related_place": 5478, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93893 - }, - { - "fields": { - "collection": [], - "related_person": 93894, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93895 - }, - { - "fields": { - "collection": [], - "related_person": 93894, - "related_place": 20988, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93896 - }, - { - "fields": { - "collection": [], - "related_person": 93900, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93901 - }, - { - "fields": { - "collection": [], - "related_person": 93900, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93902 - }, - { - "fields": { - "collection": [], - "related_person": 93903, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93904 - }, - { - "fields": { - "collection": [], - "related_person": 93903, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93905 - }, - { - "fields": { - "collection": [], - "related_person": 93909, - "related_place": 4096, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93910 - }, - { - "fields": { - "collection": [], - "related_person": 93909, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93911 - }, - { - "fields": { - "collection": [], - "related_person": 93921, - "related_place": 11238, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93922 - }, - { - "fields": { - "collection": [], - "related_person": 93921, - "related_place": 11799, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93923 - }, - { - "fields": { - "collection": [], - "related_person": 93933, - "related_place": 93934, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93938 - }, - { - "fields": { - "collection": [], - "related_person": 93933, - "related_place": 93937, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93939 - }, - { - "fields": { - "collection": [], - "related_person": 93940, - "related_place": 16594, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93941 - }, - { - "fields": { - "collection": [], - "related_person": 93940, - "related_place": 6004, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93942 - }, - { - "fields": { - "collection": [], - "related_person": 93946, - "related_place": 5308, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93947 - }, - { - "fields": { - "collection": [], - "related_person": 93946, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93948 - }, - { - "fields": { - "collection": [], - "related_person": 93955, - "related_place": 13714, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93956 - }, - { - "fields": { - "collection": [], - "related_person": 93955, - "related_place": 14608, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93957 - }, - { - "fields": { - "collection": [], - "related_person": 93958, - "related_place": 9455, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93959 - }, - { - "fields": { - "collection": [], - "related_person": 93958, - "related_place": 14608, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93960 - }, - { - "fields": { - "collection": [], - "related_person": 93961, - "related_place": 183, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93962 - }, - { - "fields": { - "collection": [], - "related_person": 93961, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93963 - }, - { - "fields": { - "collection": [], - "related_person": 93964, - "related_place": 14608, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93965 - }, - { - "fields": { - "collection": [], - "related_person": 93964, - "related_place": 14608, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93966 - }, - { - "fields": { - "collection": [], - "related_person": 93967, - "related_place": 384, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93968 - }, - { - "fields": { - "collection": [], - "related_person": 93967, - "related_place": 384, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93969 - }, - { - "fields": { - "collection": [], - "related_person": 93970, - "related_place": 19599, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93971 - }, - { - "fields": { - "collection": [], - "related_person": 93970, - "related_place": 16864, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93972 - }, - { - "fields": { - "collection": [], - "related_person": 93988, - "related_place": 18400, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93989 - }, - { - "fields": { - "collection": [], - "related_person": 93988, - "related_place": 400, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93990 - }, - { - "fields": { - "collection": [], - "related_person": 93991, - "related_place": 19215, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 93992 - }, - { - "fields": { - "collection": [], - "related_person": 93991, - "related_place": 22570, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 93993 - }, - { - "fields": { - "collection": [], - "related_person": 94003, - "related_place": 13253, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 94004 - }, - { - "fields": { - "collection": [], - "related_person": 94003, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 94005 - }, - { - "fields": { - "collection": [], - "related_person": 94006, - "related_place": 22558, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 94007 - }, - { - "fields": { - "collection": [], - "related_person": 94006, - "related_place": 20549, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 94008 - }, - { - "fields": { - "collection": [], - "related_person": 94009, - "related_place": 14608, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 94010 - }, - { - "fields": { - "collection": [], - "related_person": 94009, - "related_place": 183, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 94011 - }, - { - "fields": { - "collection": [], - "related_person": 94018, - "related_place": 10015, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 94019 - }, - { - "fields": { - "collection": [], - "related_person": 94018, - "related_place": 10265, - "relation_type": 596, - "text": [] - }, - "model": "relations.personplace", - "pk": 94020 - }, - { - "fields": { - "collection": [], - "related_person": null, - "related_place": null, - "relation_type": 595, - "text": [] - }, - "model": "relations.personplace", - "pk": 98116 - }, - { - "fields": { - "collection": [], - "related_institution": null, - "related_person": null, - "relation_type": null, - "text": [] - }, - "model": "relations.personinstitution", - "pk": 99591 - }, - { - "fields": { - "collection": [], - "related_event": 99856, - "related_person": 93034, - "relation_type": 398, - "text": [] - }, - "model": "relations.personevent", - "pk": 99857 - }, - { - "fields": { - "collection": [], - "related_event": 99856, - "related_institution": 99861, - "relation_type": 5774, - "text": [] - }, - "model": "relations.institutionevent", - "pk": 99862 - }, - { - "fields": { - "collection": [], - "related_event": 99856, - "related_place": 183, - "relation_type": 5773, - "text": [] - }, - "model": "relations.placeevent", - "pk": 99859 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Opatija", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11225 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 26 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Zagreb", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11275 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 133 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Wien", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11203 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 183 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Brünn", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11259 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 327 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Dlouhá Ves", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11284 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 384 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Budapest", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11223 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 400 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Bukarest", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11242, - 11243 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 831 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Baden", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11313, - 11314 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 926 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Berlin", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11226, - 11227 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 1390 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Liberec", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11258 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 1424 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Bezau", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11337, - 11338 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 1454 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Bodensdorf", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11271 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 1701 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Heilbronn", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11269, - 11270 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 1718 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Botoşani", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11251 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 2006 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Pressburg", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11220 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 2072 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Braunau", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11272 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 2085 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Breslau", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11199 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 2161 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Brixen", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11279 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 2170 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Königgrätz", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11204 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 2197 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Brody", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11244, - 11245 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 2281 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Buenos Aires", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11256, - 11257 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 2489 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Kaltern an der Weinstrasse", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11252 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 2602 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Tschernowitz", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11224 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 2854 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Teschen", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11260 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 3105 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Klausenburg", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11330 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 3162 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Düren", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11299, - 11300 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 4096 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Údlice", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11231 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 4269 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Graz", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11210, - 11211 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 4767 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Freistadt", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11319, - 11320 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 4877 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Ghidfalău", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11246 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 5294 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Marienheide", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11289, - 11290 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 5308 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Görz", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11303 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 5478 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Meran", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11326 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 5691 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Grieskirchen", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11229, - 11230 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 5749 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Grossullersdorf", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11294 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 6004 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Hannover", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11221, - 11222 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 6324 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Innsbruck", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11235, - 11236 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 6700 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Hrastje-Mota", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11278 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 6947 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Jaworzno", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11336 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 7454 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Leoben", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11249, - 11250 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 7622 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Cassel", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11218, - 11219 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 7986 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Klosterneuburg", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11322, - 11323 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 8482 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Konstanz", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11301, - 11302 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 8798 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Kufstein", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11324, - 11325 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 9287 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Lachovice", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11288 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 9455 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Ljubljana", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11331 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 9475 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Lemberg", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11263 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 9735 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Linz", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11195, - 11196 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 10015 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "London", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11239, - 11240 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 10265 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Marburg an der Drau", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11266 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 10793 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Mies", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11234 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 11238 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Moldava", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11308 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 11556 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "München", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11197, - 11198 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 11799 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Nysa", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11321 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 12211 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Nizza", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11205 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 12758 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Sopron", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11344 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 13253 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Olmütz", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11228 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 13382 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Paris", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11291, - 11292 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 13714 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Petting", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11280, - 11281 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 13987 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Prag", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11200 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 14608 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Svätý Jur", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11214 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 16242 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Sankt Pankraz", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11327 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 16310 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Štíty", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11293 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 16594 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Schwanberg", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11286, - 11287 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 16864 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Szczakowa", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11241 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 18374 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Szegedin", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11351 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 18400 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Trient", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11348 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 19215 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Mojmírovce", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11285 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 19599 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Warschau", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11345 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 20549 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Weißkirchen", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11255 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 20659 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Bad Gastein", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11339 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 20872 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Wisborough Green", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11304, - 11305 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 20988 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Zwittau", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11215 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 21818 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Jamnitz", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11206, - 11207 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 22216 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Stronach", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11261, - 11262 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 22259 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Grünburg", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11237, - 11238 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 22322 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Olten", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11253, - 11254 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 22354 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Bad Kreuznach", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11311, - 11312 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 22475 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Lasberg", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11317, - 11318 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 22494 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Freiburg", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11334, - 11335 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 22526 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Bocşa", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11342, - 11343 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 22545 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Ludźmierz", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11346, - 11347 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 22558 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "Vezzano", - "notes": null, - "references": null, - "review": true, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [ - 11349, - 11350 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 22570 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 24156 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 24696 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 24697 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 24698 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 24699 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 24835 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 24860 - }, - { - "fields": { - "collection": [], - "end_date": "1871-04-27", - "end_date_written": "27.4.1871", - "name": "Thalberg", - "notes": null, - "references": null, - "review": false, - "source": 531, - "start_date": "1812-01-08", - "start_date_written": "8.1.1812", - "status": "", - "text": [ - 12155, - 12156 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 27245 - }, - { - "fields": { - "collection": [], - "end_date": "1836-05-28", - "end_date_written": "28.5.1836", - "name": "Reicha", - "notes": null, - "references": null, - "review": false, - "source": 5804, - "start_date": "1770-02-26", - "start_date_written": "26.2.1770", - "status": "", - "text": [ - 21722, - 21723 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 46414 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 46415 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 46416 - }, - { - "fields": { - "collection": [], - "end_date": "1870-03-10", - "end_date_written": "10.3.1870", - "name": "Moscheles", - "notes": null, - "references": null, - "review": false, - "source": 8543, - "start_date": "1794-05-23", - "start_date_written": "23.5.1794", - "status": "", - "text": [ - 27186, - 27187 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 56248 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 56249 - }, - { - "fields": { - "collection": [], - "end_date": "1886-07-31", - "end_date_written": "31.7.1886", - "name": "Liszt", - "notes": null, - "references": null, - "review": false, - "source": 10332, - "start_date": "1811-10-22", - "start_date_written": "22.10.1811", - "status": "", - "text": [ - 30762, - 30763 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 62757 - }, - { - "fields": { - "collection": [], - "end_date": "1885-01-01", - "end_date_written": "1.1.1885", - "name": "Blahetka", - "notes": null, - "references": null, - "review": false, - "source": 17415, - "start_date": "1810-11-15", - "start_date_written": "15.11.1810", - "status": "", - "text": [ - 44908, - 44909 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 88219 - }, - { - "fields": { - "collection": [], - "end_date": "1827-03-26", - "end_date_written": "26.3.1827", - "name": "Beethoven", - "notes": null, - "references": null, - "review": false, - "source": 17608, - "start_date": "1770-12-16", - "start_date_written": "16.12.1770", - "status": "", - "text": [ - 45290, - 45291 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 88902 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 88904 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 91062 - }, - { - "fields": { - "collection": [], - "end_date": "1896-07-17", - "end_date_written": "17.7.1896", - "name": "Bäuerle", - "notes": null, - "references": null, - "review": false, - "source": 17852, - "start_date": "1817-12-11", - "start_date_written": "11.12.1817", - "status": "", - "text": [ - 47030, - 47031 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 92412 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 92415 - }, - { - "fields": { - "collection": [], - "end_date": "1857-07-15", - "end_date_written": "15.7.1857", - "name": "Czerny", - "notes": null, - "references": null, - "review": false, - "source": 18525, - "start_date": "1791-02-21", - "start_date_written": "21.2.1791", - "status": "", - "text": [ - 47126, - 47127 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 92603 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 92604 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 92605 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 92840 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 92930 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 92931 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 92932 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 92933 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 92934 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 92935 - }, - { - "fields": { - "collection": [], - "end_date": "1934-01-14", - "end_date_written": "14.1.1934", - "name": "Bahr", - "notes": null, - "references": null, - "review": false, - "source": 102, - "start_date": "1863-07-19", - "start_date_written": "19.7.1863", - "status": "", - "text": [ - 47200, - 47201 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93003 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93004 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93005 - }, - { - "fields": { - "collection": [], - "end_date": "1941-10-03", - "end_date_written": "3.10.1941", - "name": "Czerny", - "notes": null, - "references": null, - "review": false, - "source": 114, - "start_date": "1863-03-25", - "start_date_written": "25.3.1863", - "status": "", - "text": [ - 47204, - 47205 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93009 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93010 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93011 - }, - { - "fields": { - "collection": [], - "end_date": "1904-09-06", - "end_date_written": "6.9.1904", - "name": "Czetz", - "notes": null, - "references": null, - "review": false, - "source": 116, - "start_date": "1822-06-08", - "start_date_written": "8.6.1822", - "status": "", - "text": [ - 47206, - 47207 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93012 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93013 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93014 - }, - { - "fields": { - "collection": [], - "end_date": "1855-06-10", - "end_date_written": "10.6.1855", - "name": "Czikann", - "notes": null, - "references": null, - "review": false, - "source": 117, - "start_date": "1789-07-10", - "start_date_written": "10.7.1789", - "status": "", - "text": [ - 47208, - 47209 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93015 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93016 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93017 - }, - { - "fields": { - "collection": [], - "end_date": "1891-03-17", - "end_date_written": "17.3.1891", - "name": "Clam-Gallas", - "notes": null, - "references": null, - "review": false, - "source": 108, - "start_date": "1805-03-11", - "start_date_written": "11.3.1805", - "status": "", - "text": [ - 47210, - 47211 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93018 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93019 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93020 - }, - { - "fields": { - "collection": [], - "end_date": "1887-06-05", - "end_date_written": "5.6.1887", - "name": "Clam-Martinic", - "notes": null, - "references": null, - "review": false, - "source": 109, - "start_date": "1826-06-15", - "start_date_written": "15.6.1826", - "status": "", - "text": [ - 47212, - 47213 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93021 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93022 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93023 - }, - { - "fields": { - "collection": [], - "end_date": "1932-03-07", - "end_date_written": "7.3.1932", - "name": "Clam-Martinic", - "notes": null, - "references": null, - "review": false, - "source": 110, - "start_date": "1863-01-01", - "start_date_written": "1.1.1863", - "status": "", - "text": [ - 47214, - 47215 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93024 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Clam (Grein)", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93025 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93026 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93027 - }, - { - "fields": { - "collection": [], - "end_date": "1899-01-18", - "end_date_written": "18.1.1899", - "name": "Claus", - "notes": null, - "references": null, - "review": false, - "source": 111, - "start_date": "1835-01-02", - "start_date_written": "2.1.1835", - "status": "", - "text": [ - 47216, - 47217 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93028 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93029 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93030 - }, - { - "fields": { - "collection": [], - "end_date": "1914-07-19", - "end_date_written": "19.7.1914", - "name": "Conze", - "notes": null, - "references": null, - "review": false, - "source": 112, - "start_date": "1831-12-10", - "start_date_written": "10.12.1831", - "status": "", - "text": [ - 47218, - 47219 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93031 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93032 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93033 - }, - { - "fields": { - "collection": [], - "end_date": "1837-08-28", - "end_date_written": "28.8.1837", - "name": "Costenoble", - "notes": null, - "references": null, - "review": false, - "source": 113, - "start_date": "1769-12-25", - "start_date_written": "25.12.1769", - "status": "", - "text": [ - 47220, - 47221 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93034 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Herford, Westfalen", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93035 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93036 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93037 - }, - { - "fields": { - "collection": [], - "end_date": "1914-10-16", - "end_date_written": "16.10.1914", - "name": "Čelakovský", - "notes": null, - "references": null, - "review": false, - "source": 103, - "start_date": "1846-03-21", - "start_date_written": "21.3.1846", - "status": "", - "text": [ - 47226, - 47227 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93044 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93045 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93046 - }, - { - "fields": { - "collection": [], - "end_date": "1902-11-24", - "end_date_written": "24.11.1902", - "name": "Čelakovský", - "notes": null, - "references": null, - "review": false, - "source": 104, - "start_date": "1834-11-29", - "start_date_written": "29.11.1834", - "status": "", - "text": [ - 47228, - 47229 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93047 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93048 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93049 - }, - { - "fields": { - "collection": [], - "end_date": "1896-01-19", - "end_date_written": "19.1.1896", - "name": "Červený", - "notes": null, - "references": null, - "review": false, - "source": 105, - "start_date": "1819-09-27", - "start_date_written": "27.9.1819", - "status": "", - "text": [ - 47230, - 47231 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93050 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Praha-Dubeč, kr. Hlavní město Praha", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93051 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93054 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93055 - }, - { - "fields": { - "collection": [], - "end_date": "1939-03-18", - "end_date_written": "18.3.1939", - "name": "Charlemont", - "notes": null, - "references": null, - "review": false, - "source": 106, - "start_date": "1850-03-18", - "start_date_written": "18.3.1850", - "status": "", - "text": [ - 47232, - 47233 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93056 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93057 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93058 - }, - { - "fields": { - "collection": [], - "end_date": "1830-06-14", - "end_date_written": "14.6.1830", - "name": "Chlumczanský", - "notes": null, - "references": null, - "review": false, - "source": 107, - "start_date": "1749-11-15", - "start_date_written": "15.11.1749", - "status": "", - "text": [ - 47234, - 47235 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93059 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Hoštice, kr. Jihočeský", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "ambigue", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93060 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93063 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93064 - }, - { - "fields": { - "collection": [], - "end_date": "1947-01-06", - "end_date_written": "6.1.1947", - "name": "Dumba", - "notes": null, - "references": null, - "review": false, - "source": 121, - "start_date": "1856-06-17", - "start_date_written": "17.6.1856", - "status": "", - "text": [ - 47236, - 47237 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93065 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93066 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93067 - }, - { - "fields": { - "collection": [], - "end_date": "1900-05-13", - "end_date_written": "13.5.1900", - "name": "Doderer", - "notes": null, - "references": null, - "review": false, - "source": 120, - "start_date": "1825-01-02", - "start_date_written": "2.1.1825", - "status": "", - "text": [ - 47238, - 47239 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93068 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93069 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93070 - }, - { - "fields": { - "collection": [], - "end_date": "1921-01-02", - "end_date_written": "2.1.1921", - "name": "Defregger", - "notes": null, - "references": null, - "review": false, - "source": 118, - "start_date": "1835-04-30", - "start_date_written": "30.4.1835", - "status": "", - "text": [ - 47240, - 47241 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93071 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93072 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93073 - }, - { - "fields": { - "collection": [], - "end_date": "1947-09-09", - "end_date_written": "9.9.1947", - "name": "Dengel", - "notes": null, - "references": null, - "review": false, - "source": 119, - "start_date": "1872-06-22", - "start_date_written": "22.6.1872", - "status": "", - "text": [ - 47242, - 47243 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93074 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Elbigenalp-Untergiblen", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93075 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93078 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93079 - }, - { - "fields": { - "collection": [], - "end_date": "1933-07-03", - "end_date_written": "3.7.1933", - "name": "Holovsky", - "notes": null, - "references": null, - "review": false, - "source": 122, - "start_date": "1917-04-29", - "start_date_written": "29.4.1917", - "status": "", - "text": [ - 47276, - 47277 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93136 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93137 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93138 - }, - { - "fields": { - "collection": [], - "end_date": "1945-03-25", - "end_date_written": "25.3.1945", - "name": "Lorenz", - "notes": null, - "references": null, - "review": false, - "source": 134, - "start_date": "1859-04-13", - "start_date_written": "13.4.1859", - "status": "", - "text": [ - 47384, - 47385 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93328 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93329 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93330 - }, - { - "fields": { - "collection": [], - "end_date": "1905-12-27", - "end_date_written": "27.12.1905", - "name": "Löwy", - "notes": null, - "references": null, - "review": false, - "source": 133, - "start_date": "1851-09-14", - "start_date_written": "14.9.1851", - "status": "", - "text": [ - 47388, - 47389 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93337 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93338 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93339 - }, - { - "fields": { - "collection": [], - "end_date": "1855-05-08", - "end_date_written": "8.5.1855", - "name": "Lobmeyr", - "notes": null, - "references": null, - "review": false, - "source": 132, - "start_date": "1792-03-17", - "start_date_written": "17.3.1792", - "status": "", - "text": [ - 47394, - 47395 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93352 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93353 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93354 - }, - { - "fields": { - "collection": [], - "end_date": "1908-05-10", - "end_date_written": "10.5.1908", - "name": "Lichtblau", - "notes": null, - "references": null, - "review": false, - "source": 130, - "start_date": "1844-05-17", - "start_date_written": "17.5.1844", - "status": "", - "text": [ - 47402, - 47403 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93366 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93367 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93368 - }, - { - "fields": { - "collection": [], - "end_date": "1935-12-19", - "end_date_written": "19.12.1935", - "name": "Lichtblau", - "notes": null, - "references": null, - "review": false, - "source": 131, - "start_date": "1875-02-25", - "start_date_written": "25.2.1875", - "status": "", - "text": [ - 47404, - 47405 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93369 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93370 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93371 - }, - { - "fields": { - "collection": [], - "end_date": "1888-04-05", - "end_date_written": "5.4.1888", - "name": "Leitgeb", - "notes": null, - "references": null, - "review": false, - "source": 128, - "start_date": "1835-10-20", - "start_date_written": "20.10.1835", - "status": "", - "text": [ - 47410, - 47411 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93378 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Portendorf, Bez. Klagenfurt Land", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93379 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93382 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93383 - }, - { - "fields": { - "collection": [], - "end_date": "1840-02-11", - "end_date_written": "11.2.1840", - "name": "Lenhossék", - "notes": null, - "references": null, - "review": false, - "source": 129, - "start_date": "1773-05-11", - "start_date_written": "11.5.1773", - "status": "", - "text": [ - 47414, - 47415 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93387 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93388 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93389 - }, - { - "fields": { - "collection": [], - "end_date": "1919-03-14", - "end_date_written": "14.3.1919", - "name": "Lefler", - "notes": null, - "references": null, - "review": false, - "source": 125, - "start_date": "1863-11-07", - "start_date_written": "7.11.1863", - "status": "", - "text": [ - 47418, - 47419 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93393 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93394 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93395 - }, - { - "fields": { - "collection": [], - "end_date": "1942-03-17", - "end_date_written": "17.3.1942", - "name": "Leichter", - "notes": null, - "references": null, - "review": false, - "source": 126, - "start_date": "1895-08-20", - "start_date_written": "20.8.1895", - "status": "", - "text": [ - 47420, - 47421 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93396 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "KZ Ravensbrück, Brandenburg", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93397 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93398 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93399 - }, - { - "fields": { - "collection": [], - "end_date": "1876-01-19", - "end_date_written": "19.1.1876", - "name": "Leidesdorf", - "notes": null, - "references": null, - "review": false, - "source": 127, - "start_date": "1810-09-25", - "start_date_written": "25.9.1810", - "status": "", - "text": [ - 47422, - 47423 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93400 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93401 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93402 - }, - { - "fields": { - "collection": [], - "end_date": "1923-02-21", - "end_date_written": "21.2.1923", - "name": "Lapaine", - "notes": null, - "references": null, - "review": false, - "source": 124, - "start_date": "1843-02-05", - "start_date_written": "5.2.1843", - "status": "", - "text": [ - 47428, - 47429 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93409 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Vojsko, sr. Gorica", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "ambigue", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93410 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93413 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93414 - }, - { - "fields": { - "collection": [], - "end_date": "1926-11-09", - "end_date_written": "9.11.1926", - "name": "Langer-Schroll", - "notes": null, - "references": null, - "review": false, - "source": 123, - "start_date": "1850-10-02", - "start_date_written": "2.10.1850", - "status": "", - "text": [ - 47430, - 47431 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93415 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93416 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93417 - }, - { - "fields": { - "collection": [], - "end_date": "1941-12-09", - "end_date_written": "9.12.1941", - "name": "Müller", - "notes": null, - "references": null, - "review": false, - "source": 144, - "start_date": "1874-07-08", - "start_date_written": "8.7.1874", - "status": "", - "text": [ - 47432, - 47433 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93418 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93419 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93420 - }, - { - "fields": { - "collection": [], - "end_date": "1868-01-11", - "end_date_written": "11.1.1868", - "name": "Mörl", - "notes": null, - "references": null, - "review": false, - "source": 143, - "start_date": "1812-10-16", - "start_date_written": "16.10.1812", - "status": "", - "text": [ - 47446, - 47447 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93442 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93443 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93444 - }, - { - "fields": { - "collection": [], - "end_date": "1890-07-24", - "end_date_written": "24.7.1890", - "name": "Millosicz", - "notes": null, - "references": null, - "review": false, - "source": 142, - "start_date": "1819-10-18", - "start_date_written": "18.10.1819", - "status": "", - "text": [ - 47448, - 47449 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93445 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93446 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93447 - }, - { - "fields": { - "collection": [], - "end_date": "1891-03-07", - "end_date_written": "7.3.1891", - "name": "Miklosich", - "notes": null, - "references": null, - "review": false, - "source": 141, - "start_date": "1813-11-20", - "start_date_written": "20.11.1813", - "status": "", - "text": [ - 47450, - 47451 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93448 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Radomerščak, sr. Murska Sobota", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93449 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93452 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93453 - }, - { - "fields": { - "collection": [], - "end_date": "1942-12-13", - "end_date_written": "13.12.1942", - "name": "Meithner", - "notes": null, - "references": null, - "review": false, - "source": 140, - "start_date": "1892-05-27", - "start_date_written": "27.5.1892", - "status": "", - "text": [ - 47460, - 47461 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93469 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93470 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93471 - }, - { - "fields": { - "collection": [], - "end_date": "1880-01-01", - "end_date_written": "1880", - "name": "Margulies", - "notes": null, - "references": null, - "review": false, - "source": 139, - "start_date": "1817-01-01", - "start_date_written": "1817", - "status": "", - "text": [ - 47466, - 47467 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93481 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93482 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93483 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "1883.6", - "name": "Mánesová", - "notes": null, - "references": null, - "review": false, - "source": 137, - "start_date": "1817-01-21", - "start_date_written": "21.1.1817", - "status": "", - "text": [ - 47468, - 47469 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93484 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93485 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93486 - }, - { - "fields": { - "collection": [], - "end_date": "1880-08-05", - "end_date_written": "5.8.1880", - "name": "Mánes", - "notes": null, - "references": null, - "review": false, - "source": 138, - "start_date": "1828-07-17", - "start_date_written": "17.7.1828", - "status": "", - "text": [ - 47470, - 47471 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93487 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93488 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93489 - }, - { - "fields": { - "collection": [], - "end_date": "1944-07-01", - "end_date_written": "1.7.1944", - "name": "Mayer", - "notes": null, - "references": null, - "review": false, - "source": 136, - "start_date": "1894-02-20", - "start_date_written": "20.2.1894", - "status": "", - "text": [ - 47482, - 47483 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93510 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93511 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93512 - }, - { - "fields": { - "collection": [], - "end_date": "1873-04-01", - "end_date_written": "1.4.1873", - "name": "Mahl-Schedl von Alpenburg", - "notes": null, - "references": null, - "review": false, - "source": 135, - "start_date": "1806-10-27", - "start_date_written": "27.10.1806", - "status": "", - "text": [ - 47484, - 47485 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93513 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93514 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93515 - }, - { - "fields": { - "collection": [], - "end_date": "1929-08-12", - "end_date_written": "12.8.1929", - "name": "Nováček", - "notes": null, - "references": null, - "review": false, - "source": 145, - "start_date": "1860-04-07", - "start_date_written": "7.4.1860", - "status": "", - "text": [ - 47486, - 47487 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93516 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93517 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93518 - }, - { - "fields": { - "collection": [], - "end_date": "1939-11-22", - "end_date_written": "22.11.1939", - "name": "Ortmann", - "notes": null, - "references": null, - "review": false, - "source": 147, - "start_date": "1874-03-10", - "start_date_written": "10.3.1874", - "status": "", - "text": [ - 47502, - 47503 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93540 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93541 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93542 - }, - { - "fields": { - "collection": [], - "end_date": "1880-08-16", - "end_date_written": "16.8.1880", - "name": "Oellacher", - "notes": null, - "references": null, - "review": false, - "source": 146, - "start_date": "1804-02-16", - "start_date_written": "16.2.1804", - "status": "", - "text": [ - 47506, - 47507 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93546 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93547 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93548 - }, - { - "fields": { - "collection": [], - "end_date": "1944-08-08", - "end_date_written": "8.8.1944", - "name": "Poljanec", - "notes": null, - "references": null, - "review": false, - "source": 151, - "start_date": "1872-09-23", - "start_date_written": "23.9.1872", - "status": "", - "text": [ - 47516, - 47517 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93561 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Brežice, sr. Novo mesto", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93562 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93565 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93566 - }, - { - "fields": { - "collection": [], - "end_date": "1932-07-15", - "end_date_written": "15.7.1932", - "name": "Petzold", - "notes": null, - "references": null, - "review": false, - "source": 150, - "start_date": "1859-11-26", - "start_date_written": "26.11.1859", - "status": "", - "text": [ - 47522, - 47523 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93573 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93574 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93575 - }, - { - "fields": { - "collection": [], - "end_date": "1913-01-22", - "end_date_written": "22.1.1913", - "name": "Peithner von Lichtenfels", - "notes": null, - "references": null, - "review": false, - "source": 149, - "start_date": "1833-11-18", - "start_date_written": "18.11.1833", - "status": "", - "text": [ - 47530, - 47531 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93588 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93589 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93590 - }, - { - "fields": { - "collection": [], - "end_date": "1894-06-26", - "end_date_written": "26.6.1894", - "name": "Patera", - "notes": null, - "references": null, - "review": false, - "source": 148, - "start_date": "1819-07-11", - "start_date_written": "11.7.1819", - "status": "", - "text": [ - 47536, - 47537 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93600 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93601 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93602 - }, - { - "fields": { - "collection": [], - "end_date": "1846-03-17", - "end_date_written": "17.3.1846", - "name": "Rumpler", - "notes": null, - "references": null, - "review": false, - "source": 158, - "start_date": "1771-02-03", - "start_date_written": "3.2.1771", - "status": "", - "text": [ - 47540, - 47541 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93609 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Seekirchen a. Wallersee", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93610 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93613 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93614 - }, - { - "fields": { - "collection": [], - "end_date": "1945-09-18", - "end_date_written": "18.9.1945", - "name": "Rotter", - "notes": null, - "references": null, - "review": false, - "source": 157, - "start_date": "1868-11-30", - "start_date_written": "30.11.1868", - "status": "", - "text": [ - 47542, - 47543 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93615 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93616 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93617 - }, - { - "fields": { - "collection": [], - "end_date": "1904-04-28", - "end_date_written": "28.4.1904", - "name": "Revertera von Salandra", - "notes": null, - "references": null, - "review": false, - "source": 156, - "start_date": "1827-01-21", - "start_date_written": "21.1.1827", - "status": "", - "text": [ - 47556, - 47557 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93639 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93640 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93641 - }, - { - "fields": { - "collection": [], - "end_date": "1854-10-26", - "end_date_written": "26.10.1854", - "name": "Reichenberger", - "notes": null, - "references": null, - "review": false, - "source": 154, - "start_date": "1770-11-24", - "start_date_written": "24.11.1770", - "status": "", - "text": [ - 47558, - 47559 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93642 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93643 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93644 - }, - { - "fields": { - "collection": [], - "end_date": "1936-03-31", - "end_date_written": "31.3.1936", - "name": "Reiser", - "notes": null, - "references": null, - "review": false, - "source": 155, - "start_date": "1861-12-21", - "start_date_written": "21.12.1861", - "status": "", - "text": [ - 47560, - 47561 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93645 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93646 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93647 - }, - { - "fields": { - "collection": [], - "end_date": "1941-08-13", - "end_date_written": "13.8.1941", - "name": "Randa", - "notes": null, - "references": null, - "review": false, - "source": 153, - "start_date": "1874-05-24", - "start_date_written": "24.5.1874", - "status": "", - "text": [ - 47564, - 47565 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93651 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93652 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93653 - }, - { - "fields": { - "collection": [], - "end_date": "1934-08-15", - "end_date_written": "15.8.1934", - "name": "Radakovič", - "notes": null, - "references": null, - "review": false, - "source": 152, - "start_date": "1866-04-25", - "start_date_written": "25.4.1866", - "status": "", - "text": [ - 47566, - 47567 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93654 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93655 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93656 - }, - { - "fields": { - "collection": [], - "end_date": "1878-01-19", - "end_date_written": "19.1.1878", - "name": "Szigligeti", - "notes": null, - "references": null, - "review": false, - "source": 194, - "start_date": "1814-03-08", - "start_date_written": "8.3.1814", - "status": "", - "text": [ - 47568, - 47569 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93657 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Oradea-Olosig, jud. Bihor", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93658 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93661 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93662 - }, - { - "fields": { - "collection": [], - "end_date": "1945-03-26", - "end_date_written": "26.3.1945", - "name": "Szurmay von Uzsok", - "notes": null, - "references": null, - "review": false, - "source": 195, - "start_date": "1860-12-19", - "start_date_written": "19.12.1860", - "status": "", - "text": [ - 47570, - 47571 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93663 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93664 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93665 - }, - { - "fields": { - "collection": [], - "end_date": "1872-06-28", - "end_date_written": "28.6.1872", - "name": "Stülz", - "notes": null, - "references": null, - "review": false, - "source": 193, - "start_date": "1799-02-23", - "start_date_written": "23.2.1799", - "status": "", - "text": [ - 47580, - 47581 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93678 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93679 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93680 - }, - { - "fields": { - "collection": [], - "end_date": "1934-02-19", - "end_date_written": "19.2.1934", - "name": "Stowasser", - "notes": null, - "references": null, - "review": false, - "source": 192, - "start_date": "1887-10-21", - "start_date_written": "21.10.1887", - "status": "", - "text": [ - 47584, - 47585 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93684 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93685 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93686 - }, - { - "fields": { - "collection": [], - "end_date": "1933-12-21", - "end_date_written": "21.12.1933", - "name": "Steindler", - "notes": null, - "references": null, - "review": false, - "source": 190, - "start_date": "1879-10-28", - "start_date_written": "28.10.1879", - "status": "", - "text": [ - 47594, - 47595 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93702 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93703 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93704 - }, - { - "fields": { - "collection": [], - "end_date": "1945-02-25", - "end_date_written": "25.2.1945", - "name": "Stein", - "notes": null, - "references": null, - "review": false, - "source": 191, - "start_date": "1891-09-19", - "start_date_written": "19.9.1891", - "status": "", - "text": [ - 47596, - 47597 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93705 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93706 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93707 - }, - { - "fields": { - "collection": [], - "end_date": "1915-12-15", - "end_date_written": "15.12.1915", - "name": "Stariha", - "notes": null, - "references": null, - "review": false, - "source": 189, - "start_date": "1845-05-12", - "start_date_written": "12.5.1845", - "status": "", - "text": [ - 47602, - 47603 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93714 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Sadinja vas, sr. Novo mesto", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93715 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93718 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93719 - }, - { - "fields": { - "collection": [], - "end_date": "1930-01-28", - "end_date_written": "28.1.1930", - "name": "Šnjarić", - "notes": null, - "references": null, - "review": false, - "source": 188, - "start_date": "1851-06-22", - "start_date_written": "22.6.1851", - "status": "", - "text": [ - 47614, - 47615 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93748 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Čanak, sr. Gospić", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93749 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93752 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93753 - }, - { - "fields": { - "collection": [], - "end_date": "1942-11-06", - "end_date_written": "6.11.1942", - "name": "Sichulski", - "notes": null, - "references": null, - "review": false, - "source": 187, - "start_date": "1879-01-17", - "start_date_written": "17.1.1879", - "status": "", - "text": [ - 47626, - 47627 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93779 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93780 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93781 - }, - { - "fields": { - "collection": [], - "end_date": "1905-01-29", - "end_date_written": "29.1.1905", - "name": "Settari", - "notes": null, - "references": null, - "review": false, - "source": 186, - "start_date": "1841-10-04", - "start_date_written": "4.10.1841", - "status": "", - "text": [ - 47630, - 47631 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93785 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93786 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93787 - }, - { - "fields": { - "collection": [], - "end_date": "1910-09-12", - "end_date_written": "12.9.1910", - "name": "Sehnal", - "notes": null, - "references": null, - "review": false, - "source": 185, - "start_date": "1851-12-22", - "start_date_written": "22.12.1851", - "status": "", - "text": [ - 47634, - 47635 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93791 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93792 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93793 - }, - { - "fields": { - "collection": [], - "end_date": "1929-09-15", - "end_date_written": "15.9.1929", - "name": "Schwartz", - "notes": null, - "references": null, - "review": false, - "source": 181, - "start_date": "1852-02-28", - "start_date_written": "28.2.1852", - "status": "", - "text": [ - 47640, - 47641 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93800 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93801 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93802 - }, - { - "fields": { - "collection": [], - "end_date": "1903-12-28", - "end_date_written": "28.12.1903", - "name": "Schwarz", - "notes": null, - "references": null, - "review": false, - "source": 182, - "start_date": "1840-11-16", - "start_date_written": "16.11.1840", - "status": "", - "text": [ - 47642, - 47643 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93803 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Šumperk-Temenice, kr. Olomoucký", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93804 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93807 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93808 - }, - { - "fields": { - "collection": [], - "end_date": "1879-05-07", - "end_date_written": "7.5.1879", - "name": "Schwarz", - "notes": null, - "references": null, - "review": false, - "source": 183, - "start_date": "1811-11-06", - "start_date_written": "6.11.1811", - "status": "", - "text": [ - 47644, - 47645 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93809 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93810 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93811 - }, - { - "fields": { - "collection": [], - "end_date": "1896-07-09", - "end_date_written": "9.7.1896", - "name": "Schweitzer", - "notes": null, - "references": null, - "review": false, - "source": 184, - "start_date": "1815-02-01", - "start_date_written": "1.2.1815", - "status": "", - "text": [ - 47648, - 47649 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93815 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93816 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93817 - }, - { - "fields": { - "collection": [], - "end_date": "1923-04-16", - "end_date_written": "16.4.1923", - "name": "Schwabl", - "notes": null, - "references": null, - "review": false, - "source": 180, - "start_date": "1854-06-29", - "start_date_written": "29.6.1854", - "status": "", - "text": [ - 47650, - 47651 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93818 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93819 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93820 - }, - { - "fields": { - "collection": [], - "end_date": "1911-11-09", - "end_date_written": "9.11.1911", - "name": "Schuëcker", - "notes": null, - "references": null, - "review": false, - "source": 179, - "start_date": "1860-11-16", - "start_date_written": "16.11.1860", - "status": "", - "text": [ - 47660, - 47661 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93836 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93837 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93838 - }, - { - "fields": { - "collection": [], - "end_date": "1908-12-05", - "end_date_written": "5.12.1908", - "name": "Schrödl", - "notes": null, - "references": null, - "review": false, - "source": 178, - "start_date": "1841-07-07", - "start_date_written": "7.7.1841", - "status": "", - "text": [ - 47662, - 47663 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93839 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93840 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93841 - }, - { - "fields": { - "collection": [], - "end_date": "1950-04-14", - "end_date_written": "14.4.1950", - "name": "Schreyer", - "notes": null, - "references": null, - "review": false, - "source": 177, - "start_date": "1876-12-09", - "start_date_written": "9.12.1876", - "status": "", - "text": [ - 47672, - 47673 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93854 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Břidličná, kr. Moravskoslezský", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93855 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93858 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93859 - }, - { - "fields": { - "collection": [], - "end_date": "1902-05-19", - "end_date_written": "19.5.1902", - "name": "Scholz", - "notes": null, - "references": null, - "review": false, - "source": 175, - "start_date": "1819-08-20", - "start_date_written": "20.8.1819", - "status": "", - "text": [ - 47676, - 47677 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93863 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93864 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93865 - }, - { - "fields": { - "collection": [], - "end_date": "1893-06-17", - "end_date_written": "17.6.1893", - "name": "Schrammel", - "notes": null, - "references": null, - "review": false, - "source": 176, - "start_date": "1850-05-22", - "start_date_written": "22.5.1850", - "status": "", - "text": [ - 47678, - 47679 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93866 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93867 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93868 - }, - { - "fields": { - "collection": [], - "end_date": "1884-12-12", - "end_date_written": "12.12.1884", - "name": "Scholl", - "notes": null, - "references": null, - "review": false, - "source": 174, - "start_date": "1805-01-01", - "start_date_written": "1805", - "status": "", - "text": [ - 47684, - 47685 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93878 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Regio oder Rea (?)", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93879 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93880 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93881 - }, - { - "fields": { - "collection": [], - "end_date": "1880-12-19", - "end_date_written": "19.12.1880", - "name": "Schönberger", - "notes": null, - "references": null, - "review": false, - "source": 172, - "start_date": "1804-06-30", - "start_date_written": "30.6.1804", - "status": "", - "text": [ - 47688, - 47689 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93891 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93892 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93893 - }, - { - "fields": { - "collection": [], - "end_date": "1930-03-09", - "end_date_written": "9.3.1930", - "name": "Schönberger", - "notes": null, - "references": null, - "review": false, - "source": 173, - "start_date": "1863-09-12", - "start_date_written": "12.9.1863", - "status": "", - "text": [ - 47690, - 47691 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93894 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93895 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93896 - }, - { - "fields": { - "collection": [], - "end_date": "1939-06-29", - "end_date_written": "29.6.1939", - "name": "Schnitzler", - "notes": null, - "references": null, - "review": false, - "source": 169, - "start_date": "1865-07-13", - "start_date_written": "13.7.1865", - "status": "", - "text": [ - 47694, - 47695 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93900 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93901 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93902 - }, - { - "fields": { - "collection": [], - "end_date": "1917-03-07", - "end_date_written": "7.3.1917", - "name": "Schober", - "notes": null, - "references": null, - "review": false, - "source": 170, - "start_date": "1856-12-15", - "start_date_written": "15.12.1856", - "status": "", - "text": [ - 47696, - 47697 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93903 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93904 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93905 - }, - { - "fields": { - "collection": [], - "end_date": "1889-06-25", - "end_date_written": "25.6.1889", - "name": "Schoeller", - "notes": null, - "references": null, - "review": false, - "source": 171, - "start_date": "1826-10-05", - "start_date_written": "5.10.1826", - "status": "", - "text": [ - 47700, - 47701 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93909 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93910 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93911 - }, - { - "fields": { - "collection": [], - "end_date": "1940-06-20", - "end_date_written": "20.6.1940", - "name": "Schmutzler", - "notes": null, - "references": null, - "review": false, - "source": 168, - "start_date": "1864-03-29", - "start_date_written": "29.3.1864", - "status": "", - "text": [ - 47706, - 47707 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93921 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93922 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93923 - }, - { - "fields": { - "collection": [], - "end_date": "1942-11-16", - "end_date_written": "16.11.1942", - "name": "Schmidt", - "notes": null, - "references": null, - "review": false, - "source": 167, - "start_date": "1904-03-04", - "start_date_written": "4.3.1904", - "status": "", - "text": [ - 47712, - 47713 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93933 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Davydivka, obl. Černivci", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "ambigue", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93934 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "Girenbad b. Hinwil, Kanton Zürich", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "no match", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93937 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93938 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93939 - }, - { - "fields": { - "collection": [], - "end_date": "1892-03-28", - "end_date_written": "28.3.1892", - "name": "Schmidt", - "notes": null, - "references": null, - "review": false, - "source": 166, - "start_date": "1826-12-09", - "start_date_written": "9.12.1826", - "status": "", - "text": [ - 47714, - 47715 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93940 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93941 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93942 - }, - { - "fields": { - "collection": [], - "end_date": "1900-12-24", - "end_date_written": "24.12.1900", - "name": "Schmal", - "notes": null, - "references": null, - "review": false, - "source": 164, - "start_date": "1844-09-23", - "start_date_written": "23.9.1844", - "status": "", - "text": [ - 47718, - 47719 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93946 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93947 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93948 - }, - { - "fields": { - "collection": [], - "end_date": "1912-12-14", - "end_date_written": "14.12.1912", - "name": "Schmidt-Beauchez", - "notes": null, - "references": null, - "review": false, - "source": 165, - "start_date": "1848-06-06", - "start_date_written": "6.6.1848", - "status": "", - "text": [ - 47724, - 47725 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93955 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93956 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93957 - }, - { - "fields": { - "collection": [], - "end_date": "1911-02-22", - "end_date_written": "22.2.1911", - "name": "Schindler", - "notes": null, - "references": null, - "review": false, - "source": 163, - "start_date": "1835-06-23", - "start_date_written": "23.6.1835", - "status": "", - "text": [ - 47726, - 47727 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93958 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93959 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93960 - }, - { - "fields": { - "collection": [], - "end_date": "1904-10-12", - "end_date_written": "12.10.1904", - "name": "Scheu", - "notes": null, - "references": null, - "review": false, - "source": 161, - "start_date": "1841-09-15", - "start_date_written": "15.9.1841", - "status": "", - "text": [ - 47728, - 47729 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93961 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93962 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93963 - }, - { - "fields": { - "collection": [], - "end_date": "1924-11-15", - "end_date_written": "15.11.1924", - "name": "Schikaneder", - "notes": null, - "references": null, - "review": false, - "source": 162, - "start_date": "1855-02-27", - "start_date_written": "27.2.1855", - "status": "", - "text": [ - 47730, - 47731 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93964 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93965 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93966 - }, - { - "fields": { - "collection": [], - "end_date": "1945-06-02", - "end_date_written": "2.6.1945", - "name": "Schell", - "notes": null, - "references": null, - "review": false, - "source": 159, - "start_date": "1892-12-19", - "start_date_written": "19.12.1892", - "status": "", - "text": [ - 47732, - 47733 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93967 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93968 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93969 - }, - { - "fields": { - "collection": [], - "end_date": "1902-08-17", - "end_date_written": "17.8.1902", - "name": "Schenk", - "notes": null, - "references": null, - "review": false, - "source": 160, - "start_date": "1840-08-23", - "start_date_written": "23.8.1840", - "status": "", - "text": [ - 47734, - 47735 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93970 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93971 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93972 - }, - { - "fields": { - "collection": [], - "end_date": "1920-02-02", - "end_date_written": "2.2.1920", - "name": "Tölgyessy", - "notes": null, - "references": null, - "review": false, - "source": 201, - "start_date": "1853-05-01", - "start_date_written": "1.5.1853", - "status": "", - "text": [ - 47746, - 47747 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93988 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93989 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93990 - }, - { - "fields": { - "collection": [], - "end_date": "1818-10-09", - "end_date_written": "9.10.1818", - "name": "Thun und Hohenstein", - "notes": null, - "references": null, - "review": false, - "source": 200, - "start_date": "1763-03-28", - "start_date_written": "28.3.1763", - "status": "", - "text": [ - 47748, - 47749 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 93991 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93992 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 93993 - }, - { - "fields": { - "collection": [], - "end_date": "1886-02-25", - "end_date_written": "25.2.1886", - "name": "Teschenberg", - "notes": null, - "references": null, - "review": false, - "source": 197, - "start_date": "1836-05-21", - "start_date_written": "21.5.1836", - "status": "", - "text": [ - 47754, - 47755 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 94003 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94004 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94005 - }, - { - "fields": { - "collection": [], - "end_date": "1940-01-18", - "end_date_written": "18.1.1940", - "name": "Tetmajer", - "notes": null, - "references": null, - "review": false, - "source": 198, - "start_date": "1865-02-12", - "start_date_written": "12.2.1865", - "status": "", - "text": [ - 47756, - 47757 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 94006 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94007 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94008 - }, - { - "fields": { - "collection": [], - "end_date": "1943-02-03", - "end_date_written": "3.2.1943", - "name": "Teuber", - "notes": null, - "references": null, - "review": false, - "source": 199, - "start_date": "1877-05-11", - "start_date_written": "11.5.1877", - "status": "", - "text": [ - 47758, - 47759 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 94009 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94010 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94011 - }, - { - "fields": { - "collection": [], - "end_date": "1948-01-08", - "end_date_written": "8.1.1948", - "name": "Tauber", - "notes": null, - "references": null, - "review": false, - "source": 196, - "start_date": "1891-05-16", - "start_date_written": "16.5.1891", - "status": "", - "text": [ - 47764, - 47765 - ] - }, - "model": "metainfo.tempentityclass", - "pk": 94018 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94019 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": null, - "name": "", - "notes": null, - "references": null, - "review": false, - "source": null, - "start_date": null, - "start_date_written": null, - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94020 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94160 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94161 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94162 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94163 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94164 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94165 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94166 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94167 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94168 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94169 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94170 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94171 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94174 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 94175 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "wien", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 98116 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "distinct", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 99591 - }, - { - "fields": { - "collection": [ - 22 - ], - "end_date": null, - "end_date_written": "", - "name": "testevent", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 99856 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 99857 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 99859 - }, - { - "fields": { - "collection": [ - 22 - ], - "end_date": null, - "end_date_written": "", - "name": "testinstitution", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 99861 - }, - { - "fields": { - "collection": [], - "end_date": null, - "end_date_written": "", - "name": "", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 99862 - }, - { - "fields": { - "collection": [ - 22 - ], - "end_date": null, - "end_date_written": "", - "name": "testwork", - "notes": "", - "references": "", - "review": false, - "source": null, - "start_date": null, - "start_date_written": "", - "status": "", - "text": [] - }, - "model": "metainfo.tempentityclass", - "pk": 99872 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Bahr_Hermann_1863_1934.xml", - "orig_id": 1405476, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 44f." - }, - "model": "metainfo.source", - "pk": 102 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Celakovsky_Jaromir_1846_1914.xml", - "orig_id": 1416946, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140" - }, - "model": "metainfo.source", - "pk": 103 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Celakovsky_Ladislav_1834_1902.xml", - "orig_id": 1416947, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 140" - }, - "model": "metainfo.source", - "pk": 104 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Cerveny_Vaclav-Frantisek_1819_1896.xml", - "orig_id": 1416953, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141" - }, - "model": "metainfo.source", - "pk": 105 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Charlemont_Hugo_1850_1939.xml", - "orig_id": 1417029, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 141" - }, - "model": "metainfo.source", - "pk": 106 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Chlumczansky_Wenzel-Leopold_1749_1830.xml", - "orig_id": 1417140, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 144" - }, - "model": "metainfo.source", - "pk": 107 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Clam-Gallas_Eduard_1805_1891.xml", - "orig_id": 1417315, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 148" - }, - "model": "metainfo.source", - "pk": 108 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Clam-Martinic_Heinrich-Jaroslav_1826_1887.xml", - "orig_id": 1417317, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149" - }, - "model": "metainfo.source", - "pk": 109 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Clam-Martinic_Heinrich_1863_1932.xml", - "orig_id": 1417316, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149" - }, - "model": "metainfo.source", - "pk": 110 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Claus_Karl-Friedrich_1835_1899.xml", - "orig_id": 1417320, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 149" - }, - "model": "metainfo.source", - "pk": 111 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Conze_Alexander_1831_1914.xml", - "orig_id": 1417417, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 153f." - }, - "model": "metainfo.source", - "pk": 112 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Costenoble_Karl-Ludwig_1769_1837.xml", - "orig_id": 1417431, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 156" - }, - "model": "metainfo.source", - "pk": 113 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Czerny_Adalbert_1863_1941.xml", - "orig_id": 1417613, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 162" - }, - "model": "metainfo.source", - "pk": 114 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Czetz_Johann_1822_1904.xml", - "orig_id": 1417689, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 163f." - }, - "model": "metainfo.source", - "pk": 116 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Czikann_Johann-Jakob-Heinrich_1789_1855.xml", - "orig_id": 1417691, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 164" - }, - "model": "metainfo.source", - "pk": 117 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Defregger_Franz_1835_1921.xml", - "orig_id": 1417167, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 174" - }, - "model": "metainfo.source", - "pk": 118 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Dengel_Ignaz-Philipp_1872_1947.xml", - "orig_id": 1417262, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 178" - }, - "model": "metainfo.source", - "pk": 119 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Doderer_Wilhelm_1825_1900.xml", - "orig_id": 1421589, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 2, 1954), S. 190" - }, - "model": "metainfo.source", - "pk": 120 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Dumba_Konstantin-Theodor_1856_1947.xml", - "orig_id": 1422065, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 3, 1956), S. 203" - }, - "model": "metainfo.source", - "pk": 121 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Holovsky_Hilde_1917_1933.xml", - "orig_id": 1417020, - "pubinfo": "ÖBL 1815-1950, Bd. 2 (Lfg. 10, 1959), S. 405" - }, - "model": "metainfo.source", - "pk": 122 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Langer-Schroll_Johanna_1850_1926.xml", - "orig_id": 1412571, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 9" - }, - "model": "metainfo.source", - "pk": 123 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Lapaine_Valentin_1843_1923.xml", - "orig_id": 1412681, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 23f." - }, - "model": "metainfo.source", - "pk": 124 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Lefler_Heinrich_1863_1919.xml", - "orig_id": 1413578, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 21, 1970), S. 90" - }, - "model": "metainfo.source", - "pk": 125 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Leichter_Kaethe_1895_1942.xml", - "orig_id": 1413749, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103" - }, - "model": "metainfo.source", - "pk": 126 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Leidesdorf_Franz_1810_1876.xml", - "orig_id": 1413751, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 103f." - }, - "model": "metainfo.source", - "pk": 127 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Leitgeb_Hubert_1835_1888.xml", - "orig_id": 1413852, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 114f." - }, - "model": "metainfo.source", - "pk": 128 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Lenhossek_Mihaly-Ignac_1773_1840.xml", - "orig_id": 1412686, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 135" - }, - "model": "metainfo.source", - "pk": 129 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Lichtblau_Adolf_1844_1908.xml", - "orig_id": 1411908, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184" - }, - "model": "metainfo.source", - "pk": 130 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Lichtblau_Ludwig_1875_1935.xml", - "orig_id": 1411907, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 22, 1970), S. 184f." - }, - "model": "metainfo.source", - "pk": 131 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Lobmeyr_Josef_1792_1855.xml", - "orig_id": 1411542, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 263" - }, - "model": "metainfo.source", - "pk": 132 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Loewy_Julius_1851_1905.xml", - "orig_id": 1411913, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 297" - }, - "model": "metainfo.source", - "pk": 133 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Lorenz_Heinrich_1859_1945.xml", - "orig_id": 1412111, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 24, 1971), S. 316" - }, - "model": "metainfo.source", - "pk": 134 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Mahl-Schedl-Alpenburg_Johann-Nep_1806_1873.xml", - "orig_id": 1411846, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 410f." - }, - "model": "metainfo.source", - "pk": 135 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Maier_Karl_1894_1944.xml", - "orig_id": 1412133, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 25, 1972), S. 436" - }, - "model": "metainfo.source", - "pk": 136 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Manesova_Amalie_1817_1883.xml", - "orig_id": 1409111, - "pubinfo": "ÖBL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51f." - }, - "model": "metainfo.source", - "pk": 137 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Manes_Quido_1828_1880.xml", - "orig_id": 1409109, - "pubinfo": "ÖBL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 51" - }, - "model": "metainfo.source", - "pk": 138 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Margulies_Berl_1817_1880.xml", - "orig_id": 1409490, - "pubinfo": "ÖBL 1815-1950, Bd. 6 (Lfg. 26, 1973), S. 85" - }, - "model": "metainfo.source", - "pk": 139 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Meithner_Karl_1892_1942.xml", - "orig_id": 1413879, - "pubinfo": "ÖBL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 203f." - }, - "model": "metainfo.source", - "pk": 140 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Miklosich_Franz_1813_1891.xml", - "orig_id": 1413368, - "pubinfo": "ÖBL 1815-1950, Bd. 6 (Lfg. 28, 1974), S. 281f." - }, - "model": "metainfo.source", - "pk": 141 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Millosicz_Georg_1819_1890.xml", - "orig_id": 1413706, - "pubinfo": "ÖBL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 307f." - }, - "model": "metainfo.source", - "pk": 142 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Moerl_Maria-Theresia_1812_1868.xml", - "orig_id": 1412553, - "pubinfo": "ÖBL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 340" - }, - "model": "metainfo.source", - "pk": 143 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Mueller_Wolf-Johannes_1874_1941.xml", - "orig_id": 1413568, - "pubinfo": "ÖBL 1815-1950, Bd. 6 (Lfg. 30, 1975), S. 429" - }, - "model": "metainfo.source", - "pk": 144 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Novacek_Rudolf_1860_1929.xml", - "orig_id": 1408134, - "pubinfo": "ÖBL 1815-1950, Bd. 7 (Lfg. 32, 1976), S. 159f." - }, - "model": "metainfo.source", - "pk": 145 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Oellacher_Josef_1804_1880.xml", - "orig_id": 1408688, - "pubinfo": "ÖBL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 208" - }, - "model": "metainfo.source", - "pk": 146 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Ortmann_Rudolf_1874_1939.xml", - "orig_id": 1409161, - "pubinfo": "ÖBL 1815-1950, Bd. 7 (Lfg. 33, 1977), S. 255" - }, - "model": "metainfo.source", - "pk": 147 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Patera_Adolf_1819_1894.xml", - "orig_id": 1408720, - "pubinfo": "ÖBL 1815-1950, Bd. 7 (Lfg. 34, 1977), S. 340f." - }, - "model": "metainfo.source", - "pk": 148 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Peithner-Lichtenfels_Eduard_1833_1913.xml", - "orig_id": 1409360, - "pubinfo": "ÖBL 1815-1950, Bd. 7 (Lfg. 35, 1978), S. 392f." - }, - "model": "metainfo.source", - "pk": 149 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Petzold_Emil_1859_1932.xml", - "orig_id": 1407914, - "pubinfo": "ÖBL 1815-1950, Bd. 8 (Lfg. 36, 1979), S. 17" - }, - "model": "metainfo.source", - "pk": 150 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Poljanec_Leopold_1872_1944.xml", - "orig_id": 1410619, - "pubinfo": "ÖBL 1815-1950, Bd. 8 (Lfg. 37, 1980), S. 181" - }, - "model": "metainfo.source", - "pk": 151 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Radakovic_Michael_1866_1934.xml", - "orig_id": 1409702, - "pubinfo": "ÖBL 1815-1950, Bd. 8 (Lfg. 39, 1982), S. 367f." - }, - "model": "metainfo.source", - "pk": 152 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Randa_Maximilian_1874_1941.xml", - "orig_id": 1410086, - "pubinfo": "ÖBL 1815-1950, Bd. 8 (Lfg. 40, 1983), S. 411" - }, - "model": "metainfo.source", - "pk": 153 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Reichenberger_Andreas_1770_1854.xml", - "orig_id": 1406805, - "pubinfo": "ÖBL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 31f." - }, - "model": "metainfo.source", - "pk": 154 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Reiser_Othmar_1861_1936.xml", - "orig_id": 1406978, - "pubinfo": "ÖBL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 58" - }, - "model": "metainfo.source", - "pk": 155 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Revertera-Salandra_Friedrich_1827_1904.xml", - "orig_id": 1407193, - "pubinfo": "ÖBL 1815-1950, Bd. 9 (Lfg. 42, 1985), S. 100f." - }, - "model": "metainfo.source", - "pk": 156 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Rotter_Johann_1868_1945.xml", - "orig_id": 1407684, - "pubinfo": "ÖBL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 295f." - }, - "model": "metainfo.source", - "pk": 157 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Rumpler_Matthias_1771_1846.xml", - "orig_id": 1407832, - "pubinfo": "ÖBL 1815-1950, Bd. 9 (Lfg. 44, 1987), S. 327" - }, - "model": "metainfo.source", - "pk": 158 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schell_Karl_1892_1945.xml", - "orig_id": 1406179, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 70f." - }, - "model": "metainfo.source", - "pk": 159 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schenk_Samuel-Leopold_1840_1902.xml", - "orig_id": 1406202, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 46, 1990), S. 79f." - }, - "model": "metainfo.source", - "pk": 160 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Scheu_Josef-Franz-Georg_1841_1904.xml", - "orig_id": 1406044, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 97f." - }, - "model": "metainfo.source", - "pk": 161 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schikaneder_Jakub_1855_1924.xml", - "orig_id": 1406374, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 129f." - }, - "model": "metainfo.source", - "pk": 162 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schindler_Josef_1835_1911.xml", - "orig_id": 1406252, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 47, 1991), S. 153" - }, - "model": "metainfo.source", - "pk": 163 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schmal_Johannes-Adolf_1844_1900.xml", - "orig_id": 1406496, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 226" - }, - "model": "metainfo.source", - "pk": 164 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schmid-Beauchez_Louis_1848_1912.xml", - "orig_id": 1406721, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 305f." - }, - "model": "metainfo.source", - "pk": 165 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schmid_Anton_1826_1892.xml", - "orig_id": 1406531, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 242f." - }, - "model": "metainfo.source", - "pk": 166 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schmid_Joseph_1904_1942.xml", - "orig_id": 1406597, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 48, 1992), S. 276f." - }, - "model": "metainfo.source", - "pk": 167 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schmutzler_Leopold_1864_1940.xml", - "orig_id": 1406623, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 49, 1993), S. 351f." - }, - "model": "metainfo.source", - "pk": 168 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schnitzler_Julius_1865_1939.xml", - "orig_id": 1406896, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 411f." - }, - "model": "metainfo.source", - "pk": 169 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schober_Alfred_1856_1917.xml", - "orig_id": 1406912, - "pubinfo": "ÖBL 1815-1950, Bd. 10 (Lfg. 50, 1994), S. 419f." - }, - "model": "metainfo.source", - "pk": 170 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schoeller_Gustav-Adolph_1826_1889.xml", - "orig_id": 1405414, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 21" - }, - "model": "metainfo.source", - "pk": 171 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schoenberger_Adolf_1804_1880.xml", - "orig_id": 1405629, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 49" - }, - "model": "metainfo.source", - "pk": 172 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schoenberger_Benno_1863_1930.xml", - "orig_id": 1405634, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 51, 1995), S. 51" - }, - "model": "metainfo.source", - "pk": 173 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Scholl_Joseph_1805_1884.xml", - "orig_id": 1412321, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 118f." - }, - "model": "metainfo.source", - "pk": 174 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Scholz_Franz_1819_1902.xml", - "orig_id": 1412411, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 127" - }, - "model": "metainfo.source", - "pk": 175 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schrammel_Johann_1850_1893.xml", - "orig_id": 1411222, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 171ff." - }, - "model": "metainfo.source", - "pk": 176 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schreyer_Johann_1876_1950.xml", - "orig_id": 1411681, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 52, 1997), S. 223" - }, - "model": "metainfo.source", - "pk": 177 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schroedl_Leopold_1841_1908.xml", - "orig_id": 1411777, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 236" - }, - "model": "metainfo.source", - "pk": 178 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schuecker_Edmund_1860_1911.xml", - "orig_id": 1412171, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 53, 1998), S. 286f." - }, - "model": "metainfo.source", - "pk": 179 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schwabl_Franz_1854_1923.xml", - "orig_id": 1420210, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 409f." - }, - "model": "metainfo.source", - "pk": 180 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schwarz_Anton-Maria_1852_1929.xml", - "orig_id": 1420456, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 425f." - }, - "model": "metainfo.source", - "pk": 181 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schwarz_Johann_1840_1903.xml", - "orig_id": 1420439, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 439" - }, - "model": "metainfo.source", - "pk": 182 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schwarz_Kaspar_1811_1879.xml", - "orig_id": 1420450, - "pubinfo": "ÖBL 1815-1950, Bd. 11 (Lfg. 54, 1999), S. 445" - }, - "model": "metainfo.source", - "pk": 183 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Schweitzer_Leopold-Albrecht_1815_1896.xml", - "orig_id": 1439729, - "pubinfo": "ÖBL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 44f." - }, - "model": "metainfo.source", - "pk": 184 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Sehnal_Eugen_1851_1910.xml", - "orig_id": 1439478, - "pubinfo": "ÖBL 1815-1950, Bd. 12 (Lfg. 55, 2001), S. 114f." - }, - "model": "metainfo.source", - "pk": 185 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Settari_Wilhelm-Anton-Maria_1841_1905.xml", - "orig_id": 1450886, - "pubinfo": "ÖBL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 197" - }, - "model": "metainfo.source", - "pk": 186 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Sichulski_Kazimierz_1879_1942.xml", - "orig_id": 1450008, - "pubinfo": "ÖBL 1815-1950, Bd. 12 (Lfg. 56, 2002), S. 223" - }, - "model": "metainfo.source", - "pk": 187 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Snjaric_Lukas_1851_1930.xml", - "orig_id": 1457373, - "pubinfo": "ÖBL 1815-1950, Bd. 12 (Lfg. 58, 2005), S. 384" - }, - "model": "metainfo.source", - "pk": 188 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Stariha_Janez-Nep_1845_1915.xml", - "orig_id": 1428070, - "pubinfo": "ÖBL 1815-1950, Bd. 13 (Lfg. 59, 2007), S. 105" - }, - "model": "metainfo.source", - "pk": 189 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Steindler_Olga_1879_1933.xml", - "orig_id": 1430730, - "pubinfo": "ÖBL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 165f." - }, - "model": "metainfo.source", - "pk": 190 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Stein_Ernst-Edward-Aurel_1891_1945.xml", - "orig_id": 1428363, - "pubinfo": "ÖBL 1815-1950, Bd. 13 (Lfg. 60, 2008), S. 149" - }, - "model": "metainfo.source", - "pk": 191 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Stowasser_Otto-Hellmuth_1887_1934.xml", - "orig_id": 1434284, - "pubinfo": "ÖBL 1815-1950, Bd. 13 (Lfg. 61, 2009), S. 334f." - }, - "model": "metainfo.source", - "pk": 192 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Stuelz_Jodok_1799_1872.xml", - "orig_id": 1433097, - "pubinfo": "ÖBL 1815-1950, Bd. 13 (Lfg. 62, 2010), S. 443" - }, - "model": "metainfo.source", - "pk": 193 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Szigligeti_Ede_1814_1878.xml", - "orig_id": 1434706, - "pubinfo": "ÖBL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 154" - }, - "model": "metainfo.source", - "pk": 194 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Szurmay-Uzsok_Sandor_1860_1945.xml", - "orig_id": 1435139, - "pubinfo": "ÖBL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 178" - }, - "model": "metainfo.source", - "pk": 195 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Tauber_Richard_1891_1948.xml", - "orig_id": 1422288, - "pubinfo": "ÖBL 1815-1950, Bd. 14 (Lfg. 64, 2013), S. 208ff." - }, - "model": "metainfo.source", - "pk": 196 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Teschenberg_Ernst-Maximilian_1836_1886.xml", - "orig_id": 1424387, - "pubinfo": "ÖBL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 257" - }, - "model": "metainfo.source", - "pk": 197 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Tetmajer_Kazimierz_1865_1940.xml", - "orig_id": 2047416, - "pubinfo": "ÖBL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 263" - }, - "model": "metainfo.source", - "pk": 198 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Teuber_Emmerich_1877_1943.xml", - "orig_id": 1448255, - "pubinfo": "ÖBL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 266f." - }, - "model": "metainfo.source", - "pk": 199 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Thun-Hohenstein_Emanuel-Maria_1763_1818.xml", - "orig_id": 1424667, - "pubinfo": "ÖBL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 320f." - }, - "model": "metainfo.source", - "pk": 200 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Toelgyessy_Artur_1853_1920.xml", - "orig_id": 1458532, - "pubinfo": "ÖBL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 366" - }, - "model": "metainfo.source", - "pk": 201 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Thalberg_Sigismund_1812_1871.xml", - "orig_id": 1424641, - "pubinfo": "ÖBL 1815-1950, Bd. 14 (Lfg. 65, 2014), S. 277" - }, - "model": "metainfo.source", - "pk": 531 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Reicha_Anton-Josef_1770_1836.xml", - "orig_id": 1406794, - "pubinfo": "ÖBL 1815-1950, Bd. 9 (Lfg. 41, 1984), S. 27" - }, - "model": "metainfo.source", - "pk": 5804 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Moscheles_Ignaz_1794_1870.xml", - "orig_id": 1413099, - "pubinfo": "ÖBL 1815-1950, Bd. 6 (Lfg. 29, 1975), S. 382f." - }, - "model": "metainfo.source", - "pk": 8543 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Liszt_Franz_1811_1886.xml", - "orig_id": 1411364, - "pubinfo": "ÖBL 1815-1950, Bd. 5 (Lfg. 23, 1971), S. 247f." - }, - "model": "metainfo.source", - "pk": 10332 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Blahetka_Marie-Leopoldine_1810_1885.xml", - "orig_id": 1418730, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 91" - }, - "model": "metainfo.source", - "pk": 17415 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Beethoven_Ludwig-Van_1770_1827.xml", - "orig_id": 1406636, - "pubinfo": "ÖBL 1815-1950, Bd. 1 (Lfg. 1, 1954), S. 64f." - }, - "model": "metainfo.source", - "pk": 17608 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Baeuerle_Friederike_1817_1896.xml", - "orig_id": 1420833, - "pubinfo": "ÖBL Online-Edition, Lfg. 4 (30.11.2015)" - }, - "model": "metainfo.source", - "pk": 17852 - }, - { - "fields": { - "author": "", - "indexed": true, - "orig_filename": "Czerny_Carl_1791_1857.xml", - "orig_id": 1417615, - "pubinfo": "ÖBL Online-Edition, Lfg. 4 (30.11.2015)" - }, - "model": "metainfo.source", - "pk": 18525 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11195 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11196 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11197 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11198 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11199 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11200 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11203 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11204 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11205 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11206 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11207 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11210 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11211 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11214 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11215 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11218 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11219 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11220 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11221 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11222 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11223 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11224 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11225 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11226 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11227 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11228 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11229 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11230 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11231 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11234 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11235 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11236 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11237 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11238 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11239 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11240 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11241 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11242 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11243 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11244 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11245 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11246 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11249 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11250 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11251 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11252 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11253 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11254 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11255 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11256 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11257 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11258 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11259 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11260 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11261 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11262 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11263 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11266 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11269 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11270 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11271 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11272 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11275 - }, - { - "fields": { - "kind": 236, - "source": null, - "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." - }, - "model": "metainfo.text", - "pk": 11278 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11279 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11280 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11281 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11284 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11285 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11286 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11287 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "http://sws.geonames.org/3072359/about.rdf\r\nSchindler, Josef ist in Lachowitz (Lachovice, Böhmen) geboren, es gibt zwei Lachovice in Tschechen, aber im Fall von Schindler, Josef ist der andere, der böhmische Lachovice der richtige" - }, - "model": "metainfo.text", - "pk": 11288 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11289 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11290 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11291 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11292 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11293 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11294 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11299 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11300 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11301 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11302 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11303 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11304 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11305 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11308 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11311 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11312 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11313 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11314 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11317 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11318 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11319 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11320 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11321 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11322 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11323 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11324 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11325 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "ziemlich viele ÖBL labels für Meran!" - }, - "model": "metainfo.text", - "pk": 11326 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11327 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11330 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11331 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11334 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11335 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11336 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11337 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11338 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11339 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11342 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11343 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11344 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11345 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11346 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11347 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11348 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11349 - }, - { - "fields": { - "kind": 2, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11350 - }, - { - "fields": { - "kind": 236, - "source": null, - "text": "" - }, - "model": "metainfo.text", - "pk": 11351 - }, - { - "fields": { - "kind": 130, - "source": 531, - "text": "Sohn von Joseph T. und Fortunée Stein (urkundl.; vermutl. jedoch illegitimer Sohn von ¿Franz Josef Fürst Dietrichstein zu Nikolsburg, Gf. zu Proskau und Leslie und Baronin Wetzlar, einer begabten Amateurpianistin); ab 1844 mit Francesca, der Witwe des Malers François Boucher und Tochter des Opernsängers Luigi Lablache, verheiratet. – 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 ¿Simon Sechter (Theorie) und ¿Johann Nep. Hummel (Klavier). 1826 trat er erstmals, zunächst in Wr. Privatzirkeln, als Pianist auf. 1830 führte ihn die erste Auslandstournee nach Dtld. und England, anschließend in andere europ. Länder. Nach weiteren Stud. bei ¿Ignaz (Isaak) Moscheles sowie bei Johann Peter Pixis und Friedrich Kalkbrenner feierte er ab 1836 große Erfolge in Paris und triumphierte 1837–48 auf Konzerttourneen in ganz Europa. 1855 reiste er nach Nord- und Südamerika, wo er u. a. in New York eine Klavierschule gründete und in Brasilien sowie auf Kuba konzertierte. 1858 kaufte er eine Villa in Posillipo bei Neapel, in der er die nächsten Jahre zurückgezogen 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 ¿Franz v. Liszt als größter Klaviervirtuose seiner Zeit. 1837 kam es zu einem öff. Disput zwischen den beiden Musikern, wobei zwei unterschiedl. Musikanschauungen aufeinandertrafen: Die intellektuelle Öffentlichkeit sah Liszt als Romantiker, während der von seinem Auftreten her aristokrat. T. eher für ein klassizist. Musikideal stand. Auch die Qualität der Kompositionen beider wurde konträr beurteilt. Liszt bezeichnete T.s Werke in der „Revue et gazette musicale de Paris“ als eine Mischung aus Monotonie und Unvermögen. Die so aufgeschaukelte Rivalität kulminierte, als beide Musiker an einem von Fürstin Cristina Trivulzio di Belgiojoso veranstalteten Benefizkonzert mitwirkten; zudem beteiligten sich beide, wie auch Frédéric Chopin und ¿Carl Czerny, an einer Kollektivkomposition für die Fürstin. T.s umfangreiches eigenes Werk entspricht den Anforderungen eines Virtuosen-Komponisten, weshalb Fantasien und Variationen über Themen bekannter Opern dessen größten Tl. ausmachen. Der kompositor. Einfallsreichtum trat hierbei hinter den auf Effekt zielenden Einsatz neuer Kompositionstechniken zurück. T.s Personalstil kennzeichneten v. a. das Hervortreten der auf beide Hände verteilten Melodie in der Mittellage, während diese u. a. von Arpeggien, Doppeltrillern, Terzen- und Sextenketten umspielt wird. Wie er in der Einleitung zu seiner Smlg. „L’Art du chant appliqué au piano“ festhielt, beabsichtigte T. als Interpret, das Publikum nicht durch Virtuosität, sondern durch den kantablen Ton und das Vermeiden alles Mechan. bei gleichzeitiger exakter Umsetzung des Notentexts einzunehmen.\n\n" - }, - "model": "metainfo.text", - "pk": 12155 - }, - { - "fields": { - "kind": 131, - "source": 531, - "text": "Thalberg Sigismund (Fortuné François), Pianist und Komponist. Geb. Pâquis (Genève-Bains des Pâquis, CH), 8. 1. 1812; gest. Posillipo (Napoli, I), 27. 4. 1871." - }, - "model": "metainfo.text", - "pk": 12156 - }, - { - "fields": { - "kind": 130, - "source": 5804, - "text": "Sohn eines Bäckers; lebte ab ca. 1781 bei seinem Großvater in Klattau (Klatovy), dann bei seinem Onkel Josef R., der als Violoncellist und Kapellmeister am kurfürstlichen Hof in Bonn tätig war. 1787 wurde R. Flötist der Hofkapelle und begann zu komponieren. 1794–99 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–08 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ür Komposition. Als Musikpädagoge und Theoretiker erlangte er großes Ansehen, vor allem durch seinen Unterricht im Kontrapunkt. Zu seinen Schülern gehörten eine Reihe von Komponisten und Instrumentalisten wie Liszt (s. d.), Gounod, Berlioz, Franck, Onslow und Baillot. R. hinterließ auch als Komponist ein wertvolles und umfangreiches Œuvre. Mit seinen 24 Bläserquintetten schuf er die Grundlage für das Repertoire derartiger Kammerensembles.\n" - }, - "model": "metainfo.text", - "pk": 21722 - }, - { - "fields": { - "kind": 131, - "source": 5804, - "text": "Reicha (Rejcha) Anton (Antonín) Josef, Komponist und Musikpädagoge. * Prag, 26. 2. 1770; † Paris, 28. 5. 1836." - }, - "model": "metainfo.text", - "pk": 21723 - }, - { - "fields": { - "kind": 130, - "source": 8543, - "text": "Sohn des musikliebenden Tuchfabrikanten Joachim M.; erhielt Klavierunterricht durch Zadrakha und Horzelsky, ab 1804 durch D. Weber. 1808–20 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 über den Alexander-Marsch von 1815 blieben jahrzehntelang ein Prüfstein pianist. Virtuosität) ständig 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änger in Wien (1823) und Prag (1824) auf. 1824 begann in Berlin die Freundschaft mit F. Mendelssohn, die bis zu dessen Tode dauerte. 1825 übersiedelte M. nach London und gehörte durch zwei Jahrzehnte als Komponist, Pianist, Dirigent und Organisator zu den führenden Persönlichkeiten des Musiklebens. 1846 übernahm er auf Mendelssohns Betreiben die Oberleitung des Klavierstud. am Konservatorium in Leipzig. M. war einer der großen Pianisten seiner Zeit und setzte sich vor allem für Beethoven (s. d.), unter dessen Leitung er 1814 den ersten Klavierauszug des „Fidelio“ hergestellt hatte, ein. In Beethovens letzten Lebensmonaten bemühte er sich tatkräftig um dessen Unterstützung durch die Londoner Philharmonic Society.\n" - }, - "model": "metainfo.text", - "pk": 27186 - }, - { - "fields": { - "kind": 131, - "source": 8543, - "text": "Moscheles Ignaz (Isaak), Klaviervirtuose und Komponist. * Prag, 23. 5. 1794; † Leipzig, 10. 3. 1870." - }, - "model": "metainfo.text", - "pk": 27187 - }, - { - "fields": { - "kind": 130, - "source": 10332, - "text": "Sohn des Esterházyschen Verwalters Adam L. (1776–1827), 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ürfte er in Baden bei Wien erstmals öff. aufgetreten sein. Weitere Konzerte folgten in Ödenburg und Preßburg. 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ährige zur Mitarbeit an A. Diabellis (s. d.) „Vaterländischem Künstlerverein“ eingeladen. Am 1. 12. 1822 und am 13. 4. 1823 gab er öff. Konzerte, beim zweiten wurde er von Beethoven (s. d.) vor dem Publikum geküßt. Der Erlös dieser Konzerte und eines weiteren in Budapest am 1. 5. 1823 gab der Familie die Möglichkeit zur Übersiedlung nach Paris; auf der Reise und später von Paris aus gab L. Konzerte (England, Frankreich, Schweiz). Da ihm als Ausländer die Aufnahme ins Pariser Konservatorium verweigert wurde, bildete er sich auf dem Klavier autodidakt., hauptsächlich 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öchsten Kreisen. Berlioz und Paganini regten seine künstler. Entwicklung stark an, weniger Chopin, mit dem er jedoch in gutem persönlichen Kontakt stand. 1835–39 lebte L. mit Gfn. Marie d’Agoult zusammen (von welcher er drei Kinder hatte) in Genf, Paris und Italien. Inzwischen hatte die Künstlerlaufbahn L.s eine entscheidende Wendung genommen: durch seine triumphalen Erfolge bei Konzerten in Wien 1838 bestimmt, begann L. eine Konzerttätigkeit, die 1839 wiederum in Wien begann und ihn durch ganz Europa führte. In Kiew begegnete er 1847 der Fürstin Carolyne Sayn-Wittgenstein, welche ihren Mann verließ und sich schließlich mit L. in Weimar ansiedelte. Hier war L. bereits 1842 zum großherzoglichen Kapellmeister in außerordentlichen Diensten ernannt worden, eine Stelle, die er 1844 erstmals ausgeübt hatte und nun in vollem Maße aufnahm. Seine Lebensgemeinschaft mit der Fürstin, welche die Scheidung ihrer Ehe nicht erreichen konnte, brachte ihn gesellschaftlich in eine peinliche Situation. Unter schwierigen finanziellen und administrativen Verhältnissen entfaltete er eine erfolgreiche künstler. Tätigkeit, welche in dem selbstlosen Eintreten für R. Wagner gipfelte. Wahrscheinlich unter dem Einfluß der Fürstin nahm L. 1865 in Rom die Tonsur und die drei Weihen des Klerikers. Seither führte er ein unstetes und unbefriedigtes Wanderleben, kehrte für kurze Zeit auch nach Weimar zurück, hielt sich jedoch mit Vorliebe in Budapest und Rom auf. Als Virtuose hat L., auf seinem Lehrer C. Czerny fußend, 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öglichkeiten des virtuosen Spieles selbst, etwa des Figurenwerks oder auch der Subtilität 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öglichkeiten überhaupt und in der Programmatik der inhaltlichen Erfüllung (symphon. Dichtungen). L. hat sich auch bedeutende Verdienste um die soziale Stellung des Musikers erworben; er gründete 1861 den Allg. Dt. Musikver. Vielfach geehrt und ausgezeichnet, u. a. 1859 nob.\n" - }, - "model": "metainfo.text", - "pk": 30762 - }, - { - "fields": { - "kind": 131, - "source": 10332, - "text": "Liszt Franz von, Komponist. * Raiding, Kom. Ödenburg (Burgenland), 22. 10. 1811; † Bayreuth (Oberfranken), 31. 7. 1886." - }, - "model": "metainfo.text", - "pk": 30763 - }, - { - "fields": { - "kind": 130, - "source": 17415, - "text": "Von ihrer Mutter und tüchtigen Meistern (Czerny, Kalkbrenner, Moscheles, Sechter) ausgebildet, trat sie 1829 zum ersten Male öffentlich auf, unternahm Konzertreisen durch Mittel- und Westeuropa; lebte seit 1834 in Wien, seit 1840 in Boulogne sur Mer.\n" - }, - "model": "metainfo.text", - "pk": 44908 - }, - { - "fields": { - "kind": 131, - "source": 17415, - "text": "Blahetka Marie Leopoldine, Pianistin. * Guntramsdorf, 15. 11. 1810; † Boulogne sur Mer, 1. 1. 1885." - }, - "model": "metainfo.text", - "pk": 44909 - }, - { - "fields": { - "kind": 130, - "source": 17608, - "text": "B. stammt aus einer aus dem Niederländischen 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ürsten Maximilian, des jüngsten Sohnes der Kaiserin Maria Theresia, dem B. 3 Klaviersonaten gewidmet hatte, wurde für den weiteren äußeren Lebensweg B.s entscheidend, zumal der aus Österr. an den Kölner Hof gekommene Graf Franz Adam Waldstein ihm die für die ersehnte Wr. Lehrzeit nötige geldliche Unterstützung erwirkte. 1787 besuchte er Mozart, der ihn aufmunternd förderte, wurde aber nicht sein Schüler, da die Todeskrankheit der Mutter B.s Rückkehr forderte. Als sie am 17. 7. 1787 starb, mußte B. nun für den entmündigten Vater und die Geschwister sorgen. 1792 kam B. neuerlich durch kurfürstliche Hilfe nach Wien, wo er den gewünschten strengen Unterricht bei Schenk, Albrechtsberger und Salieri nahm und mit Haydn Freundschaft schloß. Seine von da an währende Bindung an Wien ist vor allem Erzh. Rudolf und den Fürsten Lichnowsky, Kinsky und Lobkowitz zu danken, sicher aber auch der Atmosphäre Wiens, in der B. zunehmend Verständnis als Künstler und Freundschaften als Mensch fand. Die Drucklegung seiner Werke, die in allen Musikstädten 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ürmisch auseinandersetzte (s. die annullierte Widmung der“Eroica” an Napoleon, als dieser sich zum K. krönen ließ). Um 1800 begann sein Gehör zu schwinden. 1815 wurde er taub. Das „Heiligenstädter Testament“ von 1802 und B.s Briefwechsel aus jenen Jahren offenbaren die übermenschlichen moralischen Kräfte, die ihn dennoch am Werk ließen, das sich in jener Katastrophenzeit zur Fülle und Herrlichkeit der Symphonien, des Fidelio, der Kammermusik und Klaviersonaten steigerte. Als sein Leiden ihn, der früher als Interpret seiner Werke oder als Improvisator am Klavier und sprühender Geist gesellschaftlich brilliert hatte, immer mehr abschloß, lösten die Freunde Oliva, Schindler und Holz jene glänzende Umgebung ab. Reichste Zwiesprache bot B. seine Naturliebe; er ist eigentlich der erste große Musiker, der ein warmes Verhältnis zur Natur bekennt, auch hierin Haydn näher als Mozart; aber sein Naturempfinden liegt auf der romantischen Geistesebene, die er als Künder einer neuen Epoche um die Wende seiner mittleren Schaffenszeit betrat. 1825 kündigt 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, überfiel ihn eine Lungenentzündung, zu der plötzlich Wassersucht trat. Vier Operationen vermochten den Todkranken nicht zu retten; er verschied am 26. 3. 1827, um dreiviertel 6 Uhr abends.\n" - }, - "model": "metainfo.text", - "pk": 45290 - }, - { - "fields": { - "kind": 131, - "source": 17608, - "text": "Beethoven Ludwig van, Komponist. * Bonn a. Rhein, 16. 12. 1770; † Wien, 26. 3. 1827." - }, - "model": "metainfo.text", - "pk": 45291 - }, - { - "fields": { - "kind": 130, - "source": 17852, - "text": "Tochter von →Adolf Bäuerle und seiner ersten Frau Antonie Bäuerle, geb. Egger. – B. zeigte schon in frühester Kindheit eine Doppelbegabung für Musik und Sprachen, die in ihrer Erziehung sehr gefördert wurde. So erhielt sie Unterricht bei →Carl Czerny. Dennoch beschränkten sich im Erwachsenenalter ihre Auftritte als Pianistin auf die einer Dilettantin bei Benefiz- und ähnlichen Veranstaltungen. Lediglich 1848 soll sie eine Konzertreise durch Deutschland, Belgien, Frankreich und Großbritannien gemacht haben. Im selben Jahr begann ihre schriftstellerische Tätigkeit für die „Wiener Theater-Zeitung“ („Wiener allgemeine Theaterzeitung“) ihres Vaters unter ihren Pseudonymen (auch „F…“). B. war außerdem auch eine überaus produktive Übersetzerin aus dem Englischen und Französischen, u. a. übertrug sie die Novelle „Der Spion der vornehmen Welt“ von Jules Henri Vernoy de Saint-Georges (in: Wiener allgemeine Theaterzeitung 43, 1850, Nr. 36ff.), „Miß Mary, oder die Erzieherin“ (in: Wiener allgemeine Zeitung für Theater, Musik, Kunst, Literatur, geselliges Leben, Conversation und Mode, 1851, Nr. 113ff.) und „Gilbert und Gilberte“ von Eugène Sue (in: Wiener allgemeine Theaterzeitung, 1853, Nr. 1ff.), „Antonie, die Tochter der Berge“ (ebd., 1850, Nr. 157–176, 180–201), „Der letzte Irländer“ (ebd., 1851, Nr. 293ff.) und „Die Marquise von Norville“ von Élie Berthet (1856), „Concino Concini oder Die Tochter des Blinden“ (1855, 1856 Neuaufl. unter dem Titel „Der Menschenjäger oder Der Blinde“) von Emanuele Gonzalès sowie „Die letzte der Feen“ von George Payne Rainsford James (1849). Einige dieser Übersetzungen erschienen auch im „Belletristischen Lese-Cabinett der neuesten und besten Romane aller Nationen“ des Verlags Hartleben. Gemeinsam mit Constant von Wurzbach verfasste sie die sogenannten Blumenbriefe, deren erste Serie 1853 in der „Ostdeutschen Post“ und die zweite 1854 in der von Johannes Nordmann herausgegebenen Wochenschrift „Der Salon“ erschienen. Als ihr Vater vor einer drohenden Verhaftung nach Basel floh und bald darauf (1859) starb, führte sie gemeinsam mit dem Redakteur Moritz Morländer (eigentlich Moriz Engländer) die „Wiener Theaterzeitung“ ab Jänner 1860 fort, musste sie aber mit Oktober desselben Jahres einstellen. Danach lebte B. völlig zurückgezogen.\n" - }, - "model": "metainfo.text", - "pk": 47030 - }, - { - "fields": { - "kind": 131, - "source": 17852, - "text": "Bäuerle Friederike, Ps. Friedrich Horn, Schriftstellerin, Übersetzerin und Pianistin. Geb. Wien, 11. 12. 1817; gest. Urschendorf (Niederösterreich), 17. 7. 1896." - }, - "model": "metainfo.text", - "pk": 47031 - }, - { - "fields": { - "kind": 130, - "source": 18525, - "text": "Enkel des mit Georg Anton Benda befreundeten Beamten und Geigers Dominik Czerny, Sohn von Wenzel Czerny (geb. Nimburg, Böhmen / Nymburk, CZ, 12. 10. 1752; gest. Wien, 1832), der zunächst als Oboist beim Militär und ab 1786 als Klavierlehrer in Wien wirkte, und seiner Frau Maria, geb. Ruzitschka. – Wenzel Czernys Tätigkeit als Klavierlehrer führte die Familie 1791–95 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ßergewöhnlichen Begabung bereits als Neunjähriger in einem der Wiener Augartenkonzerte als Interpret von Mozarts c-Moll-Konzert Nr. 24 auftreten. Von essentieller Bedeutung für C.s weitere Laufbahn wurde der von Wenzel Krumpholtz, einem Geiger des Hofopernorchesters, arrangierte Besuch bei →Ludwig van Beethoven, der ihn unverzüglich als Schüler aufnahm. Binnen Kurzem machte sich C. in Wien als Interpret der neuen Klavierwerke seines Lehrers (1806 war er etwa der Solist bei der Uraufführung von Beethovens erstem Klavierkonzert) einen Namen. Trotz dieser Erfolge beendete C. seine Solistenkarriere früh, um sich dem Unterrichten zu widmen, mit dem er etwa in seinem 15. Lebensjahr begann. Seine wichtigsten Schülerinnen und Schüler waren Theodor Döhler, Stephen Heller, →Sigismund Thalberg, →Marie Leopoldine Blahetka, Ninette de Belleville sowie →Franz von Liszt, den er ab 1819 unterrichtete und mit dem ihn ebenfalls eine lebenslange Freundschaft verband (1852 widmete ihm Liszt seine „Études d’exécution transcendante“). Auch Beethovens Neffe Karl wurde ein Schüler C.s. Im Unterricht verwendete er v. a. Werke Beethovens, Muzio Clementis, →Ignaz Moscheles’ und Johann Sebastian Bachs. C.s Name ist heute untrennbar mit seinen zahlreichen Studienwerken für Klavier verbunden, die sich an Anfänger (etwa „Die Schule der Geläufigkeit“) ebenso richten wie an bereits gereifte Pianisten („Schule des Virtuosen“). Dazu kommen Stücke, die sich den unterschiedlichen Anschlagsarten oder dem Fugenspiel widmen. Die größte Popularität erlangte C.s „Vollständige theoretisch-practische Pianoforte-Schule …“ (1839). Der Rest seines mehr als 1.000 Werke umfassenden kompositorischen Œuvres ist dagegen weitgehend vergessen. Es beinhaltet Klavierkonzerte, Sonaten, Kirchenmusik (darunter 24 Messen), aber ebenso Sinfonien, Kammermusik, Chöre, Gesänge und Bühnenwerke. Stilistisch stehen seine Kompositionen der Wiener Klassik nahe, es finden sich jedoch in geringerem Umfang auch Einflüsse der Romantik. Die Rezeption dieser teils erst Ende des 20. Jahrhunderts wiederentdeckten Stücke ist von einer negativen Beurteilung gekennzeichnet, der sich nicht nur Robert Schumann, sondern auch Liszt anschloss. Darüber hinaus war C. als Musiktheoretiker tätig. Er verfasste eine „Systematische Anleitung zum Fantasieren auf dem Pianoforte“, zählte zu den ersten Editoren einer Bach-Gesamtausgabe und übersetzte vier umfangreiche Kompositions-Traktate von →Anton Reicha. 1842 schrieb C. seine Autobiographie „Erinnerungen aus meinem Leben“. 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ögen künstlerischen und wohltätigen Zwecken, u. a. der Gesellschaft der Musikfreunde in Wien.\n" - }, - "model": "metainfo.text", - "pk": 47126 - }, - { - "fields": { - "kind": 131, - "source": 18525, - "text": "Czerny (Černý) Carl, Pianist, Pädagoge und Komponist. Geb. Leopoldstadt, Niederösterreich (Wien), 21. 2. 1791 (Taufdatum); gest. Wien, 15. 7. 1857 (Ehrengrab: Wiener Zentralfriedhof); röm.-kath." - }, - "model": "metainfo.text", - "pk": 47127 - }, - { - "fields": { - "kind": 130, - "source": 102, - "text": "Sohn eines Notars und liberalen Landtagsabg., stud. klassische Philol., Jus und Nationalökonomie in Wien, Czernowitz und Berlin; hielt sich einige Zeit in Paris, in der Schweiz, in Spanien und Rußland auf, war später Mitleiter der „Freien Bühne“ in Berlin, wo er sich mit Arno Holz und Josef Kainz befreundete. Seit 1894 lebte er in Wien als Schriftsteller, Bühnendichter und Theaterkritiker. 1909 heiratete er die große Wagnerinterpretin, Hofopernsängerin Anna v. Mildenburg (s. u.). 1912 übersiedelte er nach Salzburg (wo er auch begraben ist), wirkte Juni–November 1918 im Direktorium des Wr. Burgtheaters und lebte seit 1922 bis zu seinem Tod in München. B. war einer der bedeutendsten Lustspieldichter seiner Zeit, von außergewöhnlicher Menschenkenntnis, ein glänzender Stilist, Essayist und Kritiker. Seine Werke, besonders die autobiogr., gehören zu den interessantesten Dokumenten der Geistes- und Kulturgeschichte des damaligen Österreich.\n" - }, - "model": "metainfo.text", - "pk": 47200 - }, - { - "fields": { - "kind": 131, - "source": 102, - "text": "Bahr Hermann, Dichter und Schriftsteller. * Linz (O.Ö.), 19. 7. 1863; † München, 14. 1. 1934." - }, - "model": "metainfo.text", - "pk": 47201 - }, - { - "fields": { - "kind": 130, - "source": 114, - "text": "Stud. in Prag, Dr. med., Ass. am Physiologischen Inst., dann an der Landesfindelanstalt tätig und kam so zur Kinderheilkunde; 1894 wurde er nach Breslau berufen. Er klärte die Ursachen der hohen Säuglingssterblichkeit bei künstlicher Ernährung und beschäftigte sich eingehend mit der Tuberkulose im Kindesalter. Später lehrte er in Berlin, Straßburg und Düsseldorf. Durch Cz., einen der Begründer und hervorragendsten Vertreter der Kinderheilkunde, dem es auch gelungen war, eine große Zahl von erfolgreichen Mitarbeitern heranzubilden, hatte Deutschland lange Zeit in der Welt eine führende Stellung in der Kinderheilkunde inne.\n" - }, - "model": "metainfo.text", - "pk": 47204 - }, - { - "fields": { - "kind": 131, - "source": 114, - "text": "Czerny Adalbert, Mediziner. * Szczakowa (Galizien), 25. 3. 1863; † Berlin, 3. 10. 1941." - }, - "model": "metainfo.text", - "pk": 47205 - }, - { - "fields": { - "kind": 130, - "source": 116, - "text": "Absolvierte die Theres, Milit. Akad., 1842–48 österr. Offizier, beteiligte sich 1848 an der Kossuthrevolution, flüchtete 1849 nach Deutschland und lebte von 1850–57 in England und auf Reisen. Er beteiligte sich am ungar. Hilfskorps des Gen. Klapka, wanderte aber 1860 nach Argentinien aus. Präs. 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–69 Obst. der Sappeurtruppe; C. baute die Eisenbahn von Santa Fé nach Esperanza und plante die Festungen in den Provinzen Córdoba, Santa Fé und Buenos Aires. 1870–74 Leiter des Colegio Militar; 1875– 83 leitete er die topographischen Aufnahmen in der Provinz Entre Rios und stellte die ersten Katastralmappen des Landes her, gleichzeitig Prof. für Mathematik in Concepción del Uruguay. 1884 in die Prüfungskomm. des Colegio Militar und in die Comisión revisadora y proyectora berufen, 1884–95 wirkte er auch in der Jefatura der 4. Sektion des Estado Mayor (milit. Ingenieurwesen); 1891 Obst. der Ingenieurwaffe.\n" - }, - "model": "metainfo.text", - "pk": 47206 - }, - { - "fields": { - "kind": 131, - "source": 116, - "text": "Czetz Johann. * Gidófalva, 8. 6. 1822; † Buenos Aires, 6. 9. 1904." - }, - "model": "metainfo.text", - "pk": 47207 - }, - { - "fields": { - "kind": 130, - "source": 117, - "text": "Stud. in Brünn und Olmütz unter Leitung seines Oheims Caroni, trat 1808 in das mährisch-schlesische Landrecht ein, 1809 Freiwilliger in der Landwehr, dann wieder im Zivilstaatsdienst; 1834 Hofsekretär bei der Obersten Justizstelle in Wien.\n" - }, - "model": "metainfo.text", - "pk": 47208 - }, - { - "fields": { - "kind": 131, - "source": 117, - "text": "Czikann Johann Jakob Heinrich, Beamter und Schriftsteller. * Brünn, 10. 7. 1789; † Brünn, 10. 6. 1855." - }, - "model": "metainfo.text", - "pk": 47209 - }, - { - "fields": { - "kind": 130, - "source": 108, - "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ämpfte mit Auszeichnung bei S. Lucia, Vicenza, Novara, Mortara und Custozza (Maria-Theresien-Orden), 1849 FML., dann Kmdt. des siebenbürgischen Armeekorps, stellte die Verbindung mit den Russen her und besiegte Berm bei Sepsi-Sz. György und Kaszon-Ujfalu; Landeskommandierender in Böhmen, Oberstinhaber des Chevauxleger Rgts. 6. 1853 Geh. Rat, 1854 Kmdt. des 2. Kavalleriekorps, kämpfte 1859 bei Magenta und Solferino, 1861 Gen. d. Kav. und Herrenhausmitgl., 1862 Ritter des Ordens vom Gold. Vließ; 1866 Kmdt. des 1. Armeekorps gegen Preußen, wurde in mehreren Gefechten geschlagen, seines Kommandos enthoben, in der kriegsgerichtlichen Untersuchung freigesprochen und rehabilitiert.\n" - }, - "model": "metainfo.text", - "pk": 47210 - }, - { - "fields": { - "kind": 131, - "source": 108, - "text": "Clam-Gallas Eduard Graf, General. * Prag, 11. 3. 1805; † Wien, 17. 3. 1891." - }, - "model": "metainfo.text", - "pk": 47211 - }, - { - "fields": { - "kind": 130, - "source": 109, - "text": "Ältester Sohn des Staatsrates Karl Josef C.-M., stud. Jus, trat 1848 in den Staatsdienst ein, 1853–59 Landespräs. von Westgalizien, 1860 in den Reichsrat berufen, Berichterstatter der Majorität; hauptsächlich nach seinen Vorschlägen entstand das Oktoberdiplom; Führer der feudal-klerikal-slaw. und föderalistischen 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ück und C. war wie vorher als Generalreferent des Budgets tätig; 1884 zog er sich krankheitshalber vom öffentlichen Leben zurück; seit 1859 Geh. Rat, seit 1861 Präs. des Böhmischen Mus., Ehrenmitgl. der Kgl. Böhm. Ges. d. Wiss.\n" - }, - "model": "metainfo.text", - "pk": 47212 - }, - { - "fields": { - "kind": 131, - "source": 109, - "text": "Clam-Martinic Heinrich Jaroslav Graf, Verwaltungsjurist und Politiker. * St. Georgen (Ungarn), 15. 6. 1826; † Prag, 5. 6. 1887." - }, - "model": "metainfo.text", - "pk": 47213 - }, - { - "fields": { - "kind": 130, - "source": 110, - "text": "Eng befreundet mit dem Thronfolger, seit 1913 als Nachfolger des Fürsten Thun Führer der Rechten im Herrenhaus, stand hier und im böhmischen Landtag den Tschechen nahe. Im Weltkrieg kämpfte er an der russ. und an der italien. Front und rückte von den Tschechen ab, als diese immer mehr auf die Zerstörung der Monarchie hinarbeiteten. Oktober 1916 Ackerbaumin., Dezember 1916 bis 22. 6. 1917 Ministerpräs. Er suchte vergeblich, Vertreter aller österr. Nationalitäten 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ünsche nicht erfüllt wurden und vermochte nicht, die Tschechen, Südslawen und Ruthenen von der Opposition abzubringen; er demissionierte Juni 1917; 1917–19 Militärgouverneur von Montenegro. Präs. der Vereinigung kathol. Edelleute Österr., Ritter des Ordens vom Goldenen Vließ, Geh. Rat und Kämmerer.\n" - }, - "model": "metainfo.text", - "pk": 47214 - }, - { - "fields": { - "kind": 131, - "source": 110, - "text": "Clam-Martinic Heinrich Graf, Staatsmann. * Wien, 1. 1. 1863; † Clam b. Grein, 7. 3. 1932." - }, - "model": "metainfo.text", - "pk": 47215 - }, - { - "fields": { - "kind": 130, - "source": 111, - "text": "Stud. in Marburg und Gießen Medizin, Mathematik und Zoologie, 1857 Dr.phil., habil. 1858 das., 1859 Priv. Doz., 1860 ao. Prof. für Zoologie in Würzburg, 1870 in Göttingen, 1873 für Zoologie und vergleichende Anatomie an die Univ. Wien berufen, zugleich Vorstand des zoologisch-anatomischen Inst. und Dir. der zoolog. Station in Triest, deren Gründer er war. Mitgl. der Akad. d. Wiss. in Wien und der Ges. der Wiss. in Göttingen, vertrat in Wien den Darwinismus, war aber Gegner Haeckels.\n" - }, - "model": "metainfo.text", - "pk": 47216 - }, - { - "fields": { - "kind": 131, - "source": 111, - "text": "Claus Karl Friedrich, Zoologe. * Hessen-Kassel, 2. 1. 1835; † Wien, 18. 1. 1899." - }, - "model": "metainfo.text", - "pk": 47217 - }, - { - "fields": { - "kind": 130, - "source": 112, - "text": "Stud. in Göttingen und Berlin, 1855 Dr. phil., 1857–60 bereiste er Italien, Griechenland und besonders die Inseln des Thrakischen Meeres, 1861 Priv. Doz. für Archäologie an der Univ. Berlin, 1863 a.o. Prof. in Halle, wurde 1869 auf die neuerrichtete archäologische Lehrkanzel der Univ. Wien berufen und entfaltete hier bis 1877 eine erfolgreiche, Archäologie, Kunstgeschichte und klass. Philologie verbindende Lehrtätigkeit. Er begründete die Wr. Vorlegeblätter, errichtete 1876 zusammen mit O. Hirschfeld das Archäolog.-epigr. Seminar, führte zwei österr. Grabungskampagnen auf der Insel Samothrake durch, rief das große Werk der Wr. Akad. d. Wiss. „Die attischen Grabreliefs“ ins Leben und gab in 3 Heften der Denkschriften „Römische Bildwerke einheimischen Fundorts in Österreich“ heraus. 1877–87 übernahm C. die Leitung der Skulpturensmlg. der kgl. Museen in Berlin, 1887–1905 leitete er als Gen.-Sekr. das Archäolog. Inst. des Dt. Reiches, dem er 1903 in der Röm.-german. Komm. auch eine Zentralstelle für die archäolog. Heimatforschung anschloß. 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äologie durch bahnbrechende Werke gefördert und als Organisator Grosses geleistet. Seit 1869 Mitgl., 1908 Ehrenmitgl. der Akad. d. Wiss. in Wien.\n" - }, - "model": "metainfo.text", - "pk": 47218 - }, - { - "fields": { - "kind": 131, - "source": 112, - "text": "Conze Alexander, Archäologe. * Hannover, 10. 12. 1831; † Berlin, 19. 7. 1914." - }, - "model": "metainfo.text", - "pk": 47219 - }, - { - "fields": { - "kind": 130, - "source": 113, - "text": "Sohn des Hofschauspielers Karl Ludwig C., stud. seit 1853 bei dem Bildhauer Melnitzky und an der Wr. Akad. d. bild. Künste, hatte 1860–64 ein Atelier in München, wurde dann nach Wien berufen, um die Marmorstatuen von Dampierre, Veterani und Schwarzenberg für das Arsenal auszuführen, leitete 1883 die Jubiläumsausstellung zur Türkenbelagerung im Rathaus, stellte 1886 die städtische Waffensmlg. und die Grillparzerausstellung auf. Mitgl. der Wr. Akad. d. bild. Künste.\n" - }, - "model": "metainfo.text", - "pk": 47220 - }, - { - "fields": { - "kind": 131, - "source": 113, - "text": "Costenoble Karl, Bildhauer. * Wien, 26. 11. 1837; † Wien, 20. 6. 1907." - }, - "model": "metainfo.text", - "pk": 47221 - }, - { - "fields": { - "kind": 130, - "source": 103, - "text": "Stud. in Prag Jus; ao. Prof. für Rechtsgeschichte an der Univ. Prag; Mitgl. der Böhm. Ges. d. Wiss. und der Krakauer Akad., jungtschech. Landtags- und Reichstagsabg. Bedeutendster Forscher auf dem Gebiet des böhm. Stadtrechtes.\n" - }, - "model": "metainfo.text", - "pk": 47226 - }, - { - "fields": { - "kind": 131, - "source": 103, - "text": "Celakovský Jaromír, Rechtshistoriker u. Politiker. * Breslau, 21. 3. 1846; † Prag, 16. 10. 1914." - }, - "model": "metainfo.text", - "pk": 47227 - }, - { - "fields": { - "kind": 130, - "source": 104, - "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ück. 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ätze. 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 „Komitees für die naturwiss. Durchforschung Böhmens“ und Mitgl. der „Böhmischen Ges. d. Wiss.“\n" - }, - "model": "metainfo.text", - "pk": 47228 - }, - { - "fields": { - "kind": 131, - "source": 104, - "text": "Celakovský Ladislav, Botaniker. * Prag, 29. 11. 1834; † Prag, 24. 11. 1902." - }, - "model": "metainfo.text", - "pk": 47229 - }, - { - "fields": { - "kind": 130, - "source": 105, - "text": "Gründete 1842 eine Fabrik für Blechblasinstrumente und baute eine Anzahl versch. geformter Kontrabaßinstrumente für die Harmoniemusik; erfand 1846 die Tonwechselmaschine, 1873 die Walzenmaschine etc.\n" - }, - "model": "metainfo.text", - "pk": 47230 - }, - { - "fields": { - "kind": 131, - "source": 105, - "text": "Cervený Václav František, Instrumentenmacher. * Dubec (Böhmen), 27. 9. 1819; † Königgrätz, 19. l. 1896." - }, - "model": "metainfo.text", - "pk": 47231 - }, - { - "fields": { - "kind": 130, - "source": 106, - "text": "Sohn des Malers Matthias Ch., befaßte sich schon als Knabe mit Zeichnen und Malen, stud. an der Wr. Akad. d. bild. Künste, dann bei seinem Bruder Eduard Ch. und bei Makart.\n" - }, - "model": "metainfo.text", - "pk": 47232 - }, - { - "fields": { - "kind": 131, - "source": 106, - "text": "Charlemont Hugo de, Maler. * Jamnitz, 18. 3. 1850; † Wien, 18. 3. 1939." - }, - "model": "metainfo.text", - "pk": 47233 - }, - { - "fields": { - "kind": 130, - "source": 107, - "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 „Vater der Armen“ gepriesen, 1814 Fürsterzb. von Prag, 1815 inthronisiert. Gründete Schulen und Wohltätigkeitsanstalten.\n" - }, - "model": "metainfo.text", - "pk": 47234 - }, - { - "fields": { - "kind": 131, - "source": 107, - "text": "Chlumczanský Wenzel Leopold von, Bischof. * Hostitz (Böhmen), 15. 11. 1749; † 14. 6. 1830." - }, - "model": "metainfo.text", - "pk": 47235 - }, - { - "fields": { - "kind": 130, - "source": 121, - "text": "Sohn des Industriellen Nikolaus D., Dr. jur., seit 1897 im diplomatischen Dienst, 1881–86 in London, dann in St. Petersburg, Rom, Bukarest und Paris, 1903 a o. Gesandter und bevollmächtigter Min. in Belgrad, vertrat 1908 Österr.-Ungarn auf der internationalen Seekriegskonferenz in London und war 1913–15 a o. und bevollmächtigter Botschafter in den USA., 1916 i. R. Seit 1917 in der Völkerbunds- und Friedensbewegung tätig, Präs. der österr. Völkerbundliga; Pazifist; Freund und Förderer von Kunst und Wiss.\n" - }, - "model": "metainfo.text", - "pk": 47236 - }, - { - "fields": { - "kind": 131, - "source": 121, - "text": "Dumba Konstantin Theodor, Diplomat. * Wien, 17. 6. 1856; † Bodensdorf/Ossiachersee, 6. 1. 1947." - }, - "model": "metainfo.text", - "pk": 47237 - }, - { - "fields": { - "kind": 130, - "source": 120, - "text": "Stud. in Stuttgart und Berlin, arbeitete längere Zeit im Atelier Siccardsburgs und Van der Nülls, Prof. an der Genieakad. in Klosterbruck b. Znaim, seit 1866 an der Techn. Hochschule Wien. Hofrat.\n" - }, - "model": "metainfo.text", - "pk": 47238 - }, - { - "fields": { - "kind": 131, - "source": 120, - "text": "Doderer Wilhelm von, Architekt. * Heilbronn, 2. 1. 1825; † Wien, 13. 5. 1900." - }, - "model": "metainfo.text", - "pk": 47239 - }, - { - "fields": { - "kind": 130, - "source": 118, - "text": "Sohn eines Bauern, zeigte früh Interesse für 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ünchen, 1863–65 nach Paris, dann nach Tirol zurück, 1867 wieder nach München, wo er in das Atelier Pilotys eintrat, der den entscheidenden Einfluß auf ihn ausübte. 1878 Prof. an der Münchner Akad., 1883 geadelt. D., bedeutend als Landschafts- und Historienmaler, ist außerdem einer der charakteristischesten und letzten Vertreter der naturalistisch betonten bäuerlichen Genremalerei.\n" - }, - "model": "metainfo.text", - "pk": 47240 - }, - { - "fields": { - "kind": 131, - "source": 118, - "text": "Defregger Franz von, Maler. * Stronach b. Lienz, 30. 4. 1835; † München, 2. 1. 1921." - }, - "model": "metainfo.text", - "pk": 47241 - }, - { - "fields": { - "kind": 130, - "source": 119, - "text": "Stud. in Wien und Berlin, Dr.phil., arbeitete 1899–1901 unter der Leitung von Sickel und Pastor am Österr. Hist. Inst. in Rom, hauptsächlich an den Nuntiaturberichten des 16. Jh. 1905 Priv. Doz. an der Univ. Innsbruck, 1909 ao. Prof., 1917–46 (mit Unterbrechung von 1938–45) Ordinarius für Geschichte der Neuzeit. D., ein guter Kenner der Bestände des Vat. Geheimarchivs, war 1929–38 als Nachfolger Pastors Dir. des Österr. Hist. Inst. in Rom, das 1935 unter seiner Leitung in das Österr. Kulturinst. umgewandelt wurde. Korr. Mitgl. der Akad. d. Wiss. in Wien.\n" - }, - "model": "metainfo.text", - "pk": 47242 - }, - { - "fields": { - "kind": 131, - "source": 119, - "text": "Dengel Ignaz Philipp, Historiker. * Elbigenalp, 22. 6. 1872; † Innsbruck, 9. 9. 1947." - }, - "model": "metainfo.text", - "pk": 47243 - }, - { - "fields": { - "kind": 130, - "source": 122, - "text": "Startete 1926 das erstemal bei einem Schülerlaufen, bei dem sie den 3. Platz belegen konnte, siegte 1927 in beiden Jugendlaufen für Mädchen bis 13 Jahre und erreichte 1928 in der Jugendklasse der Mädchen einen 1. und zwei 2. Plätze. 1929 gewann sie das Verbands-Neulings-Laufen für Damen, 1930 wurde sie Siegerin in den Internationalen Junioren-Laufen für Damen in Innsbruck, Grummhübel, Wien, St. Moritz und Troppau und belegte bei den beiden Verbands-Senioren-Laufen für Damen in Wien den 2. Platz. 1931 gewann sie die Internationalen Damen-Senioren-Laufen am Semmering, in Davos und in Zürich, belegte bei der Europameisterschaft in St. Moritz den 3. Platz und bei der Weltmeisterschaft in Berlin den 2. Platz. 1932 gewann sie die österr. Meisterschaft im Kunstlaufen für Damen, wurde bei der Europameisterschaft in Paris 4. und gewann die Internationalen Senioren-Laufen für Damen in Zürich und am Semmering. 1933 wurde sie abermals österr. Meisterin. Bei der Europameisterschaft in London konnte sie sich an 4. und bei der Weltmeisterschaft in Stockholm an 3. Stelle placieren. Eine tück. Erkrankung (Blinddarm) bereitete ihrem erfolgreichen Leben ein jähes Ende.\n" - }, - "model": "metainfo.text", - "pk": 47276 - }, - { - "fields": { - "kind": 131, - "source": 122, - "text": "Holovsky Hilde, Kunstläuferin. * Wien, 29. 4. 1917; † Wien, 3. 7. 1933." - }, - "model": "metainfo.text", - "pk": 47277 - }, - { - "fields": { - "kind": 130, - "source": 134, - "text": "Sohn des Mieser Stadtarztes; stud. an den Univ. Prag, Wien (1884 Dr. med.) und Heidelberg. 1891 Habil. an der Univ. Wien, 1887–94 Ass. an der I. Med. Univ. Klinik Wien bei H. Nothnagel, 1894–1903 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ür Innere Med. an der Univ. Graz. 1922 Hofrat, 1930 em. L. war korr. Mitgl. der Ges. der Ärzte in Wien, Mitgl. der Dt. Ges. für innere Med. und der Dt. Naturforscher und Ärzte, Ehrenmitgl. des Naturwiss. Ver. Stmk.\n" - }, - "model": "metainfo.text", - "pk": 47384 - }, - { - "fields": { - "kind": 131, - "source": 134, - "text": "Lorenz Heinrich, Internist. * Mies (Stríbro, Böhmen), 13. 4. 1859; † Graz, 25. 3. 1945." - }, - "model": "metainfo.text", - "pk": 47385 - }, - { - "fields": { - "kind": 130, - "source": 133, - "text": "Stud. Med. in Wien, wendete sich aber schon nach einem Jahr der journalist. Laufbahn zu. Er begann bei der „Korrespondenz Wilhelm“, die Polizei- und Hofämter zu verbinden hatte. 1873 wurde er Gerichtssaalreporter und Lokalfeuilletonist beim „Illustrierten Wiener Extrablatt“; 1876 war L. Kriegsberichterstatter im serb.-türk., 1877 im russ.-türk. 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ähigkeit und verzichtete nicht auf die Befriedigung von Sensationslust und seichter Sentimentalität. Das „Illustrierte Wiener Extrablatt“ war die von den breiten Massen meistgelesene Ztg. Wiens. Lokalpatriotismus bekundete L. als Organisator der Hilfseinrichtung des „Armenvaters“ in seinem Bl. sowie als Viennensia-Sammler.\n" - }, - "model": "metainfo.text", - "pk": 47388 - }, - { - "fields": { - "kind": 131, - "source": 133, - "text": "Löwy Julius, Ps. Von der Als, Schriftsteller und Journalist. * Eidlitz (Údlice, Böhmen), 14. 9. 1851; † Wien, 27. 12. 1905." - }, - "model": "metainfo.text", - "pk": 47389 - }, - { - "fields": { - "kind": 130, - "source": 132, - "text": "Sohn eines Färbermeisters, Vater des Folgenden; erlernte die Glasmalerei und arbeitete dann als Geselle beim Glaser in Lambach. 1818 ging er nach Wien und eröffnete 1823 im 1. Bez. in der Weihburgg. einen Laden „Zur Kaiserin von Österreich“, 1824 einen Laden Kärntnerstr. 940, der 1844 vergrößert wurde. 1824 wurde L. Meister und Bürger von Wien, 1835 Untervorsteher der Genossenschaft der Glaser, Glashändler und Glasschleifer, 1838 kaufte er Lager und Einrichtung der Konkurrenzfa. Janke & Görner auf, 1848 wurden Front und Innenausstattung des inzwischen sehr vergrößerten Geschäftes vollständig erneuert. L., nicht nur Glashändler, sondern auch Besitzer der Glasfabriken Marienthal und Zwechewo in Slawonien (wohin er häufig Reisen in Begleitung seiner Söhne Josef oder Ludwig unternahm), versuchte, nach französ. Preßglas eine Erzeugung aus slawon. Glas, das jedoch zu diesem Zweck zu hart war, so daß er viel französ. Preßglas einführen mußte. 1851 errichtete er eine Raffinerie in Blottendorf bei Haida. Die fertig raffinierten Gegenstände wurden nach Wien geliefert bzw. wurden auch Gegenstände nach L.s Entwürfen und Zeichnungen angefertigt. L., der als Vermittler zwischen Produzenten und Konsumenten tätig war, bezog Glas aus den böhm. Hütten und ließ nach eigenen Mustern arbeiten. 1823–55 wurden Gläser 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 Ägypten und arbeitete für den Palazzo Reale in Venedig.\n" - }, - "model": "metainfo.text", - "pk": 47394 - }, - { - "fields": { - "kind": 131, - "source": 132, - "text": "Lobmeyr Josef, Fabrikant. * Grieskirchen (O.Ö.), 17. 3. 1792; † Wien, 8. 5. 1855." - }, - "model": "metainfo.text", - "pk": 47395 - }, - { - "fields": { - "kind": 130, - "source": 130, - "text": "Absolv. das Realgymn.; arbeitete bis 1868 für die Z. „Illustrierte Welt“, gab dann das demokrat. Bl. „Freie Volksstimme“ heraus, war Korrespondent ausländ. Ztg. und begründete gem. mit S. Spitz 1870/71 das „Österreichisch-ungarische Volksblatt für Stadt und Land“. Angeregt durch seine Bekanntschaft mit dem Nationalökonomen L. v. Stein stud. er Volkswirtschaft und Statistik und gründete 1874 das Fachbl. „Gambrinus“, welches großes Ansehen genoß. 1890 und 1891 Generalberichterstatter auf Ausst., 1894 Dir. der Internationalen Bier- und Nährausst. in Wien, 1904 k. Rat, Präs. des österr. Fachschriftstellerverbandes, Vizepräs. des Reichsverbandes österr. Journalisten und Schriftsteller, Ortsschulrat, Mitgl. der Concordia.\n" - }, - "model": "metainfo.text", - "pk": 47402 - }, - { - "fields": { - "kind": 131, - "source": 130, - "text": "Lichtblau Adolf, Ps. A. L. Blau, Wandernder Biermann, Schriftsteller. * Wien, 17. 5. 1844; † Abbazia (Opatija, Istrien), 10. 5. 1908." - }, - "model": "metainfo.text", - "pk": 47403 - }, - { - "fields": { - "kind": 130, - "source": 131, - "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üfung, nach Dienstleistung bei verschiedenen Gerichten (1920 OLGR) 1924 Senatsvorsitzender beim Landesgericht für 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üglichen Gutachten bei Referentenbesprechungen hervortrat, erwarb sich größte Verdienste durch die ausgezeichnete Umarbeitung und Neuhrsg. des Neumannschen Kommentars zur Exekutionsordnung. In diesem Hdb., welches das österr. Exekutionsrecht lückenlos erfaßt und seinen Zusammenhang mit den übrigen Rechtsgebieten aufzeigt, ist auch das internationale Vollstreckungsrecht, soweit in Vollstreckungsverträgen niedergelegt, tw. berücksichtigt und dadurch die Exekutionsgrundsätze eines großen Rechtsgebietes einheitlich dargestellt. 1921 Hofrat.\n" - }, - "model": "metainfo.text", - "pk": 47404 - }, - { - "fields": { - "kind": 131, - "source": 131, - "text": "Lichtblau Ludwig, Jurist. * Olmütz (Olomouc, Mähren), 25. 2. 1875; † Wien, 19. 12. 1935." - }, - "model": "metainfo.text", - "pk": 47405 - }, - { - "fields": { - "kind": 130, - "source": 128, - "text": "Sohn eines Gutsbesitzers; stud. ab 1852 an den Univ. Graz (1855 Dr. phil.) und Wien Naturwiss., 1865 Lehramtsprüfung, wirkte dann an verschiedenen Gymn., 1866 am Staatsgymn. in Graz, 1866 Priv.-Doz. für 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ür Botanik an der Techn. Hochschule am Joanneum (bis 1879/80). L. war der Begründer des Botan. Inst. der Univ., das gegenüber dem Botan. Garten untergebracht war. Er selbst und seine Ass. sammelten und stellten die notwendigen Lehrmittel her, seine reiche Privatbücherei ersetzte die fehlende Inst.-Bibl. und wurde erst nach seinem Tode vom Staate angekauft. L., der Berufungen nach Wien (1873) und Tübingen (1878) ausschlug, wurde vielfach geehrt und ausgezeichnet, u. a. 1887 w. Mitgl. der Akad. der Wiss. in Wien, der Leopoldina in Halle, 1876 Präs. des Naturwiss. Ver. für Stmk. Von seinen in verschiedenen Z. erschienenen 45 wiss. Veröff. aus den Gebieten der Pflanzenanatomie, Physiol. und Entwicklungsgeschichte treten besonders die über Lebermoose, sein spezielles Arbeitsgebiet, hervor; auch die beiden selbständig erschienenen Werke gehören dazu, von denen die umfangreiche Monographie „Untersuchungen über die Lebermoose“ in Fachkreisen als Meisterwerk bezeichnet wurde. Als dt. fortschrittlich gesinnter Abg. im Kärntner Landtag (1869–72) erwarb sich L. besonders durch sein Eintreten in Fragen der Schul- und Volksbildung Verdienste.\n" - }, - "model": "metainfo.text", - "pk": 47410 - }, - { - "fields": { - "kind": 131, - "source": 128, - "text": "Leitgeb Hubert, Botaniker. * Portendorf b. Klagenfurt (Kärnten), 20. 10. 1835; † Graz, 5. 4. 1888 (Selbstmord)." - }, - "model": "metainfo.text", - "pk": 47411 - }, - { - "fields": { - "kind": 130, - "source": 129, - "text": "Vater des Anatomen József v. L. (s. d.), Großvater des Vorigen; nach Beendigung der Mittelschule bei den Jesuiten in Preßburg 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–17 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ße Verdienste um die Bekämpfung der Cholera. Er maß den psych. Vorgängen bei Erkrankungen und auch in der Therapie große Bedeutung bei. Seine wichtigsten Arbeiten behandeln physiolog. und psycholog. Probleme.\n" - }, - "model": "metainfo.text", - "pk": 47414 - }, - { - "fields": { - "kind": 131, - "source": 129, - "text": "Lenhossék Mihály Ignác von, Physiologe. * Preßburg, 11. 5. 1773; † Ofen (Buda, Ungarn), 11. 2. 1840." - }, - "model": "metainfo.text", - "pk": 47415 - }, - { - "fields": { - "kind": 130, - "source": 125, - "text": "Sohn des Vorigen; nach Stud. an den Akad. der bildenen Künste in Wien (bei Griepenkerl, s.d.) und München (bei Gysis und Diez) wirkte L. in seiner Heimatstadt, wo er schon vor Gründung der Sezession (1897) Jugendstil-Tendenzen vertrat. Er begann mit Genre-, Märchen- und Landschaftsbildern, betätigte sich aber nach Gründung des Hagenbundes, 1901 mit seinem Schwager und dem Architekten J. Urban, unter dessen Einfluß, mit außerordentlicher Vielseitigkeit und Ausstrahlung auf allen Gebieten der angewandten Kunst, wobei er eine Linie biedermeierlicher Idyllik anschlug. Er schuf Interieurs (Rathauskeller Wien, Schloß Esterhazy bei Preßburg, Privatwohnungen der Maler Goltz und Ranzoni), Bühnen- und Kostümentwürfe, Stickereien, Fächer, Kassetten, Möbel, Uhren, Buchschmuck und -illustrationen sowie die Ausstattung des Festzuges zum 60jährigen Regierungsjubiläum von K. Franz Joseph I. (s. d.) 1908. 1900–03 war er (als Vorgänger von A. Roller) Ausstattungschef der Wr. Hofoper.\n" - }, - "model": "metainfo.text", - "pk": 47418 - }, - { - "fields": { - "kind": 131, - "source": 125, - "text": "Lefler Heinrich, Maler und Graphiker. * Wien, 7. 11. 1863; † Wien, 14. 3. 1919." - }, - "model": "metainfo.text", - "pk": 47419 - }, - { - "fields": { - "kind": 130, - "source": 126, - "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. „Der Metallarbeiter“ und arbeitete als Sekretärin bei O. Bauer im Finanzmin. sowie in der Sozialisierungskomm. 1924 übernahm sie das Referat für Frauenarbeit in der Wr. Kammer für Arbeiter und Angestellte und redigierte die Frauenbeilage der Z. „Arbeit und Wirtschaft“. L., welche sich der Sozialdemokrat. Partei Österr. angeschlossen hatte, heiratete 1921 den Redakteur der „Arbeiter-Zeitung“ Dr. Otto L. (einen der engsten Mitarbeiter O. Bauers), den späteren 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ündungsmitgl. der illegalen Partei der „Revolutionären Sozialisten“ Österr., leitete die polit. Schulungsarbeit und wurde 1936 die Leiterin des polit. Nachrichtendienstes der „Revolutionären Sozialisten“. 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ück.\n" - }, - "model": "metainfo.text", - "pk": 47420 - }, - { - "fields": { - "kind": 131, - "source": 126, - "text": "Leichter Käthe, geb. Pick, Schriftstellerin und Politikerin. * Wien, 20. 8. 1895; † Ravensbrück (Brandenburg), 17. 3. 1942 (KZ)." - }, - "model": "metainfo.text", - "pk": 47421 - }, - { - "fields": { - "kind": 130, - "source": 127, - "text": "Neffe des Großhändlers 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. Über 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ße Erfolge errang. 1839 ging er für zwei Jahre nach Lemberg, von wo aus er sehr erfolgreiche Gastspielreisen in alle größeren Städte Deutschlands unternahm. Engagements am Hoftheater in St. Petersburg, Freiburg, Baden-Baden und Posen folgten; in den letzteren drei Städten führte L. auch die Dion. des Theaters. 1854 pachtete er das Königstädt. Vaudeville-Theater in Berlin und begann hier im September 1855 mit seiner Ges. aus Posen den Theaterbetrieb. Durch seine Geschäftstüchtigkeit, seinen Fleiß und künstler. Spürsinn erlangte das Theater, das er 1857 gekauft und durch eine Sommerbühne erweitert hatte, bald lokale Berühmtheit. 1864 ließ er es vergrößern und renovieren und eröffnete es am 3. 12. als „Wallnertheater“. Hatte er in den ersten Jahren seiner Dions.-Tätigkeit vor allem das moderne französ. Sittenstück gepflegt, verwirklichte er in späteren Jahren mit Hilfe des Dichters D. Kalisch und seines vorzüglichen Ensembles seine Idee einer Berliner Lokalposse. 1868 verpachtete er aus gesundheitlichen Gründen das Theater an C. Lebrun und unternahm nun einige größere Reisen. Seine Reise- und Theatererlebnisse veröff. L., der auch Mitarbeiter der „Gartenlaube“ war, in viel gelesenen Büchern. In zweiter Ehe war L. mit der Schauspielerin Agnes L., geb. Kretschmar, verheiratet, einer Hauptkraft seines Berliner Ensembles.\n" - }, - "model": "metainfo.text", - "pk": 47422 - }, - { - "fields": { - "kind": 131, - "source": 127, - "text": "Leidesdorf Franz, Ps. Wallner, Schauspieler, Theaterdirektor und Schriftsteller. * Wien, 25. 9. 1810; † Nizza, 19. 1. 1876." - }, - "model": "metainfo.text", - "pk": 47423 - }, - { - "fields": { - "kind": 130, - "source": 124, - "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ärgrenze, zuerst in Temesvár, dann in Petrinja, Peterwardein, ab 1873 Agram und 1875 wieder in Petrinja. 1886 Referent für Wasserbau bei der Landesregierung in Agram, 1892 Obering., 1897 kgl. techn. Rat, 1899 i.R. 1890–94 Sekretär des Ver. kroat. Ing. und Architekten, einige Zeit Redakteur der „Vijesti“ (Berr.) dieses Ver. L. baute Straßen (Ogulin–Novi, Alt-Gradiška–Lipik), die Kanalisation des Jelas-Feldes und im südöstlichen Syrmien, Wasserleitungen für die Städte Zengg, Gospic und Crikvenica, Uferschutzbauten bei Semlin und entlang der Save und entwarf den Hauptplan für die Kanalisation von Agram etc.\n" - }, - "model": "metainfo.text", - "pk": 47428 - }, - { - "fields": { - "kind": 131, - "source": 124, - "text": "Lapaine Valentin, Techniker. * Woiska b. Idria (Vojsko pri Idriji, Innerkrain), 5. 2. 1843; † Agram, 21. 2. 1923." - }, - "model": "metainfo.text", - "pk": 47429 - }, - { - "fields": { - "kind": 130, - "source": 123, - "text": "Tochter des Großindustriellen Josef v. Schroll (1821–91), in erster Ehe verheiratet mit dem Fabrikanten J. Suida (1849–89), Bürgermeister der Stadt Braunau 1883–89, in zweiter Ehe ab 1892 mit dem Politiker und Großindustriellen Eduard L. (s. d.); sie war seit 1889 mit ihrer aus der zweiten Ehe ihres Vaters stammenden Schwester Eleonore, verh. Kriesche, öff. 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ßer Sachkenntnis und Umsicht, arbeitete rastlos an deren techn. Entwicklung und sorgte vorbildlich (Büchereien, Krankenkasse, Spital etc.) für die bereits um die Jahrhundertwende ca. 2600 zählenden Arbeiter und Angestellten. Durch ihre volkskundlichen Smlgn. legte sie den Grund zu einem Heimatmus. des Braunauer Ländchens.\n" - }, - "model": "metainfo.text", - "pk": 47430 - }, - { - "fields": { - "kind": 131, - "source": 123, - "text": "Langer-Schroll Johanna, Großindustrielle. * Braunau (Broumov, Böhmen), 2. 10. 1850; † ebenda, 9. 11. 1926." - }, - "model": "metainfo.text", - "pk": 47431 - }, - { - "fields": { - "kind": 130, - "source": 144, - "text": "Enkel des Freiburger Physikers J. J. Müller; stud. an der Univ. Freiburg i. Br., 1897 Dr. phil.; arbeitete dann bei van’t Hoff (Berlin), Ostwald (Leipzig), Gattermann (Freiburg) sowie an der Univ. Münster; 1900 Priv. Doz. an der Univ. Freiburg i. Br., 1903 Lehrer an der Chemieschule in Mühlhausen, 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üptners (s. d.) als o. Prof. für chem. Technol. anorgan. Stoffe an der Techn. Hochschule Wien. M. war auch auf verschiedenen Gebieten der anorgan. Technol. erfolgreich tätig. Durch Hittorf angeregt, bearb. er insbes. umfassend und zwar sowohl experimentell als auch theoret. die Erscheinungen der Passivität und Korrosion bei Metallen. Das von ihm entwickelte Verfahren zur Gewinnung von Schwefelsäure und Zement aus Gips und Ton gewann große techn. Bedeutung. 1936 korr. Mitgl. der Akad. der Wiss. in Wien.\n" - }, - "model": "metainfo.text", - "pk": 47432 - }, - { - "fields": { - "kind": 131, - "source": 144, - "text": "Müller Wolf Johannes, Chemiker. * Olten, Kt. Solothurn (Schweiz), 8. 7. 1874; † Wien, 9. 12. 1941." - }, - "model": "metainfo.text", - "pk": 47433 - }, - { - "fields": { - "kind": 130, - "source": 143, - "text": "Tochter eines Gutsbesitzers; kränkelte ab dem 18. Lebensjahr und litt u. a. an zeitweiser Blindheit, Starr- und Lungenkrämpfen und nahm kaum Nahrung zu sich. Ihre ab 1832 auftretenden Visionen und die Stigmatisierung (1834) erregten so großes Aufsehen, daß an manchen Tagen bis zu 3000 Menschen nach Kaltern kamen, um sie zu sehen. M. wurde u. a. von Görres, Brentano, Steinle, Möhler, Döllinger, Reisach und Ketteler besucht. 1841 übersiedelte 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 über sie befinden sich im Staatsarchiv Bozen; eine neuere krit. Biographie gibt es nicht.\n" - }, - "model": "metainfo.text", - "pk": 47446 - }, - { - "fields": { - "kind": 131, - "source": 143, - "text": "Mörl Maria Theresia von, Stigmatisierte. * Kaltern (Südtirol), 16. 10. 1812; † ebenda, 11. 1. 1868." - }, - "model": "metainfo.text", - "pk": 47447 - }, - { - "fields": { - "kind": 130, - "source": 142, - "text": "Diente bis September 1843 im IR 61, zuletzt als Korporal. Nach seinem Austritt aus dem Heer ließ sich M. im Oktober 1843 als Matrose für die Kriegsmarine anwerben und machte 1844–46 Fahrten in die Levante und nach Syrien mit. 1846 zum Marinekadetten ernannt, kommandierte er die Lagunentransportflottille, 1848/49 kämpfte 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 „Minerva“, 1861/62 hatte er in Pola die Bauleitung der Fregatte „Schwarzenberg“, welche er 1866 in der Schlacht b. Lissa als Linienschiffskapitän 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ämpfung des Aufstandes in Süddalmatien versammelten Schiffe. 1869 provisor. Escadrekmdt., 1870 Kontreadmiral, 1871–83 war er Stellvertreter des Chefs der Marinesektion des Kriegsmin., 1882 Vizeadmiral, 1883 i. R. M., der eine große administrative Begabung hatte, besaß eine gewisse Abneigung gegen alle Neuerungen. Bei der Vergabe von Bauaufträgen für Schiffe trat er entschieden für die Beschäftigung inländ. Firmen ein. Er war ein begeisterter Sammler klass. Altertümer und ein bedeutender Numismatiker. Teile der „Sammlung Millosicz“, von der 1885 ein gedruckter Katalog erschien, gelangten 1890 in die Antikensmlg. des Kunsthist. Mus. in Wien. 1872 nob., 1884 Frh.\n" - }, - "model": "metainfo.text", - "pk": 47448 - }, - { - "fields": { - "kind": 131, - "source": 142, - "text": "Millosicz Georg Frh. von, Admiral. * Botosani (Moldau), 18. 10. 1819; † Leoben (Stmk.), 24. 7. 1890." - }, - "model": "metainfo.text", - "pk": 47449 - }, - { - "fields": { - "kind": 130, - "source": 141, - "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ürzerer 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äs. der Prüfungskomm. für Lehramtskandidaten. Vielfach geehrt und ausgezeichnet, u. a. 1851 w. Mitgl. der Akad. der Wiss. in Wien (1866–1869 Sekretär der phil.-hist. Kl.), 1862 lebenslängliches Herrenhausmitgl., 1864 nob., 1889 w. Geh. Rat, Hofrat. 1848 war er Präs. des akadem. Ver. „Slovenija“ in Wien und gilt als Verfasser der Proklamation, welche die Vereinigung aller Slowenen in einem eigenen Kronland der zukünftigen österr. Föderation 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 Österr. bewirkte. M., der schon im Gymn. große sprachliche Begabung gezeigt und slowen. und kroat.Verse geschrieben hatte, wurde durch den Einfluß Kopitars und durch intensives Stud. slaw. und anderer indoeurop. Sprachen zum Begründer 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üdlich und genial dieses Ziel. Eines seiner Leitmotive neben der Sichtung des slaw. Sprach- und Kulturguts war, ein unbewußtes Streben aller Völker Europas nach einer gem. Sprache festzustellen (Neueuropäismus). Nach Hrsg. grammatikal. und lexikal. Hdbb. sowie literar. Denkmäler des Altslowen., wie M. irrtümlich die Sprache des altkirchenslaw. Schrifttums am Balkan, in Pannohien, Mähren und Rußland bezeichnete, verfaßte und publ. er die „Vergleichende Grammatik der slavischen Sprachen“. Vom Altslowen. ausgehend, analysierte er in unzähligen Beispielen slaw. Spracherscheinungen und ließ scheinbar nur das Weißruss., Slowak. und Makedon. unbeachtet. Trotz des streng sachlichen Vorgehens erlag auch er hie und da dem „eigenthümlichen Zauber der Sprache“, wie er sich in der Syntax, dem reichsten Teil dieser Grammatik, ausdrückte. Verhängnisvoll wurde ihm die von Kopitar übernommene „Pannonische Theorie“, nach der das Altslowen. (das Altkirchenslaw.) nicht auf dem Balkan, sondern in Pannonien, d. h. im östlichen Slowenien entstanden sein sollte. Unter M.s lexikal. Werken sind das altslowen. „Lexicon palaeoslovenico-graeco-latinum“ und das „Etymologische Wörterbuch der slavischen Sprachen“ die bedeutendsten. Im Sinne des Neueuropäismus erforschte M. in Monographien fremde Elemente in den slaw. und Slawismen in den nichtslaw. Sprachen, wodurch er auch zum Begründer der rumän. und alban. Philol. wurde. Er verfaßte umfangreiche Stud. über 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" - }, - "model": "metainfo.text", - "pk": 47450 - }, - { - "fields": { - "kind": 131, - "source": 141, - "text": "Miklosich Franz von, Slawist und Linguist. * Pichelberg b. Luttenberg (Radomeršcak pri Ljutomeru, Unterstmk.), 20. 11. 1813; † Wien, 7. 3. 1891." - }, - "model": "metainfo.text", - "pk": 47451 - }, - { - "fields": { - "kind": 130, - "source": 140, - "text": "Stud. an der Exportakad. (Hochschule für Welthandel) in Wien, wo er die Lehramtsprüfung für höhere Handelsschulen und die Diplomprüfung ablegte, und an der Univ. Wien. 1929 Dr. rer. pol. Wirkte ab 1919 als Ass. an der Hochschule für Welthandel, 1931 Habil. für Betriebswirtschaftslehre an der Hochschule für Welthandel, 1932 tit. ao. Prof., 1934 ao. Prof. für 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äter. Vorhaben und Unterlassung der Anzeige, während des Prozesses erweitert auf Hochverrat, starb M. im Wr. Inquisitenspital. M.s Hauptarbeitsgebiete waren neben der allg. Betriebswirtschaftslehre die Bankbetriebslehre und der Börsenverkehr. Er verband in seinen Veröff. umfassende Kenntnis betriebswirtschaftlicher Techniken und der betrieblichen Realität mit der Einsicht in die Probleme der wirtschaftswiss. Theorie, wobei ihm vor allem die Arbeiten der Grenznutzenschule als Grundlage dienten. Unter dem Einfluß von Nicklisch vertrat er die Ausweitung des Gegenstandes, der als selbständige 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. „andere Seiten des wirtschaftlichen Geschehens“, wobei von ersterer „der Betrieb als eine mit konkreten Tatbeständen und Aufgaben erfüllte wirtschaftliche Organisationseinheit betrachtet wird, mit der das Prinzip der Wirtschaftlichkeit und des wirtschaftlichen Wertens überhaupt untrennbar verbunden erscheint“.\n" - }, - "model": "metainfo.text", - "pk": 47460 - }, - { - "fields": { - "kind": 131, - "source": 140, - "text": "Meithner Karl, Betriebswirtschafter. * Wien, 27. 5. 1892; † Wien, 13. 12. 1942." - }, - "model": "metainfo.text", - "pk": 47461 - }, - { - "fields": { - "kind": 130, - "source": 139, - "text": "Nach seinem Geburtsort Brody Broder genannt; entstammte dem Arbeiterstand und besang in seinen Liedern die Leiden der jüd. Deklassierten. Seine Lieder, die er in Gasthäusern und Schänken vortrug, sind von sozialen Motiven geprägt. Obwohl er im Zeitalter der größten Kämpfe der galiz. Haskala-Bewegung lebte, findet sich in seinen Liedern keine Spur dieser Gedanken. M., Lehrer des Meisters des jüd. Volksgesanges, Wölwel Zbarazer (Ehrenkranz), durchzog mit einigen Gefährten, die man als „Broder-Sänger“ bezeichnete, Galizien, Rumänien sowie Rußland, wo sie seine wie auch ältere jüd. Volkslieder vortrugen. Er war der erste der jüd. fahrenden Volkssänger, der Vorläufer des modernen jidd. Theaters.\n" - }, - "model": "metainfo.text", - "pk": 47466 - }, - { - "fields": { - "kind": 131, - "source": 139, - "text": "Margulies Berl, Volkssänger. * Brody (Galizien), ca. 1817; † b. Bukarest, ca. 1880." - }, - "model": "metainfo.text", - "pk": 47467 - }, - { - "fields": { - "kind": 130, - "source": 137, - "text": "Tochter des Malers Antonín M. (s. d.), Schwester der beiden Maler Josef und Quido M. (s. d.), Nichte des Vorigen; begabte Schülerin ihres Vaters, dessen maler. Vermächtnis sie aber nicht so selbständig entfalten konnte wie ihre Brüder, welche sie materiell unterstützen mußte.\n" - }, - "model": "metainfo.text", - "pk": 47468 - }, - { - "fields": { - "kind": 131, - "source": 137, - "text": "Mánesová Amalie, Malerin. * Prag, 21. 1. 1817; † Prag, Juni 1883." - }, - "model": "metainfo.text", - "pk": 47469 - }, - { - "fields": { - "kind": 130, - "source": 138, - "text": "Sohn des Malers Antonín M. (s. d.), Bruder des Vorigen und der Malerin Amalie M.-ová (s. d.), Neffe des Folgenden; stud. 1838–51 an der Prager Akad. bei Tkadlík und Ruben, 1870/71 in Düsseldorf bei Vautier und begann unter dem Einfluß der Akad. mit hist. Motiven in Genreart. Ab der zweiten Hälfte der 50er Jahre befaßte er sich mit volkstümlichen 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ür die Atmosphäre 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ätig, 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 über Trachtenstud. bei der ländlichen Bevölkerung.\n" - }, - "model": "metainfo.text", - "pk": 47470 - }, - { - "fields": { - "kind": 131, - "source": 138, - "text": "Mánes Quido, Maler. * Prag, 17. 7. 1828; † Prag, 5. 8. 1880." - }, - "model": "metainfo.text", - "pk": 47471 - }, - { - "fields": { - "kind": 130, - "source": 136, - "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ühnen, 1917 am Residenztheater München, ab 1917 auch Dir. der Star-Film-Comp. in Berlin, ab 1919 Autor von Filmdrehbüchern. 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ätigkeit 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ß, C. Veidt, P. Hartmann, O. Tschechowa, A. Sandrock, E. Klöpfer, F. Kortner, H. Porten, A. Nielsen, P. Wegener, E. Jannings etc. zusammen.\n" - }, - "model": "metainfo.text", - "pk": 47482 - }, - { - "fields": { - "kind": 131, - "source": 136, - "text": "Mayer Karl, Drehbuchautor. * Graz, 20. 2. 1894; † London, 1. 7. 1944." - }, - "model": "metainfo.text", - "pk": 47483 - }, - { - "fields": { - "kind": 130, - "source": 135, - "text": "Wurde von seinem Onkel, dem bekannten Innsbrucker Gastwirt J. G. Mahl adoptiert und zum Geschäftsführer gemacht. M.-S. beschäftigte sich mit philosoph. und naturwiss. Stud., gründete 1829 das erste „Tiroler Mineralien-Comptoir“ und trat in regen Schriftverkehr mit wiss. Ges. des In- und Auslandes (Mitgl. der Mineralog.-geognost. Ges. zu Jena). Im März 1848 verfaßte er einen feurigen Aufruf „A greachts Weartl von an alten Landesverteidiger an seini Mitbrüder“, der großen Widerhall fand. Auf eigene Kosten rüstete er die 1. Innsbrucker Schützenkomp. aus, an deren Spitze er im Mai 1848 an die Südfront zog. Als begeisterter Verehrer Radetzkys legte er 1849 ein „Radetzky-Album“ an (es enthielt Zeichnungen, Porträts, eine wertvolle Autographensmlg. etc.), welches er später dem Tiroler Landesmus. Ferdinandeum übergab. M.-S. errichtete 1853 unter großem Kostenaufwand auf seinem Schloß Büchsenhausen die erste Schwimm- und Badeanstalt Innsbrucks, gründete den 1. Arbeiterunterstützungsver. und beteiligte sich an vielen humanitären Einrichtungen. 1865 verkaufte er sein Schloß und führte einige Innsbrucker als Kolonisten nach Pozuzo (Peru). M.-S. war auch literar. tätig, vor allem als Lyriker und Sagensammler bzw. -forscher. Seine Gedichte sind zwar manchmal ein wenig naiv, aber sie zeigen große Naturverbundenheit und patriot. Gesinnung. Er war auch Hrsg. und Red. der „Tiroler Monatsblätter“. Vielfach geehrt und ausgezeichnet, u. a. 1851 nob.\n" - }, - "model": "metainfo.text", - "pk": 47484 - }, - { - "fields": { - "kind": 131, - "source": 135, - "text": "Mahl-Schedl von Alpenburg Johann Nep., Ps. Ritter v. Alpenburg, Landesverteidiger und Schriftsteller. * Grünburg (O.Ö.), 27. 10. 1806; † Innsbruck, 1. 4. 1873." - }, - "model": "metainfo.text", - "pk": 47485 - }, - { - "fields": { - "kind": 130, - "source": 145, - "text": "Stud. am Wr. Konservatorium bei J. Hellmesberger jun. (s. d.). 1882–85 war er Kapellmeister beim IR 74, 1885–90 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ätig. Neben Rumänien und Bulgarien zählen Holland und Belgien zu seinen wichtigsten künstler. Wirkungsstätten. Ab 1890 lebte er in Temesvar, ab 1929 als Musiklehrer in Prag. N. war auch ein sehr begabter Komponist.\n" - }, - "model": "metainfo.text", - "pk": 47486 - }, - { - "fields": { - "kind": 131, - "source": 145, - "text": "Novácek Rudolf, Kapellmeister und Komponist. * Weißkirchen (Bela Crkva, Vojvodina), 7. 4. 1860; † Prag, 12. 8. 1929." - }, - "model": "metainfo.text", - "pk": 47487 - }, - { - "fields": { - "kind": 130, - "source": 147, - "text": "Stud. an den Univ. Prag und Wien Dt., Geschichte und Geographie; 1898–1903 Gymnasiallehrer an einigen Wr. Privatmittelschulen, 1903 Gymnasialprof. in Salzburg. 1904–19 wirkte er als Dir. am neugegründeten Mädchenlyzeum in Wien-Hietzing, welches er bereits 1916 in ein achtklassiges Reformrealgymn. umzuwandeln begann. Ab 1919 (Landesschulinsp.) war O. in der Reformabt. des Staatsamtes für Inneres und Unterricht tätig, leitete ab 1922 die Abt. für pädagog.-didakt. Angelegenheiten der Mittelschulen und gab den ersten amtlichen Lehrplan der Frauenoberschule heraus, dem 1927 eine Lehrplanreform für alle Mittelschulen folgte. Er unterstützte bes. die Ver.-Mädchenmittelschulen sowie deren finanziell schlecht gestellte Lehrkräfte und förderte als Dir. die Anstellung weiblicher Lehrer. 1933 als Sektionschef i. R. 1908–10 erster Obmann des Ver. Lyzeum.\n" - }, - "model": "metainfo.text", - "pk": 47502 - }, - { - "fields": { - "kind": 131, - "source": 147, - "text": "Ortmann Rudolf, Pädagoge. * Reichenberg (Liberec, Böhmen), 10. 3. 1874; † Wien, 22. 11. 1939." - }, - "model": "metainfo.text", - "pk": 47503 - }, - { - "fields": { - "kind": 130, - "source": 146, - "text": "Mr. pharm., Dr. phil.; kam um 1830 nach Innsbruck und kaufte dort die 1821 gegründete dritte Apotheke. Sein bes. Interesse galt der Chemie und so hielt er 1832–37 Vorlesungen über Chemie am Tiroler Landesmus. Ferdinandeum. Oe. analysierte Mineralien und zahlreiche Heilquellen Tirols. 1839 wurde er provisor. Dir. der naturgeschichtlichen Smlg. am Ferdinandeum. 1848–60 war er Magistratsrat der Stadt Innsbruck und regte als solcher 1850 die Beleuchtung der Stadt mit Petroleumlampen an. Er verfaßte zahlreiche Aufsätze aus dem Gebiet der Chemie und hielt in Innsbruck viele populärwiss. Vorträge, von denen einige als Manuskripte im Tiroler Landesmus. Ferdinandeum aufbewahrt werden. Ein Antrag auf eine Professur für techn. Chemie scheiterte aus Geldmangel (1838).\n" - }, - "model": "metainfo.text", - "pk": 47506 - }, - { - "fields": { - "kind": 131, - "source": 146, - "text": "Oellacher Josef, Pharmazeut. * Preßburg, 16. 2. 1804; † Innsbruck, 16. 8. 1880." - }, - "model": "metainfo.text", - "pk": 47507 - }, - { - "fields": { - "kind": 130, - "source": 151, - "text": "Bruder der Folgenden; stud. ab 1892 an der Univ. Wien Naturwiss. (1897 Lehramtsprüfung aus Physik, Mathematik, 1901 Dr. phil.) und war bis 1901 am Gymn. in Krainburg (Kranj), bis 1918 in Marburg tätig. 1918–1924 wirkte er als Schulinsp. in Laibach (Ljubljana), danach als Kulturreferent für das Marburger Gebiet, 1927 i. R. 1923/24 war er Lektor für Geol. und Paläontol. an der techn. Fak. der Univ. Laibach. P., der sich in Neapel, Paris und London weitergebildet hatte, verfaßte u. a. mehrere Schulbücher und red. ab 1932 die Z. „Izvestja muzejskega društva za Kranjsko“. 1906 organisierte er in Marburg die Volksbibl., welche er bis 1914 leitete.\n" - }, - "model": "metainfo.text", - "pk": 47516 - }, - { - "fields": { - "kind": 131, - "source": 151, - "text": "Poljanec Leopold, Biologe und Schulmann. * Rann (Brežice, Unterstmk.), 23. 9. 1872; † Marburg a. d. Drau (Maribor, Unterstmk.), 8. 8. 1944." - }, - "model": "metainfo.text", - "pk": 47517 - }, - { - "fields": { - "kind": 130, - "source": 150, - "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–98 suppl. er am Erzhgn. Elisabeth-Gymn. in Sambor (Galizien), ab 1898 war er in Lemberg, 1903–09 als Prof. am IV. Gymn., ab 1909 als Prof. an der staatlichen Gewerbeschule, tätig. 1914 Priv. Doz., 1915–21 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ölderlin-Forschung bedeutende Pionierarbeit, welche durch Fachgelehrte, wie Hellingrath und Beissner, höchste Anerkennung fand.\n" - }, - "model": "metainfo.text", - "pk": 47522 - }, - { - "fields": { - "kind": 131, - "source": 150, - "text": "Petzold Emil, Philologe und Literarhistoriker. * Wien, 26. 11. 1859; † Lemberg (L’viv), 15. 7. 1932." - }, - "model": "metainfo.text", - "pk": 47523 - }, - { - "fields": { - "kind": 130, - "source": 149, - "text": "Sohn des Philosophen Johann P. v. L. (1793–1866), Cousin des Folgenden, Neffe des Juristen und Politikers Thaddäus Frh. P. v. L. (s. d.), Schwager des Malers C. R. Huber (s. d.); stud. ab 1854 an der Akad. der bildenden Künste in Wien unter Th. Ender (s. d.) und F. Steinfeld, 1857/58 an der Akad. in Düsseldorf bei C. F. Lessing. Wurde 1868 Mitgl. der Akad. der bildenden Künste in Wien, an der er 1872–1901 als Prof. für Landschaftsmalerei wirkte, 1878–80 und 1897–99 Rektor. Nach seiner Pensionierung lebte er in Nürnberg und Berlin. Über pathet. gesteigerte, detailreiche Landschaften gelangte P. zu intimen Naturausschnitten und idyllischen Stimmungen. Er schuf Öl-, Tempera- und Pastellbilder, seine bevorzugte Technik jedoch war eine Mischung von Federzeichnung mit Aquarell. Diese Bll. sind frischer und reizvoller als seine Ölbilder. P., mehrfach ausgezeichnet, war auch ein bedeutender Lehrer, der seine Schüler 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ünstlerhaus aus, das ihm 1913 auch eine Gedächtnisausst. widmete.\n" - }, - "model": "metainfo.text", - "pk": 47530 - }, - { - "fields": { - "kind": 131, - "source": 149, - "text": "Peithner von Lichtenfels Eduard, Maler und Radierer. * Wien, 18. 11. 1833; † Berlin, 22. 1. 1913." - }, - "model": "metainfo.text", - "pk": 47531 - }, - { - "fields": { - "kind": 130, - "source": 148, - "text": "Stud. 1839–1843 an der Bergakad. Schemnitz, praktizierte dann am Haupt- und Land-Münzprobieramt in Wien und trieb gleichzeitig mineralog. und geognost. Stud. 1849 Ass. der Lehrkanzel für Hütten- und Probierkde. der Bergakad. Pribram, wo er mit der Ausrüstung 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üttenmänn.-chem. Laboratorium ein, 1857 wurde er wegen seiner Leistungen zum Hüttenchemiker des gesamten österr. Montanwesens, 1863 zum Bergrat, 1873 zum Reichschemiker (später Vorstand des Hüttenmänn.-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öglicht.\n" - }, - "model": "metainfo.text", - "pk": 47536 - }, - { - "fields": { - "kind": 131, - "source": 148, - "text": "Patera Adolf, Montanist und Chemiker. * Wien, 11. 7. 1819; † Teschen (Cieszyn, österr. Schlesien), 26. 6. 1894." - }, - "model": "metainfo.text", - "pk": 47537 - }, - { - "fields": { - "kind": 130, - "source": 158, - "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ätig. 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.-österr. Bildungswesens, über das er grundlegende Beitrr. verfaßte. Seine zahlreichen, von volksbildner. Ambitionen getragenen Arbeiten über theolog., pädagog. und hist. Themen waren weit verbreitet.\n" - }, - "model": "metainfo.text", - "pk": 47540 - }, - { - "fields": { - "kind": 131, - "source": 158, - "text": "Rumpler Matthias, Schriftsteller und Seelsorger. * Petting, Bayern (BRD), 3. 2. 1771; † Seekirchen (Salzburg), 17. 3. 1846." - }, - "model": "metainfo.text", - "pk": 47541 - }, - { - "fields": { - "kind": 130, - "source": 157, - "text": "Sohn eines Bäckermeisters; ab 1901 selbständiger Bäkkermeister. Im polit. Leben, bes. als gewandter Redner, aktiv, wirkte er als Vertreter der Christlichsozialen Partei 1912–25 im Wr. Gemeinderat, 1924–34 im Bundesrat; ab 1917 Vizepräs., in der Folge Präs. des Dt.österr. 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ßte Stud. „Das Ghetto in der Wiener Leopoldstadt“ (1926). Auch seine wertvollen Veröff. aus der Geschichte des Wr. Bäckergewerbes zeugen von R.s Fleiß im Erschließen von Quellenmaterial.\n" - }, - "model": "metainfo.text", - "pk": 47542 - }, - { - "fields": { - "kind": 131, - "source": 157, - "text": "Rotter Johann (Hans), Lokalhistoriker, Gewerbetreibender und Politiker. * Wien, 30. 11. 1868; † Wien, 18. 9. 1945." - }, - "model": "metainfo.text", - "pk": 47543 - }, - { - "fields": { - "kind": 130, - "source": 156, - "text": "Aus ursprünglich katalan. Familie; stud. 1846/47 an der Univ. Wien Jus; war dann Konzeptsbeamter in der niederösterr. Landesregierung; 1848 trat er in die Armee ein und machte bei den Savoyenkürassieren die Feldzüge von 1848 und 1849 (Oblt.) in Ungarn bzw. Italien mit. 1850 begann R. seine diplomat. Laufbahn und war an den Botschaften in München, Berlin, Stuttgart, Stockholm und Paris tätig. Ab 1853 beim Ulanenrgt. 8 und 2. Rtm., 1855 1. Rtm., 1857 Kämmerer. 1859 quittierte er ohne Beibehaltung der Charge den Dienst und wurde Legationsrat in St. Petersburg (Leningrad). Nach dem dt.-dän. Krieg bekleidete er 1864 kurzfristig den wichtigen und diffizilen Posten eines Zivilkoär. für Schleswig-Holstein. Anschließend fungierte er als ao. Gesandter in St. Petersburg und war neben der gewichtigen Frage der österr.-russ. Beziehungen stark mit den nationalen und kirchlichen Problemen (Auflösung von kath. Klöstern in russ. Polen, erzwungener Übertritt von unierten Christen zur Orthodoxie etc.) befaßt. 1868 trat er wegen Differenzen mit Beust (s. d.) zurück. 1876 wurde er in den zeitlichen Ruhestand versetzt. R. widmete sich nun der Bewirtschaftung seiner oberösterr. Güter Erlach und Tollet und wurde daneben in der österr. Innenpolitik außerordentlich aktiv. Er wurde 1869 als Vertreter des Großgrundbesitzes oberösterr. Landtagsabg. 1885 Mitgl. der österr.-ung. Delegationen und des Herrenhauses, hatte er auch starken Anteil am Ausbau und an der Organisation des österr. Eisenbahnwesens. Gem. mit Vogelsang, A. Prinz v. u. z. Liechtenstein (s. d.), Prälat Schindler u. a. wurde er Mitgl. der Freien Vereinigung kath. Sozialpolitik, die nach den Beschlüssen des Frankfurter Katholikentages 1882 begründet wurde. 1888 wurde R. im auswärtigen Dienst reaktiviert und Botschafter beim Hl. Stuhl. Zu den schwierigen Problemen während seiner Amtszeit gehörten u. a. die verschiedenen Bischofsernennungen, der Panslawismus, die Krise zwischen dem Vatikan und der italien. Regierung (auf deren Höhepunkt R. im Vatikan die Bereitschaft des K. unterbreitete, dem Papst ein mögliches Refugium in Österr. zu gewähren), die Balkanfrage und die Nachfolge Leo XIII. R., der das Vertrauen K. Franz Josephs (s. d.) genoß, übte auch eine Vermittlertätigkeit bei dessen familiären Schwierigkeiten (Selbstmord Kronprinz Rudolfs, 1889, Ermordung Kn. Elisabeths, s. d., 1898) aus. 1901 mußte er auf Drängen ung. Politiker von seinem Posten zurücktreten. R. war einer der besten Kenner der ineinandergreifenden Interessenssphären von Staat und Kirche in der spätjosefin. Zeit. Daneben war er Experte für die Grenzbereiche der röm.-kath., unierten und orthodoxen Kirchen, auch für Rußland und den Balkan. Obwohl für 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ßkreuz des St. Stephan-Ordens. R.s Sohn, Nikolaus (1866–1951), folgte 1919 K. Karl (s. d) ins Exil.\n" - }, - "model": "metainfo.text", - "pk": 47556 - }, - { - "fields": { - "kind": 131, - "source": 156, - "text": "Revertera von Salandra Friedrich Graf, Diplomat und Politiker. * Lemberg (L’viv), 21. 1. 1827; † Brixen (Südtirol), 28. 4. 1904." - }, - "model": "metainfo.text", - "pk": 47557 - }, - { - "fields": { - "kind": 130, - "source": 154, - "text": "Trat 1788 in das Gen.Seminar in Wien ein und war nach der Priesterweihe (1792) in derSeelsorge in Hadersdorf a. Kamp (NÖ) tätig. 1796 wurde er bereits Prof. der Pastoraltheol. an der Univ. Wien. 1799 Dr. theol. 1814 Domherr in Linz, 1814–24 Dir. des Priesterseminars, 1817–35 Leiter der geistlichen Stud. am Lyzeum. 1813 Reg.Rat, 1833 Domdechant, 1838 Dompropst. R. entfaltete eine rege schriftsteller. Tätigkeit. In zahlreichen Publ. beschäftigte er sich mit Fragen der Erziehung, des Religionsunterrichtes und der Seelsorge sowie der Erbauung und Homiletik. Durch seine „Pastoral-Anweisung nach den Bedürfnissen unsers Zeitalters“, die als offizielles Vorlesebuch für alle öff. und Hauslehranstalten vorgeschrieben wurde, nahm er bestimmenden Einfluß auf den Klerusnachwuchs. R., ein großer Wohltäter der kirchlichen Inst., zählte zu den maßvollen Josefinern.\n" - }, - "model": "metainfo.text", - "pk": 47558 - }, - { - "fields": { - "kind": 131, - "source": 154, - "text": "Reichenberger Andreas, Theologe. * Wien, 24. 11. 1770; † Linz, 26. 10. 1854." - }, - "model": "metainfo.text", - "pk": 47559 - }, - { - "fields": { - "kind": 130, - "source": 155, - "text": "Sohn eines Advokaten und Gutsbesitzers; stud. 1883–86 an der Hochschule für 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ätigkeit am Mus. in Sarajevo sammelte er Material für eine Beschreibung der Vögel 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" - }, - "model": "metainfo.text", - "pk": 47560 - }, - { - "fields": { - "kind": 131, - "source": 155, - "text": "Reiser Othmar, Ornithologe. * Wien, 21. 12. 1861; † Hrastje b. Pickerndorf (Pekre, Unterstmk.), 31. 3. 1936." - }, - "model": "metainfo.text", - "pk": 47561 - }, - { - "fields": { - "kind": 130, - "source": 153, - "text": "Sohn eines Baumwollwarenhändlers; wurde nach Absolv. der Techn. Militärakad. in Wien 1895 als Lt. zum Pionierbaon. 5 ausgemustert. 1898–1900 besuchte er die Kriegsschule in Wien, in der er auch ab 1911 als Lehrer des Festungskrieges wirkte. 1900–11 diente er in verschiedenen Gen. Stabs- und Truppenoff. Verwendungen. 1911 Mjr. des Gen.Stabskorps. 1914–16 war R. als Militärattaché 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änien. Am 5. und 15. 2. 1918 traf er im Auftrag K. Karls (s. d.) mit Styrcea, dem Flügeladj. Kg. Ferdinands von Rumänien, zusammen, um dem Kg. ehrenvolle Friedensbedingungen und ein Bündnis gegen das revolutionäre Rußland anzubieten. Diese Treffen trugen zu dem am 7. 5. 1918 in Bukarest zwischen Österr.-Ungarn, dem Dt. Reich, der Türkei und Bulgarien einerseits und Rumänien anderseits abgeschlossenen Friedensvertrag mit bei. Nach 1918 bewirtschaftete R. sein Gut in der Bukowina.\n" - }, - "model": "metainfo.text", - "pk": 47564 - }, - { - "fields": { - "kind": 131, - "source": 153, - "text": "Randa Maximilian von, Offizier und Diplomat. * Zwittau (Svitavy, Mähren), 24. 5. 1874; † Czernowitz (Cernivci, Bukowina), 13. 8. 1941." - }, - "model": "metainfo.text", - "pk": 47565 - }, - { - "fields": { - "kind": 130, - "source": 152, - "text": "Sohn eines Kaufmannes und Privatgelehrten; stud. ab 1884 an der Univ. Graz Physik und Mathematik (1889 Dr. phil., 1891 Lehramtsprüfung) 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ät. Er interessierte sich für Grenzgebiete der Mathematik und der Physik sowie für die experimentelle Methode der Psychol. am Laboratorium Meinongs, von dem er in seinen wiss. Arbeiten maßgeblich beeinflußt wurde. 1894–96 Supplent an der Landesoberrealschule in Graz. 1897 Priv.Doz. für 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.’ bedeutendste und tiefgreifendste Arbeit behandelt „Die Grundlagen der Galilei-Newton’schen Mechanik“. Er veröff. auch einige wichtige experimentelle Arbeiten zur Frage der Geschoßgeschwindigkeit. Mitgl. der k. Leopoldin.-Carolin. Dt. Akad. der Naturfoscher in Halle. Sein Sohn, Theodor R. (1895–1938), war ab 1934 ao. Prof. der Mathematik an der Univ. Graz.\n" - }, - "model": "metainfo.text", - "pk": 47566 - }, - { - "fields": { - "kind": 131, - "source": 152, - "text": "Radakovic Michael, Physiker. * Graz, 25. 4. 1866; † Graz, 15. 8. 1934." - }, - "model": "metainfo.text", - "pk": 47567 - }, - { - "fields": { - "kind": 130, - "source": 194, - "text": "Nach der Schulausbildung in Großwardein (Oradea) und Temeswar (Timi¿oara) arbeitete S. ab 1832 als Ing.-Praktikant bei der Regulierung der Körös. 1834 begann er ein Stud. der Ing.wiss. in Pest (Budapest), brach jedoch ab und trat noch im selben Jahr dem Schauspielensemble von Gábor Döbrentei (¿Gabriel Döbrentei) am Burgtheater (Budai Várszínház) in Ofen (Budapest) bei, wo er als Schauspieler, Chorist, Tänzer und Inspizient tätig war sowie seine ersten Theaterstücke verf. 1837 erhielt S. am Ung. Nationaltheater (Magyar Nemzeti Színház) in Pest ein Engagement als Schauspieler (1837–54) und Bibliothekar (1837–40) und widmete sich schließl. der Regie (1854–73) sowie der Dramaturgie (1868–73). Ab 1865 war er Prof. und 1870–73 Dir. der Pester Schauspielschule. 1873 übernahm er die Leitung des Nationaltheaters. Er förderte zahlreiche später bekannte Schauspieler und initiierte u. a. die ersten Gogol- und Daudet-Auff. in Ungarn. S. verf. über hundert Theaterstücke und zahlreiche Libretti, schrieb Schauspielerporträts („Magyar színészek életrajzai“, 1878, 2. Aufl. 1907) und übers. u. a. Goethes „Egmont“ (1871) und „Faust“ sowie Shakespeares „Richard III.“ (1867) ins Ung. Sein dramaturg. Lehrbuch „A dráma és válfajai“ (1874) trug wesentl. zur Entfaltung der Schauspielkunst in Ungarn bei. Als Dramatiker rezipierte S. die progressiven Bestrebungen der französ. und Wr. Bühnen und adaptierte diese meisterhaft für das ung. Publikum. Sowohl seine Lustspiele („Rózsa“, 1840; „Liliomfi“, 1849; „Fenn az ernyo, nincsen kas“, 1858, 7. Aufl. 1914), seine als Parabel auf die Revolution 1848 bzw. auf die Zeit nach dem Ausgleich 1867 angelegten hist. Dramen („II. Rákóczi Ferenc fogsága“, 1848; „A trónkereso“, 1868, 5. Aufl. 1916, dt. „Der Prätendent“, 1881; „Struensee“, 1871) als auch seine unter dem Einfluss des Wr. Volksstücks und des französ. Melodramas entstandenen Volksstücke „Szökött katona“ (1843) und „Cigány“ (1853), mit denen er die Grundlage für diese Gattung in Ungarn legte, entsprachen dem Geschmack des zeitgenöss. Publikums. Ledigl. seine bürgerl. Dramen („A lelenc“, 1863; „A fény árnyai“, 1865) und die Stücke „A strike“ (1871) sowie „Az amerikai“ (1872), in denen wichtige soziale Themen der Zeit wie die Arbeiterbewegung und Migration aufgegriffen werden, stießen auf Unverständnis. S. war einer der einflussreichsten Dramatiker des 19. Jh. in Ungarn, seine Stücke wurden in zahlreiche Sprachen übers. und verfilmt („Szökött katona“, 1914; „Liliomfi“, 1916, 1954; „Cigány“, 1925, 1941) und gehören auch heute noch zum Standardrepertoire der ung. Bühnen. Eine Gesamtausg. seiner Werke liegt allerdings bislang nicht vor. Das ung. Theater in Großwardein (Nagyváradi Szigligeti Színház) sowie das Theater in Szolnok (Szigligeti Színház) sind nach ihm benannt. S. war ab 1840 k. M. der MTA, ab 1845 Mitgl. der Kisfaludy-Ges.\n\n" - }, - "model": "metainfo.text", - "pk": 47568 - }, - { - "fields": { - "kind": 131, - "source": 194, - "text": "Szigligeti Ede (Edvárd), bis 1834 József Szathmáry, Schriftsteller, Übersetzer, Schauspieler und Regisseur. Geb. Várad-Olaszi, Ungarn (Oradea-Olosig, RO), 8. 3. 1814; gest. Budapest (H), 19. 1. 1878; röm.-kath." - }, - "model": "metainfo.text", - "pk": 47569 - }, - { - "fields": { - "kind": 130, - "source": 195, - "text": "Sohn des Bahnbeamten Michael Szurmay und von Josefa Szurmay, geb. Schäfer; ab 1895 verheiratet mit Erna Szenóner. – Nach Besuch der staatl. Oberrealschule in Szegedin (Szeged) 1871–74 war S. 1882–84 Zögling der Budapester Ludovika Akad. (1884 als Lt. ausgemustert) und absolv. 1887–89 die Kriegsschule in Wien. Seine militär. Laufbahn begann er 1882 als Gemeiner im Honvéd-Inf.baon. 18. 1889 Oblt., 1898 Mjr., 1905 Obst., diente er bis zu seiner Ernennung zum GM (1910) in verschiedenen Gen.stabsverwendungen in der k. u. k. Armee sowie bei der Honvéd und versah Truppendienst, u. a. als Baon.kmdt., v. a. in den Honvéd-Inf.rgt. 4 und 20. Ab Mai 1914 FML, war er ab Mitte August Staatssekr. des kgl. ung. Landesverteidigungsmin. Im November 1914 wurde er mit der Führung der kgl. ung. Inf.div. 38 betraut, an deren Spitze er – ab 1915 als Kmdt. der Szurmay-Gruppe, ab 1916 als Kmdt. des Szurmay-Korps – ins Feld zog und bis Februar 1917 auf dem russ. Kriegsschauplatz kämpfte. Bes. verdient machte er sich um die Eroberung und Verteidigung des Uschok-Passes (Užoc’kyj 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äter auf Geheiß der Berinkey-Regierung in St. Gotthard (Szentgotthárd) interniert und während der Räterepublik gem. mit ¿József Frh. Szterényi v. Brassó in Budapest gefangen gehalten. Nach dem Sturz der Räterepublik war S. Ende 1919 Verbindungsoff. bei der französ. militär. Mission. 1921 wurde er endgültig pensioniert, lebte danach in Budapest und wirkte als Militärschriftsteller. 1909 wurde er Off. des Franz Joseph-Ordens, 1915 erhielt er den Orden der Eisernen Krone I. Kl., 1916 wurde er Kommandeur des Leopold-Ordens I. Kl. 1917 Geh. Rat, erhielt er im selben Jahr das Ritterkreuz des MMTO und wurde in den Frh.stand erhoben, 1918 mit dem Prädikat „von Uzsok“ ausgez. S. war Inhaber des Honvéd-Inf.rgt. 20 (1918), 1929 wurde er in den Vitézi Rend (Ritterorden) aufgenommen, 1927–44 war er Mitgl. des Oberhauses, 1941 wurde er noch zum kgl. ung. Gen.obst. ernannt.\n\n" - }, - "model": "metainfo.text", - "pk": 47570 - }, - { - "fields": { - "kind": 131, - "source": 195, - "text": "Szurmay von Uzsok Sándor (Alexander) Frh., Offizier und Politiker. Geb. Boksánbánya, Ungarn (Boc¿a, RO), 19. 12. 1860; gest. Budapest (H), 26. 3. 1945." - }, - "model": "metainfo.text", - "pk": 47571 - }, - { - "fields": { - "kind": 130, - "source": 193, - "text": "Sohn eines Bauern. – Nach Besuch der Gymn. in Kempten im Allgäu, Innsbruck und Salzburg trat S. 1820 in das Augustiner-Chorherrenstift St. Florian ein (1823 Profeß, 1824 Priesterweihe). 1824–43 wirkte er als Kaplan in der Stiftspfarre, 1843–54 als Stiftspfarrer und Leiter des Stiftsarchivs, 1854 Stiftsdechant. 1855 beriet er Bischof Rudigier (s. d.) bei der Visitation der Augustiner-Chorherrenstifte. 1856 außerdem Administrator des Dekanats Enns, erhielt S. auch die Schulaufsicht übertragen. 1859 wurde er Propst von St. Florian. Unter ihm wurden eine Reihe von Neubauten in den inkorporierten Pfarren sowie Verschönerungen in der Stiftskirche, u. a. durch L. Kupelwieser (s. d.), durchgeführt. Daneben widmete sich S., von F. Ser. Kurz (s. d.) angeleitet, schon bald der Historiographie. Bereits 1834 gehörte er zu den Initiatoren des späteren Mus. Francisco-Carolinum, red. 1839–44 dessen „Musealblatt“ und arbeitete v. a. an den ersten sechs Bde. des „Urkundenbuchs des Landes ob der Enns“ (1852–72) mit; weiters befaßte er sich mit dem Leben von K. Maximilian I., ordnete die Archive der Stifte St. Florian und Wilhering und verf. die Geschichte beider Klöster. Zudem beschäftigte er sich mit dem Gründer 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. d.) stand, war u. a. Mitgl. des Hist. Ver. für Unterfranken und Aschaffenburg (1841), des Hist. Ver. für die Oberpfalz und Regensburg (1844), der kgl. bayer. Akad. der Wiss. (1844) und erhielt 1846 den Titel eines k. k. Reichshistoriographen. 1847 zählte er zu den ersten Mitgl. der Akad. der Wiss. in Wien. Neben seinen geistl., administrativen und wiss. Aufgaben war S. polit. tätig. 1848 wurde er als Vertreter Vbg. in das Frankfurter Parlament gewählt, wo er v. a. mit dem kath.-reformer. Kreis um Johann Joseph v. Görres in Verbindung stand. Auch bei den Bemühungen um die Errichtung des oö. Katholikenver. 1848 spielte S. eine führende Rolle. 1861–67 gehörte er dem oö. LT an; im Grenzbereich von Politik und Wirtschaft wirkte er als Präs. der Oö. Landwirtschaftsges. 1857 wurde er mit dem Ritterkreuz des Franz Joseph-Ordens ausgez.\n\n" - }, - "model": "metainfo.text", - "pk": 47580 - }, - { - "fields": { - "kind": 131, - "source": 193, - "text": "Stülz Jodok, CanReg., Geistlicher, Historiker und Politiker. Geb. Bezau (Vbg.), 23. 2. 1799; gest. Wildbadgastein (Bad Gastein, Sbg.), 28. 6. 1872; röm.-kath." - }, - "model": "metainfo.text", - "pk": 47581 - }, - { - "fields": { - "kind": 130, - "source": 192, - "text": "Sohn von Josef Maria S. (s. d.). – Nach Gymn.besuch in Wien (Matura 1906) stud. S. als Schüler O. Redlichs (s. d.) Geschichte an der Univ. Wien, 1910 Dr. phil., und absolv. 1909–11 als ao. Mitgl. den Kurs des Inst. für österr. 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ümer nach Karlsruhe. 1912 trat er eine Stelle bei den Regesta Habsburgica an und arbeitete am Österr. Hist. Inst. in Rom. Daneben war er 1913 nochmals für die Bad. Hist. Komm. tätig und ordnete das gräfl. Douglassche Archiv auf Schloß 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öhl (1919) und in Mannersdorf (1920) und das der Wr. Hofburgkapelle (1921/22), betrieb umfassende Provenienzstud. über die Urkundenabt. und leitete schließl. die Hss.abt. im HHStA. 1921–22 war er Schriftleiter der auch auf seine Initiative hin vom Staatsarchiv hrsg. „Historischen Blätter“, ab 1928 Mitgl. des Geschäftsausschusses des Archivbeirats. Bereits 1916 hatte er sich an der Univ. Wien für Geschichte des Mittelalters und hist. Hilfswiss. habil.; 1924 ao. Prof. Als Mediävist befaßte er sich mit Fragen der österr. Diplomatik, einschließl. der Kanzlei- und der Stadtbücher, 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. a. die Beachtung des Provenienzprinzips und die gleitende Archivsperre von 30 Jahren umfaßte, trat 1924 in Kraft. Archivpraktika für Lehrer im Zusammenhang mit dem Ausbau des heimatkundl. Unterrichts im Rahmen der Glöckelschen Unterrichtsreformen sowie Initiativen im Ausst.wesen intensivierten die Außenwirkung des Archivs ebenso wie die Förderung der Geschichtsforschung, etwa durch die Begründung der „Studien aus dem Archiv der Stadt Wien“ oder durch die Anregung zur Veröff. der „Urkunden aus Wiener Grundbüchern zur Geschichte der Wiener Juden im Mittelalter“ (1931) durch L. Sailer (s. d.) und Rudolf Geyer. Bereits 1918 war S. in den Vorstand des Ver. für Geschichte der Stadt Wien gewählt worden, 1924–25 Gen.sekr., legte er jedoch sein Mandat aus dienstl. Gründen zurück. 1926 Vizepräs., begründete er die bis heute bestehende enge Verbindung zwischen Archiv und Ver.\n\n" - }, - "model": "metainfo.text", - "pk": 47584 - }, - { - "fields": { - "kind": 131, - "source": 192, - "text": "Stowasser Otto Hellmuth, Archivar und Historiker. Geb. Wien, 21. 10. 1887; gest. ebd., 19. 2. 1934; evang. AB." - }, - "model": "metainfo.text", - "pk": 47585 - }, - { - "fields": { - "kind": 130, - "source": 190, - "text": "Nannte sich Ehrenhaft-S. Tochter eines Advokaten, ab 1908 mit dem Atomphysiker Felix Ehrenhaft (geb. Wien, 24. 4. 1879; gest. ebd., 4. 2. 1952) verehel. Nach Absolv. des Mädchengymn. des Wr. Ver. für erweiterte Frauenbildung und der Ablegung der Matura in Prag stud. S. ab 1899 Mathematik und Physik an der Univ. Wien; 1903 Dr. phil., gilt sie als erste prom. Physikerin der Univ. Wien. Im selben Jahr legte sie auch die Lehramtsprüfung für Mittelschulen ab. I. d. F. unterrichtete S. an einem Wr. Mädchengymn., befaßte sich daneben mit physikal. Fragestellungen aus dem Bereich der Optik und hielt Vorträge für die Vereinigung österr. Hochschuldoz. Athenäum. Ihr Engagement im Bereich der Frauenbildung und –förderung führte 1907 zur Gründung eines Mädchengymn. in Wien 2. Auf Grund ihres Strebens nach gediegener Berufsausbildung für begabte Mädchen aus ärmerem Haus gründete sie 1907 gem. mit Olly Schwarz einen Ver. für höhere kommerzielle Frauenbildung und die erste Handelsakad. für Mädchen in der Schönborngasse (Wien 8), deren Leitung sie als erste Schuldir., die in den Staatsdienst übernommen wurde, bekleidete. Bis zuletzt blieb durch ihren Ehemann eine lose Verbindung zur Physik bestehen. Als Ausz. für ihre Tätigkeit erhielt S. die Titel Reg.Rat und HR (1931) verliehen.\n\n" - }, - "model": "metainfo.text", - "pk": 47594 - }, - { - "fields": { - "kind": 131, - "source": 190, - "text": "Steindler Olga, verehel. Ehrenhaft-S., Pädagogin und Physikerin. Geb. Wien, 28. 10. 1879; gest. ebd., 21. 12. 1933." - }, - "model": "metainfo.text", - "pk": 47595 - }, - { - "fields": { - "kind": 130, - "source": 191, - "text": "Sohn des Dir. eines Kohlenbergwerks, Neffe von Sir Marc Aurel S. (s. d.). S. besuchte 1902–10 das Gymn. in Wien und stud. an der Univ. klass. Philol. und Alte Geschichte bei L. M. Hartmann, W. Kubitschek, Bormann (alle s. d.) und Adolf Wilhelm; 1914 Dr. phil. Nach Militärdienst 1915–17 habil. er sich 1919 an der Univ. Wien. 1927–29 war S. an der Röm.-German. Komm. des Dt. Archäolog. Inst. in Frankfurt am Main mit der Klassifizierung rhein. Ziegelstempel der röm. Kaiserzeit beschäftigt, danach Doz. für Alte Geschichte an der Univ. Berlin, 1931–32 ao. Prof. für alte und byzantin. Geschichte ebendort. Mit Sorge und Konsequenz reagierte er auf den erstarkenden Nationalsozialismus: Unter seinem Ps. G. Hellseher verf. er ein Pamphlet gegen das nationalsozialist. Regime, kündigte seine Stellung und verließ Dtld. 1932–34 war er, unterstützt vom belg. Byzantinisten Henri Grégoire, Gastprof. an der Univ. Brüssel. Nach der „Machtergreifung“ Hitlers (s. d.) im Jänner 1933 publ. er nur mehr auf Französ.; 1934–35 war er Gastprof. an der Catholic Univ. of America (Washington, D. C.), 1937 wurde für ihn ein Lehrstuhl für byzantin. Geschichte an der Univ. Löwen eingerichtet. 1940 mußte S. jedoch Belgien mit seiner Frau Jeanne (Eheschließung 1923) unter falschem Namen (M. Sernet) verlassen. Trotz der äußerl. bedrängten Situation und dem ständigen Ortswechsel innerhalb seines Zufluchtslandes Frankreich arbeitete er am zweiten Bd. seiner „Histoire de l’Émpire byzantin“, die ihm angebotene Stelle als Bibliothekar an der Univ. Saint-Joseph in Beirut trat er wegen der polit. Verhältnisse nicht an. Nach seiner Flucht in die Schweiz 1942 war S. in Genf als Priv.Doz. tätig.\n\n" - }, - "model": "metainfo.text", - "pk": 47596 - }, - { - "fields": { - "kind": 131, - "source": 191, - "text": "Stein Ernst (Ernest) Edward Aurel, Ps. Gottlieb Hellseher, Historiker und Byzantinist. Geb. Jaworzno, Galizien (Polen), 19. 9. 1891; gest. Freiburg (Fribourg, Schweiz), 25. 2. 1945; aus jüd. Familie, ab 1932 röm.-kath." - }, - "model": "metainfo.text", - "pk": 47597 - }, - { - "fields": { - "kind": 130, - "source": 189, - "text": "Sohn eines Kleinbauern. S. besuchte 1858–66 das Gymn. in Neustadtl (Novo mesto), wurde 1866 zur Südarmee 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ächst Arbeiter auf einer Farm in Wisconsin, trat er durch Vermittlung seines Landsmannes Janez Vertin, des späteren Bischofs der Diözese Sault Sainte-Marie und Marquette, Mich., in das Priesterseminar in Milwaukee, Wis., ein; 1869 Priesterweihe. S. war dann bis 1871 Pfarrer in der französ. Gmd. Negaunee, Mich., danach in Red Wing, Minn. Von Franz Joseph I. (s. d.) begnadigt, konnte er 1879 erstmals wieder seine Heimat besuchen. 1883 kam er nach Saint Paul, Minn., wo er als Pfarrer der großteils aus Dt.böhmen und -ungarn bestehenden Gmd. und ab 1891 als Diözesanrat, ab 1897 als Gen.vikar wirkte. Nach der Errichtung (1902) der Diözese Lead, S. D., deren erster Bischof, hatte er ca. 14.000 Katholiken, darunter ca. 8.000 Indianer, zu betreuen und errichtete in fünf Jahren 23 neue Kirchen und Pfarreien. Durch übermäßige Arbeit erkrankt, resignierte S. 1909 auf seine Diözese und verbrachte, im selben Jahr zum Tit.Bischof von Antipatris ernannt, den Rest seines Lebens in Laibach.\n\n" - }, - "model": "metainfo.text", - "pk": 47602 - }, - { - "fields": { - "kind": 131, - "source": 189, - "text": "Stariha Janez Nep., Bischof und Missionar. Geb. Sodinsdorf, Krain (Sadinja vas, Slowenien), 12. 5. 1845; gest. Laibach, Krain (Ljubljana, Slowenien), 15. 12. 1915; röm.-kath." - }, - "model": "metainfo.text", - "pk": 47603 - }, - { - "fields": { - "kind": 130, - "source": 188, - "text": "– Sohn eines Grenzers. Š. wurde 1870 aus der Rgt.-Militärschule 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–1904 Ergänzungsbez.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 Š. das Kmdo. des Gendarmeriekorps für Bosnien-Herzegowina, 1911 GM. Ab September 1914 führte er eine kombinierte Brig. im Feldzug gegen Serbien, dann koordinierte er von Višegrad aus die Verteidigung Südostbosniens. Ende März 1915 übernahm 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ückverlegt, wurde Š. im Oktober vor Belgrad verwundet; nach seiner Genesung hatte er mit der Div. Anteil an der Eroberung Serbiens und Montenegros. Im Februar 1916 übernahm er das Kmdo. der 42. Honvéd-Inf.-Div. am Dnjestr, die jedoch im Verband der 7. Armee von den Russen in die Karpaten zurückgedrängt wurde. Im März 1917 dem Gen.-Insp. der Fußtruppen zugeteilt, ab Mai 1918 Gen. der Inf., wurde Š. im Juli 1918 beurlaubt, knapp vor der Veröff. des Oktobermanifests jedoch im Oktober 1918 als Militärkmdt. von Agram (Zagreb) reaktiviert. In dieser Funktion war er am gescheiterten Versuch, die südslaw. Nationen zum Eintritt in ein trialist. Bundeskaisertum zu bewegen, beteiligt. Nach Kriegsende i. R., verbrachte Š. seine letzten Lebensjahre auf seinem Gut in Cluj.\n" - }, - "model": "metainfo.text", - "pk": 47614 - }, - { - "fields": { - "kind": 131, - "source": 188, - "text": "Šnjaric Lukas, Offizier. Geb. Canke (Canak, Kroatien), 22. 6. 1851; gest. Cluj (Cluj-Napoca, Rumänien), 28. 1. 1930." - }, - "model": "metainfo.text", - "pk": 47615 - }, - { - "fields": { - "kind": 130, - "source": 187, - "text": "Sohn eines Eisenbahning. S. stud. vorerst Jus an der Univ.Lemberg, wechselte aber 1901 an die Krakauer Akad. der bildenden Künste, wo er bis 1907/08 (u. a. bei Józef v. Mehoffer, s. d., und Leon Wyczólkowski) Malerei stud., 1902–03 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ßte, 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ür die satir. Z. „Chochol“ (1902) und „Liberum Veto“ (1903–05), 1904 veröff. er die Mappe „30 Karikaturen“, mit Bildnissen von Literaten, Malern und Schauspielern. 1905 wurde S.Mitgl. der Vereinigung der Poln. Künstler „Sztuka“ und im selben Jahr Mitarbeiter des berühmten Krakauer Kabaretts „Zielony Balonik“, für das er die Inneneinrichtung des Cafés und Einladungen entwarf. Während dieser Zeit fertigte er auch Porträts, Karikaturen von bekannten Künstlern, die meist Schauspieler in ihren Theaterrollen zeigen, und Genrebilder in Öl mit folklorist. (huzul.) Thematik. Nach einem kurzen Aufenthalt in Paris (1907) ließ er sich im selben Jahr in Lemberg nieder. Während seiner Militärdienstzeit (1914–17)zeichnete er Porträts und Karikaturen bedeutender Persönlichkeiten des Militärwesens. Ab 1918 lebte S. wieder in Lemberg, wo er 1920–30 an der dortigen Schule für Angewandte Kunst und Kunstgewerbe unterrichtete und sich in seinem Œuvre der hist. und religiösen Thematik zuwandte; 1918–19 zeichnete er Karikaturen für die Z. „Szczutek“ und 1920 für „Rzeczpospolita“; ab 1930 lehrte er an der Akad. der bildenden Künste in Krakau (Kraków); 1937 o. Prof. S. erhielt zahlreiche Preise und Ausz., u. a. von der PAU (1934) und von der Polskiej Akad. Literatury (1938). Sein Œuvre fand in zahlreichen in- und ausländ. Ausst. seinen Niederschlag (u. a. Warschau, Lemberg, Wien, München und Rom).\n" - }, - "model": "metainfo.text", - "pk": 47626 - }, - { - "fields": { - "kind": 131, - "source": 187, - "text": "Sichulski Kazimierz, Maler und Karikaturist. Geb. Lemberg/Lwów, Galizien (L’viv, Ukraine), 17. 1. 1879; gest. ebd., 6. 11. 1942; röm.-kath." - }, - "model": "metainfo.text", - "pk": 47627 - }, - { - "fields": { - "kind": 130, - "source": 186, - "text": "Sohn eines Arztes und Hptm. der Schützenkompanie Ulten. S., der nach dem Willen seines Vaters ursprüngl. Kaufmann werden sollte, stud. angebl. an der Akad. der Bildenden Künste in München, wo er auch Privatunterricht nahm; anschließend übersiedelte er nach Meran und wirkte dort durch 30 Jahre als Zeichenlehrer (u. a. zählte die spätere dt. Kn. Auguste Viktoria zu seinen Schülerinnen). 1889 gehörte er zu den Gründungsmitgl. des Meraner Kunst- und Gewerbever., dem er durch mehrere Jahre auch als Obmann vorstand; 1902 Stadtrat. S.s Œuvre umfaßt vorwiegend Landschafts- und Architekturbilder mit Motiven der Meraner Umgebung und fand bei den Kurgästen großen 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ür die Nachwelt zu erhalten. 1905 wurden Werke aus seinem Nachlaß bei der Meraner Kunst- und Gewerbeausst. und im Tiroler Landesmus. Ferdinandeum präsentiert.\n" - }, - "model": "metainfo.text", - "pk": 47630 - }, - { - "fields": { - "kind": 131, - "source": 186, - "text": "Settari Wilhelm Anton Maria, Maler. Geb. St. Pankraz, Tirol (San Pancrazio/ St. Pankraz, Italien), 4. 10. 1841; gest. Meran, Tirol (Merano/Meran, Italien), 29. 1. 1905." - }, - "model": "metainfo.text", - "pk": 47631 - }, - { - "fields": { - "kind": 130, - "source": 185, - "text": "Sohn eines Polizei-Bez.Wundarztes. S. stud. nach dem Besuch der Oberrealschule in Wien-Schottenfeld 1869–73 am Polytechn. Inst. in Wien u. a. bei H. v. Ferstel (s. d.) und wurde in der Folge im Raum Wien und NÖ ein gesuchter Architekt auf dem Gebiet des Kommunalbaus, er entwarf u. a. die Rathäuser in Amstetten (1897/98) und Mistelbach (1901). Baurat S., dessen Arbeiten dem Repräsentationsbedürfnis seiner Zeit stark entgegen kamen, prägte v. a. das Stadtbild von St. Pölten, wo er erstmals 1883 mit dem neobarock geprägten Hauptgebäude der Sparkasse in Erscheinung trat. Es folgten weitere Aufträge für kommunale Bauten und Amtsgebäude, so vollendete er 1893 die Umgestaltung und Neufassadierung des Stadttheaters und noch im selben Jahr erfolgte der Baubeginn des neuen Postgebäudes nach seinem Entwurf. Der bedeutendste Auftrag S.s war jedoch die Errichtung des aus acht Gebäuden bestehenden K. Franz-Josef-Krankenhauses (S. gruppierte einzelne Pavillons um einen zentralen Verwaltungstrakt mit begrüntem Innenhof und Spitalskapelle), das 1894/95 von den Baumeistern Karl Schönbichler (s. d.), Franz Schulz und Richard Frauenfeld ausgeführt wurde. S. – auch im privaten Wohnbau tätig – setzte in seinem Œuvre „die Formimpulse des strengen Historismus unter dem Einfluß der neueren Entwicklungen in einen dekorativen Repräsentationsstil von provinzieller Note um, der sich bei geschickter Adaptierung des zur Verfügung stehenden Formenapparates für zahlreiche Bauaufgaben vom Rathaus bis zur Villa verwenden ließ“ (W. Kitlitschka).\n" - }, - "model": "metainfo.text", - "pk": 47634 - }, - { - "fields": { - "kind": 131, - "source": 185, - "text": "Sehnal Eugen, Architekt. Geb. Kufstein (Tirol), 22. 12. 1851; gest. Wien, 12. 9. 1910." - }, - "model": "metainfo.text", - "pk": 47635 - }, - { - "fields": { - "kind": 130, - "source": 181, - "text": "Sohn des Badener Gmd.Sekretärs und Musikers am Stadttheater, Ludwig S., und von Josefa Katharina S., geb. Ditrich. S. besuchte 1861–65 das Gymn. im Stift Heiligenkreuz, wo er auch Sängerknabe war, dann das Wr. Schottengymn. Nach dem Tod des Vaters (1867) übersiedelte die Familie (S. hatte zwölf Geschwister) nach Wien, 1869 begann S. das Noviziat bei den Piaristen in Krems. 1870 Matura in Wien. 1871 verließ er den Orden auf Anraten seiner Oberen, die während des damaligen Kulturkampfes am Fortbestand der eigenen Ordensgemeinschaft zweifelten, und trat ins Wr. Priesterseminar ein. Hier nahm S. 1873 während einer Erkrankung den zweiten Vornamen „Maria“ an. Nach der Priesterweihe (1875) war er bis 1879 Kaplan in Marchegg (NÖ) – wo er wegen seiner Strenge, aber auch wegen seines sozialen Wirkens als „Papst von Marchegg“ bezeichnet wurde –, 1879–86 Spitals-Seelsorger bei den Barmherzigen Schwestern in Sechshaus (Wien XV). Er lernte in Wien die seel. und soziale Not der Lehrlinge in der Großstadt kennen und antwortete 1882 mit der Gründung des „Katholischen Lehrlings-Vereins“, rief 1886 das „Lehrlingsasyl“ sowie 1888 eine kostenlose Lehrstellenvermittlung ins Leben. Ab 1888 gab S. die Ms. „Das christliche Handwerk“ (Vorläufer der jetzt noch erscheinenden „Kalasantiner-Blätter“) heraus, 1889 baute er in Fünfhaus (Wien XV) die erste Arbeiterkirche Wiens. 1889 erfolgte die Gründung der „Kongregation der frommen Arbeiter unter dem Schutz des hl. Josef Calasanz“ („Kalasantiner“), der ersten österr. Männerkongregation, 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über hinaus offen bleiben, an jeder Form der Arbeiter- und bes. der Jugendarbeiterseelsorge mitwirken – sei es in den verschiedensten Arbeiter- und Jugendbewegungen oder durch Übernahme von Pfarren in Arbeitervierteln der Städte. Weitere begleitende Gründungen waren: Marian. Arbeitersodalität, Herz Jesu-Arbeiter-Oratorium, Frauenwohltätigkeitsver., Mariazellerver. und Muttergottesbund. 1897–1926 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ündung von Selbstschutzund Bildungsverbänden auf und unterstützte u. a. 1889 den Wr. Tramwaystreik. 1908 zog er sich von jeder öff. Kontroverse zurück. Kardinal Piffl (s. d.), der ihn freundschaftl. unterstützte und 1919 zum Generalsuperior des Ordens bestimmte, nannte ihn den „Arbeiterapostel“. Dem 1949 eröffneten Seligsprechungsprozeß folgte 1998 die Seligsprechung durch Papst Johannes Paul II. in Wien. S.’ kirchl. Gedenktag ist der 17. September.\n" - }, - "model": "metainfo.text", - "pk": 47640 - }, - { - "fields": { - "kind": 131, - "source": 181, - "text": "Schwartz — P. Anton Maria, COp, Seelsorger und Ordensmann. Geb. Baden (NÖ), 28. 2. 1852; gest. Wien, 15. 9. 1929." - }, - "model": "metainfo.text", - "pk": 47641 - }, - { - "fields": { - "kind": 130, - "source": 182, - "text": "Sohn eines Müllers. Nach dem Besuch des Gymn. in Olmütz (Olomouc) 1854–62 stud. S. von 1862–67 Geschichte, Geographie und Germanistik an der Univ. Wien, in denen er 1867 die Lehramtsprüfung ablegte. Ab 1865 war er Mitgl. des Inst. für österr. Geschichtsforschung, dessen Ausbildungslehrgang er jedoch nicht abschloß. 1867 trat S. als Stud.Präfekt in die Theresian. Akad. in Wien ein, erlangte aber erst 1873 seine Definitivstellung als Gymn.Lehrer am Staatsgymn. in Saaz (Žatec), von wo er 1878 nach Troppau (Opava) wechselte. 1880 kehrte S. an die Theresian. Akad. zurück, an der er bis an sein Lebensende wirkte. 1897 Schulrat, 1902 Ritterkreuz des Franz-Joseph-Ordens. Außer als Gymn.Lehrer wirkte S. auch als Fachprüfer an der Konsularakad. Wiss. beschäftigte sich S. v. a. mit der Geschichte der Theresian. Akad., wobei sich seine Arbeiten durch Genauigkeit der Quellenauswertung und übersichtl. Darstellungsweise auszeichnen.\n" - }, - "model": "metainfo.text", - "pk": 47642 - }, - { - "fields": { - "kind": 131, - "source": 182, - "text": "Schwarz — Johann, Historiker und Gymnasiallehrer. Geb. Hermesdorf, Mähren (Temenice, Tschechien), 16. 11. 1840; gest. Wien, 28. 12. 1903." - }, - "model": "metainfo.text", - "pk": 47643 - }, - { - "fields": { - "kind": 130, - "source": 183, - "text": "Sohn des Zwirnhändlers 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ünster und absolv. danach eine Kaufmannslehre in Wien. 1834 erwarb er ein Haus in Freistadt und eröffnete darin eine Spezerei-, Material- und Schnittwarenhandlung. In der Folge brachte er außerdem eine Färberei und einen Gasthof in Freistadt sowie eine Brauerei in Weinberg und einige Häuser in Freistadt und Umgebung in seinen Besitz. Bereits 1848 wurde er in den oö. Landtag gewählt, dem er dann auch 1861–79 angehören sollte und in dem er als Obmann-Stellv. des Straßenausschusses fungierte. 1864–73 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ädt. Schulwesens, zu dessen Entwicklung er maßgebl. beitrug. So initiierte S. die Errichtung des 1867 eröffneten Untergymn. in Freistadt, das auf sein Betreiben ab 1871/72 als Real- und Obergymn. geführt werden durfte, und richtete ferner, nach dem Rückzug der Piaristen, 1871 eine Knabenvolksschule ein. Außerdem engagierte er sich v. a. finanziell bes. bei der Renovierung der Freistädter Stadtpfarrkirche sowie ab 1857 bei der Instandsetzung der Johanneskirche.\n" - }, - "model": "metainfo.text", - "pk": 47644 - }, - { - "fields": { - "kind": 131, - "source": 183, - "text": "Schwarz — Kaspar, Politiker und Kaufmann. Geb. Lasberg (OÖ), 6. 11. 1811; gest. Freistadt (OÖ), 7. 5. 1879." - }, - "model": "metainfo.text", - "pk": 47645 - }, - { - "fields": { - "kind": 130, - "source": 184, - "text": "Vater von Josef S. (s. u.). Nach Besuch des Gymn. in Neiße stud. S. 1834–36 in Breslau (Wroclaw) und 1836–37 in Berlin Jus (Doktorat nicht nach weisbar). 1837 wurde er Oberlandesgerichtsauskultator in Neiße, 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. „Der Tunnel über der Spree“ und des jüngeren Berliner Dichterver. Er betätigte sich journalist. vorwiegend als Theaterkritiker („Theater-Figaro“, „Breslauer Zeitung“ 1840ff.), war nach seiner Rückkehr nach Breslau 1840–48 ausschließl. für die Presse tätig und wurde Mitarbeiter auch auswärtiger Z. (u. a. „Berliner Figaro“, „Berliner Modenspiegel“, „Der Gesellschafter“, „Der Pilot“). Ab 1845 war er Hrsg. bzw. Mithrsg. von mehreren Jgg. des „Breslauer Volks-Kalenders“ (bzw. „Deutscher Volkskalender“). In seinen Ged. bevorzugte S. Stoffe aus schles. Sagen. Pressegeschichtl. wichtig war seine Smlg. „Bestrebungen und Leistungen Breslauer Publizisten in den Jahren 1842, 1843 und 1844“ (60 Aufsätze, 1844), in der er die Möglichkeiten journalist. Arbeit nach Maßgabe der neuen Pressegesetzgebung absteckte und selbst mit einem bis hart an die Grenze gehenden Beitr. vertreten war. Das Buch wies ihn offenbar als für österr. Verhältnisse 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, übernahm S., der von Hebbel (s. d.) und Stifter geschätzt, von Hanslick (s. d.) hingegen sehr krit. gewertet wurde, nach kurzer Tätigkeit in der Red. der „Presse“, 1849, ab 1850 als verantwortl. Red. die „Wiener Zeitung“, die in der Zeit seiner Tätigkeit um die zusätzl. Organe „Abendblatt“ (1852–57), „Österreichische Blätter für Literatur und Kunst“ (1852–57) und die „Österreichische Wochenschrift für Wissenschaft, Kunst und öffentliches Leben“ (1863–65) erweitert wurde. S. war Reg.Rat im bes. Dienst des Min. des Inneren und wurde durch mehrere ausländ. Ordensverleihungen ausgez. 1865 i. R., gab er eine Zeitlang eine Korrespondenz heraus, die wegen ihrer Verläßlichkeit geschätzt war. Zuletzt lebte er völlig erblindet und zurückgezogen in Klosterneuburg. Sein Sohn Josef S. (geb. Wien, 8. 5. 1853; gest. ebenda, 11. 2. 1935), anfängl. Bankbeamter, trat ebenfalls als Journalist hervor, später als Autor einiger Lustspiele und Schwänke („Der Heiratsvermittler“, 1886, „Schönheitspreis und Liebespreis“, 1893, usw.).\n" - }, - "model": "metainfo.text", - "pk": 47648 - }, - { - "fields": { - "kind": 131, - "source": 184, - "text": "Schweitzer Leopold Albrecht, Journalist und Schriftsteller. Geb. Neiße, Preußen (Nysa, Polen), 1. 2. 1815; gest. Klosterneuburg (NÖ), 9. 7. 1896." - }, - "model": "metainfo.text", - "pk": 47649 - }, - { - "fields": { - "kind": 130, - "source": 180, - "text": "Nach absolv. Schulbesuch arbeitete S. zunächst in der elterl. Landwirtschaft, um nach seiner Heirat mit Maria Lechner (1876) in deren Elternhaus zu ziehen und den dortigen Familienbetrieb zu übernehmen. Polit. engagiert, gehörte er 1882–84 sowie 1894–97 dem Badener Gmd.Rat an, wo er sich v. a. für 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ämpfung der Reblaus, die 1882 auch in Baden zu wüten begann. Durch das Aufpfropfen der Edelreben auf gegen den Schädling resistente Wildreben aus Amerika, ein Verfahren, das S. in einem seiner Weingärten mit großem 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ür seine Rebschule, in der er die angeführte Veredelungsmethode praktizierte, zur Anwendung brachte. Aufgrund seiner großen Erfahrung wurde S. vom Reichsweinbauver., dessen Mitgl. er war, sowie vom nö. Landesausschuß als Demonstrator und Lehrer in die von der Reblaus befallenen Gebiete entsandt, um die dortige Weinhauerschaft im Umgang mit dem Schädling zu unterweisen. Für seine erfolgreiche Tätigkeit 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ührt haben. Neben dem Weinbau widmete sich S. auch der Viehzucht. So gründete er 1887 den Badener Rinderzuchtver. und besaß eine nicht unbedeutende Schweinezucht. S., der aufgrund seiner wirtschaftl. Erfolge auch im gesellschaftl. Leben Badens eine bedeutende Rolle spielte – er war Mitgl. bei mehreren Ver. –, wurde wegen seiner hohen fachl. Kompetenz 1889 vom Bez. Gericht Baden zum Grund- und Weinschätzmeister bestellt. 1954 wurde eine Gasse nach ihm benannt.\n" - }, - "model": "metainfo.text", - "pk": 47650 - }, - { - "fields": { - "kind": 131, - "source": 180, - "text": "Schwabl Franz, Landwirt und Weinhauer. Geb. Baden (NÖ), 29. 6. 1854; gest. ebenda, 16. 4. 1923. Sohn eines Weinhauers." - }, - "model": "metainfo.text", - "pk": 47651 - }, - { - "fields": { - "kind": 130, - "source": 179, - "text": "Bruder von Heinrich S., Vater von Joseph E. S. (beide s. u.). S. stud. 1871–77 am Konservatorium der Ges. der Musikfreunde in Wien bei Anton Zamara Harfe und begann danach seine Laufbahn als Soloharfenist in verschiedenen Orchestern: 1877–82 Park Orchester, Amsterdam, 1882–83 Parlow Orchester, Hamburg, 1883–84 kgl. Staatskapelle Dresden. 1884–91 spielte S. im Leipziger Gewandhausorchester und lehrte am Leipziger Konservatorium, um dann in das neugegründete Chicago Symphony Orchestra einzutreten. Im Juni 1900 von Mahler (s. d.) ins Wr. Hofopernorchester berufen, mußte 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–04 spielte S. im Pittsburgh Symphony Orchestra, 1904–09 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ür die Ausführung 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ücken 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–84 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–01 bei Alfred Zamara am Wr. Konservatorium der Ges. der Musikfreunde und war 1904–05 bzw. 1908–09 Soloharfenist im Pittsburgh Symphony Orchestra. Danach als Nachfolger seines Vaters im Philadelphia Orchestra, 1911–13 Harfenist einer Opernges. in Boston, lehrte er 1915–20 am Carnegie Inst. of Technology in Pittsburgh (Pa.) und trat 1926 wieder ins Pittsburgh Symphony Orchestra ein, an dem er bis 1930 blieb.\n" - }, - "model": "metainfo.text", - "pk": 47660 - }, - { - "fields": { - "kind": 131, - "source": 179, - "text": "Schuëcker (eigentl. Schuöcker) Edmund, Harfenist und Komponist. Geb. Wien, 16. 11. 1860; gest. Kreuznach, Preußen (Bad Kreuznach, Deutschland), 9. 11. 1911." - }, - "model": "metainfo.text", - "pk": 47661 - }, - { - "fields": { - "kind": 130, - "source": 178, - "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üher Jugend zahlreiche Städte Europas kennen. Seine ersten künstler. Anleitungen erhielt er 1852 in St. Petersburg durch den russ. Hofmaler Michael v. Zichy. Infolge der Übersiedlung 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–58 stud. er am Städel’schen Kunstinst. bei Johann Nep. Zwerger und Johannes Christian Dielmann und setzte seine Stud. 1858–61 in Dresden an der Kgl. Akad. bei Ernst Friedrich August Rietschel fort. 1861 übersiedelte er nach Wien, 1863–65 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–1908 war er Ass. an der Akad. der bildenden Künste in Wien, wo er zeitweise die Klasse für Bildhauerei leitete. In dieser Zeit schuf er eine Grillparzer-Büste für das Hofburgtheater, ein Grillparzer-Monument in Baden, die Bildnisbüste des Nikolaus Joseph v. Jacquin für die Arkaden der Univ. Wien und ein Bildnisrelief von E. Fenzl (s. d.) für den Botan. Garten. Ferner wirkte er an der skulpturellen Ausschmückung des Naturhist. Mus. in Wien mit.\n" - }, - "model": "metainfo.text", - "pk": 47662 - }, - { - "fields": { - "kind": 131, - "source": 178, - "text": "Schrödl Leopold, Bildhauer. Geb. Wien, 7. 7. 1841; gest. ebenda, 5. 12. 1908." - }, - "model": "metainfo.text", - "pk": 47663 - }, - { - "fields": { - "kind": 130, - "source": 177, - "text": "Sohn eines Hausbesitzers. Nach dem Besuch der Oberrealschule in Olmütz (Olomouc) stud. er ab 1897 an der Dt. techn. Hochschule in Brünn (Brno) Maschinenbau, 1898–1903 an der Bauing.Schule (1905 Staatsprüfung). Zunächst an der Brünner Hochschule für einige Monate als Ass. tätig, begann er 1905 als Bauadjunkt in der k. k. Tabakregie. In der Folge wurde er mit der Bauleitung bei verschiedenen größeren Neubauten der Tabakregie, so z. B. bei dem Neubau der Virginierfabrik in Stein a. d. Donau (1919–22), betraut. Als Baurat übernahm er 1920 die selbständige Leitung der Bauabt., die für die Planung und Veranschlagung aller Bauten der Tabakregie verantwortl. war; 1922 Oberbaurat. In dieser Funktion war er u. a. maßgebl. 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.über die Bautätigkeit der Österr. Tabakregie. 1930 HR, 1947 i. R.\n" - }, - "model": "metainfo.text", - "pk": 47672 - }, - { - "fields": { - "kind": 131, - "source": 177, - "text": "Schreyer Johann, Bauingenieur. Geb. Friedland a. d. Mohra/Fridlant nad Moravicí, Mähren (Bridlicná, Tschechien), 9. 12. 1876; gest. Wien, 14. 4. 1950." - }, - "model": "metainfo.text", - "pk": 47673 - }, - { - "fields": { - "kind": 130, - "source": 175, - "text": "Sohn eines Zollbeamten. Stud. nach Absolv. der phil. Jgg. an der Univ. Prag 1840–41 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ührung 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üh mit dem Einfluß der Haft auf die Entstehung von Geistesstörungen bei Sträflingen zu beschäftigen. An seiner Klinik betrieb der ab 1878 dort tätige Nathan Weiss seine grundlegenden Tetaniestud. und Freud (s. d.), 1882–85 Aspirant bzw. Sekundararzt, begann sich bei S. u. a. mit Neuropathol. zu befassen.\n" - }, - "model": "metainfo.text", - "pk": 47676 - }, - { - "fields": { - "kind": 131, - "source": 175, - "text": "Scholz Franz, Mediziner. Geb. Moldau, Böhmen (Moldava, Tschechien), 20. 8. 1819; gest. Wien, 19. 5. 1902." - }, - "model": "metainfo.text", - "pk": 47677 - }, - { - "fields": { - "kind": 130, - "source": 176, - "text": "Sohn des Kaspar Schram(m)el (geb. Hörmanns b. Litschau/Litschau, NÖ, 6. 1. 1811; gest. Langenzersdorf, NÖ, 20. 12. 1895) und (Eheschließung 1853) der Volkssängerin Aloisia Ernst (1829–1881), Bruder des Joseph S. (geb.Ottakring, NÖ/Wien, 3. 3. 1852; gest. Wien, 24. 11. 1895), Halbbruder des Konrad S. (1833–1905), der, 1866 als Invalide aus dem Militärdienst entlassen, ab 1869 seinen Lebensunterhalt als Drehorgelspieler bestritt. Kaspar S., gelernter Weber, war schon früh in Dorfkapellen als Klarinettist tätig, ab 1846 lebte er als Musiker in Neulerchenfeld, einem Zentrum volkstüml.-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 öff. Tätigkeit), doch erhielten beide – ein für ihre Verhältnisse ungewöhnl. Schritt – auch eine Ausbildung am Wr. Konservatorium der Ges. der Musikfreunde. S. war dort 1862–63 Violinschüler Georg Hellmesbergers (s. d.), 1864 bis zu seinem Ausschluß (aus ungeklärten Ursachen) 1866 Karl Heißlers, Joseph 1865/66 ebenfalls Schüler Hellmesbergers. Nach dem Militärdienst (1866–72, 1870 Korporal) spielte S. in einigen „Nationalquartetten“ und wurde 1875 Mitgl. der Salonkapelle Karl Margold, die in großen Wr. Etablissements ein breit gestreutes Repertoire vortrug. 1878, in einer Zeit der Krise der Salonkapellen, gründete S. auf Vorschlag Josephs (der nach einer Kunstreise im Orient – 1869–71 – bis 1875 in verschiedenen Wr. Ensembles, dann als Leiter einer eigenen Ges. gespielt hatte) gem. mit diesem ein Volksmusikterzett („Nußdorfer Terzett“), in dem Joseph die 1., er selbst die 2. Geige und zunächst F. Draskovits, bald aber Anton Strohmayer die Kontragitarre spielte. Das Terzett, zu dessen Bezeichnung bald auch der Name der Brüder verwendet wurde, wurde durch seine ao. Leistungen sehr rasch zu einem Begriff. 1884 verband es sich mit dem ausgezeichneten Klarinettisten (G-Klarinette, sog. „picksüßes Hölzl“) Georg Dänzer (geb.Hernals, NÖ/Wien, 21. 3. 1848; gest. auf hoher See, 23. 4. 1893) zum Quartett „Gebr. Schrammel, Dänzer und Strohmayer“, das in dieser Besetzung bis zum Ausscheiden Dänzers Ende 1891 – Strohmayer verließ das Quartett Ende 1892 – verblieb; an die Stelle der Klarinette trat nun die Knopfharmonika. Diese zweite Version hat sich in der wiener. Musik schließl. durchgesetzt; erst die Neubelebung der Schrammelmusik seit der Mitte der 60er Jahre unseres Jh. hat auf die ursprüngl. Quartettbesetzung zurückgegriffen. Im Wr. Musikleben spielten die „Schrammeln“ eine Doppelrolle: Das Ensemble war in fast allen Etablissements der Stadt und ihrer Vororte zu hören, wurde aber auch in die Palais der Aristokratie eingeladen. Bei ihren Produktionen traten sie zusammen mit „Natursängern“, unter denen sich zahlreiche Fiaker befanden, auf. Die konzessionierten Volkssänger ließen diese Vorträge zeitweise verbieten, weswegen die Brüder S. eine eigene Lizenz beantragten, die sie 1890 auch erhielten. Äußerst erfolgreiche Gastspielreisen führten das Quartett 1888 und 1889 durch Deutschland, der letzte Höhepunkt waren die tägl. Produktionen anläßl. der Internationalen Ausst. für Musik- und Theaterwesen in Wien, 1892, doch mußte sich S. wegen seiner zunehmenden Herzkrankheit dann zurückziehen. Er starb ebenso wie Joseph, der das Ensemble, selbst bereits schwerkrank, weiterführte, völlig mittellos. Als Komponist schloß S. an seine Vorläufer an (so gab er 1888 3 He. „Alte oesterreichische Volksmelodien …“ heraus), seine (zu etwa 1/3 gedruckten) über 250 Werke (auch gem. mit dem allerdings weniger produktiven Joseph) umfassen Lieder, Duette, Walzer, Polkas und Märsche (u. a. „Wien bleibt Wien“, 1886), Josephs bekannteste Komposition ist das Lied „Vindobona, du herrliche Stadt“. Die „Schrammeln“ und „Schrammelmusik“ „blieben als Begriffe für ein volkstüml. Ensemble und ein entsprechendes Musizieren erhalten“ (W. Deutsch). Zwar waren Besetzung und Kompositionsstil durch ihre Vorläufer bereits vorgegeben, doch waren sie das beste und produktivste Ensemble ihrer Zeit. Ihre techn. und interpretator. Fähigkeiten fanden enthusiast. Widerhall in allen sozialen Schichten, aber auch höchste Anerkennung von Musikern wie Brahms, H. Richter (beide s. d.) und Johann Strauß.\n" - }, - "model": "metainfo.text", - "pk": 47678 - }, - { - "fields": { - "kind": 131, - "source": 176, - "text": "Schrammel Johann, Musiker und Komponist. Geb. Neulerchenfeld, NÖ (Wien), 22. 5. 1850; gest. Wien, 17. 6. 1893." - }, - "model": "metainfo.text", - "pk": 47679 - }, - { - "fields": { - "kind": 130, - "source": 174, - "text": "Sohn eines niederen Staatsbeamten. S. verbrachte seine frühe Jugendzeit in Villach. Nach dem Besuch des Klagenfurter Gymn. stud. S. 1826–29 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’viv) versetzt, wo er als Aushilfsreferent (bis 1839), Fiskal-Aktuar (bis 1841) und Fiskal-Adjunkt (bis 1847) tätig war. 1847 erfolgte seine Versetzung als Landrat zum Gefällen-Bez.Gericht bzw. Landrecht in Tarnów. Während eines Urlaubs in Villach wurde er 1848 im dortigen Wahlbez. für den Reichstag nominiert und nach dem Verzicht J. Schlegels (s. d.) mit dem Mandat betraut. S. wirkte insbes. im Verfassungsausschuß mit, für den er auch als Referent fungierte. Hier setzte er sich u. a. bes. für die Unabhängigkeit Kärntens ein. Weiters war S. Mitgl. der Redaktionskomm. für die stenograph. Protokolle und fungierte als Abt.Referent. Ende September 1848 trat er dem „Zentrumklub“ bei und gehörte im Dezember dieses Jahres der Reichstagsdeputation nach Olmütz (Olomouc) und Prag an. Nach der Auflösung des Reichstags 1849 zog sich S. aus der Politik zurück und wurde dem nö. Appellationsgericht zugeteilt. 1850 erfolgte seine Versetzung als OLGR zum Oberlandesgericht Linz. 1854 zum Präs. des neu organisierten Kreisgerichtes Korneuburg berufen, erhielt S. bei seinem Abschied 1864 das Ehrenbürgerrecht der Stadt verliehen und wechselte im selben Jahr auf den Posten des 2. Vizepräs. des Landesgerichts Wien, wo er auch Vors. des Zivilsenats war. 1870 wurde er zum HR und 1872 zum 1. Vizepräs. des Wr. Landesgerichts ernannt. Wegen seiner geschwächten Gesundheit ersuchte S. 1873 um vorzeitige Versetzung i. R. Er wurde mit dem Ritterkreuz des Leopold-Ordens ausgez.\n" - }, - "model": "metainfo.text", - "pk": 47684 - }, - { - "fields": { - "kind": 131, - "source": 174, - "text": "Scholl Joseph, Politiker und Jurist. Geb. Regio oder Rea (?), Venetien (Italien), 1804 oder 1805; gest. Graz (Stmk.), 12. 12. 1884." - }, - "model": "metainfo.text", - "pk": 47685 - }, - { - "fields": { - "kind": 130, - "source": 172, - "text": "Sohn des Lorenz Adolf S. und der Freiin Hundbiß, Vater von Béla Frh. v. S. (beide s. d.) und Bruno Frh. v. S. (s. u. Béla Frh. v. S.). Wuchs nach dem frühen 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ültig i. R. versetzt. 1822 zum Husarenrgt. 3 transferiert, kommandierte er drei Jahre die Rgt.Equitation und zeichnete sich während des ung. Aufstandes 1848/49 bei mehreren Kampfhandlungen aus. Als GM wurde er zum Gen.Stab überstellt und bewährte 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är beim 3. Inf.Armeekorps durch umsichtige Führung sowie persönl. Tapferkeit in den Schlachten von Magenta und Solferino hervor. Bis zu seiner ersten Ruhestandsperiode führte er dann die Administrationsgeschäfte des Landesgendarmeriekmdo. in Lemberg (L’viv). S. heiratete dreimal, 1831 Johanna Gfn. Zichy de Vásonykeö (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örz, 14. 4. 1874). In Anerkennung seiner Leistungen erhielt er mehrere in- und ausländ. Orden und wurde 1865 Geh. Rat, 1860 Frh. S. machte sich v. a. durch die Ausarbeitung des Planes für die von ihm angeregte und nach dem Feldzug von 1848/49 durchgeführte Reorganisation der Husarenrgt. verdient.\n" - }, - "model": "metainfo.text", - "pk": 47688 - }, - { - "fields": { - "kind": 131, - "source": 172, - "text": "Schönberger (Schoenberger) (Carl Friedrich) Adolf Frh. von, General und Gendarmeriegeneralinspektor. Geb. Konstanz, Vorderösterr. (Deutschland), 30. 6. 1804; gest. Görz, Görz-Gradisca (Gorizia, Italien), 19. 12. 1880." - }, - "model": "metainfo.text", - "pk": 47689 - }, - { - "fields": { - "kind": 130, - "source": 173, - "text": "Stud. 1872–80 am Wr. Konservatorium der Ges. der Musikfreunde bei Anton Door (Klavier), Bruckner (Kontrapunkt) und Robert Volkmann (Komposition), später auch bei Liszt. Bereits mit 11 Jahren spielte er mit dem Hellmesberger-Quartett. 1878 machte S. eine Tournee durch Rußland, Deutschland, Österr. und Belgien. 1880–85 lehrte er in Wien, 1886 reiste er nach Schweden und anschließend nach London, wo er im Jänner 1887 erstmals als Solist auftrat und sich in der Folge niederließ. S. gehörte zu den angesehensten Pianisten Londons und unterrichtete auch an der Royal Acad. of Music. 1894 war er in Amerika, später 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" - }, - "model": "metainfo.text", - "pk": 47690 - }, - { - "fields": { - "kind": 131, - "source": 173, - "text": "Schönberger Benno, Pianist. Geb. Wien, 12. 9. 1863; gest. Wisborough Green, Sussex (Großbritannien), 9. 3. 1930." - }, - "model": "metainfo.text", - "pk": 47691 - }, - { - "fields": { - "kind": 130, - "source": 169, - "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ücke 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–95 als Ass. wirkte. 1895 habil. er sich an der Univ. Wien für 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ür 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äß den modernen Erfordernissen der Chirurgie aus, unterhielt eine ausgedehnte Privatpraxis, widmete sich aber daneben auch wiss. Forschungen und veröff. gegen 100 Arbeiten. Sein bes. Interesse galt den Bauchorganen, so den Ursachen von Blasenentzündung bzw. -katarrh, v. a. aber natürl. chirurg. Problemen. Als einer der ersten beschäftigte er sich mit der operativen Behandlung der akuten Blinddarmentzündung, propagierte umfangreiche Resektionen bei Magen- und Zwölffingerdarmgeschwüren, erarbeitete Vorbeugungsmaßnahmen gegen postoperative Thrombosen, wies auf die Existenz vererbbarer Dispositionen zu diesen bzw. zu Embolien hin und beschäftigte sich zuletzt auch mit Fragen der Krebserkrankung der weibl. Brust. S., ein hervorragender Lehrer sowie Vortragender, besaß sprühenden Geist und feinen Humor, pflegte literar., v. a. aber musikal. Interessen und betrieb als ausgez. Geiger selbst Kammermusik. Aufgrund seiner Leistungen fand er auch öff. Anerkennung, wurde 1917 Reg.Rat, 1929 Tit. HR und erhielt u. a. 1935 das Komturkreuz des Österr. Verdienstordens. Durch sein Bemühen um die Diagnostik der Blinddarmentzündung und sein entschiedenes Eintreten in Theorie und Praxis für umgehende Operationen konnte S. die Sterblichkeitsrate bei dieser Krankheit wesentl. senken. S. stand in einem engen persönl. Verhältnis zu seinem Bruder Arthur, das in zwei von dessen erzähler. Werken („Der blinde Geronimo und sein Bruder“, „Flucht in die Finsternis“) Niederschlag fand.\n" - }, - "model": "metainfo.text", - "pk": 47694 - }, - { - "fields": { - "kind": 131, - "source": 169, - "text": "Schnitzler Julius, Chirurg. Geb. Wien, 13. 7. 1865; gest. ebenda, 29. 6. 1939." - }, - "model": "metainfo.text", - "pk": 47695 - }, - { - "fields": { - "kind": 130, - "source": 170, - "text": "Sohn des OLGR Michael S. Besuchte das Schottengymn. und stud. 1874–78 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ßreform hervorragend beteiligt. Er war Mitgl. der Komm., dann des engeren Komitees für die Arbeiten zur Reform des Strafgesetzes und hatte entscheidenden Anteil am Vorentwurf, 1909, wofür er im selben Jahr mit dem Ritterkreuz des Leopold-Ordens ausgez. wurde. Sein bes. Verständnis für die Bedürfnisse der Militärverwaltung –1877 Lt. der Res., hatte er 1878 an der Okkupation Bosniens und der Herzegovina teilgenommen, 1883 wurde er Oblt.-Auditor in der Res. – brachte es mit sich, daß sein Rat von den militär. Stellen oft in Anspruch genommen wurde; für seine bes. verdienstvolle Mitwirkung an der Reform der Wehrgesetzgebung und des Militärstrafverfahrens (Militärstrafprozeßordnung 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üssen beider Häuser des Reichsrates war er sehr oft als Vertreter des Justizmin. tätig. 1908 bis zu seinem Tod fungierte er auch als Mitgl. der judiziellen Staatsprüfungskomm. in Wien. 1916 wurde S. auch Ritter der zweiten Klasse des Ordens der eisernen Krone.\n" - }, - "model": "metainfo.text", - "pk": 47696 - }, - { - "fields": { - "kind": 131, - "source": 170, - "text": "Schober Alfred, Jurist und Beamter. Geb. Wien, 15. 12. 1856; gest. ebenda, 7. 3. 1917." - }, - "model": "metainfo.text", - "pk": 47697 - }, - { - "fields": { - "kind": 130, - "source": 171, - "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. Österreicher (s. d.); evang. HB. S., der als Mitschöpfer des Werkes Alexander v. S.s gilt, wurde von diesem 1847 in das Großhandlungshaus „Alexander Schoeller“ (später „Schoeller & Co.“) nach Wien geholt, ab 1869 öff. Gesellschafter. Er konnte seinen Onkel bei der Weiterführung der Firmenunternehmungen wesentl. entlasten, insbes. was die Ternitzer Eisenwerke sowie den Absatz der Zucker- und Mühlenprodukte anlangte. Nach dem Tod Alexanders folgte er diesem als Chef von „Schoeller & Co.“ nach. Unter S.s Leitung wurde 1888 im Berndorfer Werk, das nach seinem Tod 1890 in den alleinigen Besitz von A. Krupp (s. d.) überging, durch die Erzeugung von Blechen und Drähten aus Messing und Tombak und die Aufstellung eines Dampfhammers eine eigene Hülsenfabrik zur Produktion von Kriegsmaterial begründet. Im Ternitzer Werk, der „Ternitzer-Walzwerk und Bessemer-Stahlfabrikations-AG.“, führte S. die noch von seinem Onkel geplanten Neuorganisationen fort; die in Hirschwang und Edlach befindl. Betriebe wurden aus wirtschaftl. Gründen nach Ternitz verlegt, der Hochofenbetrieb wurde eingestellt. Kurz vor S.s Tod wurde die AG aufgelöst. Wegen eines schweren Nervenleidens mußte er die Firmenleitung zuletzt fast gänzl. seinen mitverantwortl. Cousins Philipp Wilhelm und Paul Eduard überlassen. S. bekleidete auch eine große Zahl von Verwaltungsratsstellen bei großen österr. 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–89 Gmd.Vertreter, 1867–89 auch Presbyter und betreute – wie auch schon sein Onkel – deren Vermögensverwaltung. S.s Vater, (Heinrich) Eduard v. S. (geb. Düren, Frankreich/Deutschland, 12. 1. 1803; gest. Ternitz, NÖ, 18. 1. 1879), war wie etl. andere Angehörige der Familie S. in der Zuckerind. tätig. Vorerst gem. mit Reich und vermutl. mit finanzieller Unterstützung seines Bruders Alexander pachtete er 1853 die Herrschaft Edelény bei Miskolcz und richtete die darauf befindl. Zuckerrübenfabrik neu ein, hatte jedoch Anfang der 60er Jahre mit schweren Verlusten zu kämpfen. 1873 trat er i. R. und wurde im darauffolgenden Jahr nob.\n" - }, - "model": "metainfo.text", - "pk": 47700 - }, - { - "fields": { - "kind": 131, - "source": 171, - "text": "Schoeller Gustav Adolph von, Großindustrieller, Großunternehmer und Bankier. Geb. Düren, Preußen (Deutschland), 5. 10. 1826; gest. Wien, 25. 6. 1889." - }, - "model": "metainfo.text", - "pk": 47701 - }, - { - "fields": { - "kind": 130, - "source": 168, - "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äche zurückgestellt. Daraufhin ging er nach Wien und stud. hier 1880–82 an der Akad. der bildenden Künste bei Griepenkerl (s. d.). Ab 1882 bildete sich S. an der Akad. der bildenden Künste in München bei Otto Seitz weiter (1883 Silberne Medaille). Ab 1885 arbeitete er als freischaffender Künstler, so z. B. für die Z. „Über Land und Meer“. Als der künstler. Erfolg etwas nachließ, kehrte S. nach Mies zurück, übersiedelte aber 1895 wieder nach München, wo er einen hohen Bekanntheitsgrad erlangte, so z. B. mit seinem Bild der Schauspielerin Lili Marberg als „Salome“. Sein Œuvre umfaßt neben Porträts von Schauspielerinnen und span. Tänzerinnen auch Bildnisse von Mitgl. des bayer. Königshauses. S., der Mitgl. der Münchner Künstlergenossenschaft war, stellte seine Werke u. a. 1927 in New York und 1929 in Mies aus.\n" - }, - "model": "metainfo.text", - "pk": 47706 - }, - { - "fields": { - "kind": 131, - "source": 168, - "text": "Schmutzler Leopold, Maler. Geb. Mies, Böhmen (Stríbro, Tschechien), 29. 3. 1864; gest. München, Bayern (Deutschland), 20. 6. 1940." - }, - "model": "metainfo.text", - "pk": 47707 - }, - { - "fields": { - "kind": 130, - "source": 167, - "text": "Sohn des Pächterehepaars Wolf und Sara S., mos.; nach Übersiedlung der Familie nach Czernowitz (Cernivci) sang S. im Chor der Synagoge und erhielt 1915 den ersten Gesangs-, 1916 in Kremsier (Kromeríž) Violinunterricht. Ab 1918 wieder in Czernowitz, besuchte S. dort das Gymn., 1922–23 die Handelsakad. und nahm weiteren Gesangsunterricht, den er, unterstützt von seinem Onkel und späterem Manager, Leo Engel, 1925–26 an der Hochschule für Musik in Berlin (Schüler von Hermann Weissenborn) fortsetzte. Nach dem Militärdienst in Rumänien wurde er 1929 von Cornelius Bronsgeest, dem Leiter der Opernabt. des Berliner Rundfunks, engagiert. Sein Debüt als Rundfunksänger am 29. 3. 1929 (Vasco da Gama in Meyerbeers „Die Afrikanerin“), weitere Rundfunkproduktionen (Hans in Smetanas „Die verkaufte Braut“, Lionel in Flotows „Martha“), zahlreiche Konzertauftritte und bald einsetzende Schallplattenaufnahmen (sein Repertoire reichte von Mozart bis zum italien. Verismo) machten S. zu einem Star von außerordentlicher Popularität – seiner geringen Körpergröße wegen allerdings nur innerhalb der zu dieser Zeit aufblühenden Medien Rundfunk, Schallplatte und Tonfilm. Seiner ersten Filmrolle in „Der Liebesexpress“ (Urauff. Berlin 1931) folgte der unerhörte Siegeszug von „Ein Lied geht um die Welt“ (Musik von Hans May, Urauff. Berlin 1933, auch engl. Version). Nach der nationalsozialist. Machtübernahme 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ächsten Filme „Wenn du jung bist, gehört dir die Welt“, 1933, „Ein Stern fällt vom Himmel“, 1935, auch engl. Version, und „Heut ist der schönste Tag in meinem Leben“, 1936, alle mit der Musik von Hans May, gedreht und uraufgef. Von seinen Konzertreisen sind jene 1934 nach Palästina (Tel Aviv, Haifa und Jerusalem) sowie seine Amerikatournee 1937–1938 (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ß sich 1939 in Brüssel nieder, wo er als Rudolf in Puccinis „La Bohème“ einen seiner seltenen Bühnenauftritte hatte. Infolge des Kriegsverlaufs mußte S. 1940 aus Belgien flüchten, hielt sich in Südfrankreich auf und gelangte 1942 unter großen Schwierigkeiten in die Schweiz; dort wurde er im Lager Girenbad interniert und starb kurz darauf völlig mittellos. S. wurde als Sängertyp mit einem Richard Tauber oder Benjamino Gigli verglichen, seine – allerdings kleine und nicht restlos durchgebildete – lyr. Tenorstimme zeichnete sich durch Brillanz und Strahlkraft in der hohen und höchsten Lage und ein für S. charakterist. „wehmütiges“ Timbre aus.\n" - }, - "model": "metainfo.text", - "pk": 47712 - }, - { - "fields": { - "kind": 131, - "source": 167, - "text": "Schmidt, — Joseph Sänger und Filmschauspieler. Geb. Dawideny, Bukowina (Davideni, Rumänien), 4. 3. 1904; gest. Girenbad b. Hinwil, Kt. Zürich (Schweiz), 16. 11. 1942." - }, - "model": "metainfo.text", - "pk": 47713 - }, - { - "fields": { - "kind": 130, - "source": 166, - "text": "Vater der Fabrikanten Anton, Richard und Maximilian S. (alle s. unten); nach Besuch des Gymn. in Reichenau a. d. Knežna (Rychnov nad Knežnou) und Olmütz (Olomouc) begann S. eine kaufmänn. Lehre in Brünn (Brno) und besuchte Vorlesungen an der Techn. Hochschule in Wien, worauf er sich im Großhandel betätigte. Nachdem sein Vater Anton J. S. 1848 zum Abg. in das dt. Parlament in Frankfurt gewählt worden war, übernahm S. die Leitung des väterlichen Geschäfts in Schildberg und später gem. mit seinem älteren Bruder Gustav auch dessen Leinwandfabrikation. 1855 erwarb er die Papiermühle (sie galt als die älteste der Österr.-ung. Monarchie) und Bleiche in Großullersdorf 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öhne. Bes. die anerkannt guten Filtereigenschaften der Ullersdorfer Papiere führten zu einer neuen Blüte dieser Papiermühle in den 80er Jahren des 19. Jh.s. Der Hauptsitz der Fa. befand sich in Großullersdorf, eine – 1917 aufgelöste – Niederlage in Wien. 1860 kaufte die Fa. eine ehemalige fürstlich liechtensteinsche Mahlmühle in Olleschau (Olšany) und errichtete dort eine Fabrik für Schreib-, Druck- und Verpackungspapier, die jedoch v. a. wegen der hohen Frachtkosten nicht gedieh; sie wurde 1864 von einer AG übernommen, die ab 1870 auch das später verbreitete Zigarettenpapier Marke „Olleschau“ herstellte, wobei die Lieferschwierigkeiten der französ. Konkurrenz in den Krisenjahren 1870/71 genützt wurden. S. hatte sich inzwischen der Politik gewidmet: 1861 von der Olmützer Handels- und Gewerbekammer in den mähr. Landtag entsandt, wo er sich bes. volkswirtschaftlichen Fragen und dem Verkehrswesen widmete, war er auch durch eine Reihe von Jahren Gemeindevorsteher von Großullersdorf, 1879–91 Reichsratsmitgl. und durch sieben Jahre auch Vorstand des von ihm mitbegründeten Teßthaler landwirtschaftl. Fortbildungsver., der sich erst dem Seidenanbau, später auch anderen Fragen der Landwirtschaft widmete. S. nützte die Liberalisierung in der Habsburgermonarchie nicht nur als Fabrikant, der die Möglichkeiten des erhöhten Papierbedarfs etwa im Pressewesen erkannte, sondern auch als Standesvertreter auf Reichsebene und wurde für seine wirtschaftliche und polit. Tätigkeit 1886 mit dem Goldenen Verdienstkreuz mit der Krone ausgez. Schon während seiner Lebenszeit wurde die Unternehmung von seinen Söhnen Anton S. (geb. Großullersdorf, 22. 1. 1857; gest. ebenda, 18. 4. 1935), Richard S. (geb. Großullersdorf, 22. 12. 1859; gest. ebenda, 11. 4. 1933) und Maximilian S. (geb. Großullersdorf, 8. 11. 1862; gest. ebenda, 29. 5. 1938) mitgeführt. Während Anton S. bis 1917 die Wr. Geschäftsstelle leitete, danach mit Richard die Ullersdorfer Papiermühle, betreute Maximilian v. a. die Textilfabrik, wo er auch die Anfertigung der feinen Toledo-Arbeiten einführte. Alle drei Brüder erweiterten die Fabrik und errichteten 1913 bei ihr ein Elektrizitätswerk, das gleichzeitig auch die Gemeinde mitversorgte. Auch sie waren lange Jahre in der Gemeindeverwaltung tätig und erwarben sich vielfache Verdienste im Ver.- und Genossenschaftswesen der Gemeinde und des ganzen Bez. Maximilian S. war 1908–1938 Kammerrat der Handels- und Gewerbekammer Olmütz.\n" - }, - "model": "metainfo.text", - "pk": 47714 - }, - { - "fields": { - "kind": 131, - "source": 166, - "text": "— Anton Schmidt, Fabrikant und Politiker. Geb. Schildberg, Mähren (Štíty, Tschechoslowakei), 9. 12. 1826; gest. Großullersdorf, Mähren (Velké Losiny, Tschechoslowakei), 28. 3. 1892." - }, - "model": "metainfo.text", - "pk": 47715 - }, - { - "fields": { - "kind": 130, - "source": 164, - "text": "Vater der beiden Vorigen; wandte sich schon als Student der Journalistik zu und arbeitete für Berliner und Provinzbll. Er nahm 1870/71 am Dt. -Französ. Krieg teil, wurde danach Red. des „Westphälischen Grenzboten“ in Münster, dann Leiter des Feuilletons und „Reimchronist“ der „Deutschen Zeitung“ in Paris und war schließlich ab 1880 Berichterstatter der „Berliner Post“; als solcher unternahm er Reisen durch Europa und Kleinasien, die seinen späteren Veröff. zugute kamen. In der Folge übersiedelte S. nach Wien, wo er 1886 in die Red. des „Neuen Wiener Tagblatts“ eintrat, der er bis zu seinem Tod angehörte. Daneben arbeitete er an mehreren Ztg. (u. a. der „Illustrirten Zeitung“, Leipzig) und Z. (u. a. der „Gartenlaube“) und an Fachbll. (Reise- und Sportberr.) mit. Seine schriftsteller. Arbeiten umfassen Lieder und Ged. verschiedenster Art (darunter das ep. Ged. „Muth“, 1899), Erz., Märchen, den historisierenden Wr. Roman aus dem 15. Jh. „Bürger und Studenten“ sowie dramat. Werke.\n" - }, - "model": "metainfo.text", - "pk": 47718 - }, - { - "fields": { - "kind": 131, - "source": 164, - "text": "Schmal Johannes Adolf, Journalist und Schriftsteller. Geb. Gimborn, Preußen (Deutschland), 23. 9. 1844; gest. Wien, 24. 12. 1900." - }, - "model": "metainfo.text", - "pk": 47719 - }, - { - "fields": { - "kind": 130, - "source": 165, - "text": "Sohn eines in Frankreich tätigen Tschechen und einer Französin (geb. Beauchez), lebte er ab 1860 in Böhmen 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ß nach Paris, dann 1869 nach Berlin, wo er die „Correspondance Tchèque“ red. Während des dt.-französ. Kriegs 1870/71 und zur Zeit der Pariser Kommune war er Kriegskorrespondent der „Národní listy“ in Paris. Von der Regierung Hohenwart (1871) amnestiert, kehrte er zurück und fand seinen Lebensunterhalt als Lehrer der französ. Sprache in Leitomischl (Litomyšl), von 1873 an in Prag. Polit. gehörte er dem radikalen Flügel der demokrat. Jungtschechen an, kämpfte für die Einführung 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ührte 1889 eine Delegation des Prager Stadtrats nach Paris und schrieb Berr. aus Prag für französ. Ztg. 1893–98 war er Korrespondent der „Národní listy“ in Paris, dann ständiger Mitarbeiter von „Le Temps“ in Prag, ab 1903 Red. der erneuerten „Correspondance Tchèque“. Daneben war er als Übers. französ. Romane und Schauspiele tätig und verf. eine Reihe von verbreiteten Sprachlehrbüchern und Konversationsbehelfen.\n" - }, - "model": "metainfo.text", - "pk": 47724 - }, - { - "fields": { - "kind": 131, - "source": 165, - "text": "— -Beauchez Louis, Schmidt-B., Journalist und Sprachlehrer. Geb. Paris (Frankreich), 6. 6. 1848; gest. Prag, Böhmen (Praha, Tschechien), 14. 12. 1912." - }, - "model": "metainfo.text", - "pk": 47725 - }, - { - "fields": { - "kind": 130, - "source": 163, - "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öther, Hettinger, Döllinger, Hefele) kennen. Nach Supplierungen in Pastoral- und Fundamentaltheol. sowie in Kirchengeschichte wurde er 1871 ao. Prof. und 1874 o. Prof. für Kirchengeschichte an der Univ. Prag und führte 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ßgrundbesitzer und ab 1898 Propst des Kollegiatkapitels Allerheiligen am Hradschin, galt sein wiss. Hauptinteresse der Kirchengeschichte Böhmens. In seiner Monographie über den Hl. Wolfgang bemühte er sich, den dt. Anteil an der Christianisierung des Landes hervorzuheben.\n" - }, - "model": "metainfo.text", - "pk": 47726 - }, - { - "fields": { - "kind": 131, - "source": 163, - "text": "Schindler Josef, Kirchenhistoriker. * Lachowitz (Lachovice, Böhmen), 23. 6. 1835; † Prag, 22. 2. 1911." - }, - "model": "metainfo.text", - "pk": 47727 - }, - { - "fields": { - "kind": 130, - "source": 161, - "text": "Bruder des Vorigen und des Politikers und Schriftstellers Andreas S., Vater des Politikers und Juristen Gustav S. (beide s. d.); während der Volksschulzeit Sänger im Kirchenchor seiner Pfarre und in der Kindersingschule der Musikakad., war er aufgrund der schwierigen wirtschaftlichen Verhältnisse schon mit 15 Jahren im Orchester des Theaters a. d. Wien beschäftigt; 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ätig. 1881 im Burgtheater aufgrund seiner polit.-gewerkschaftlichen Aktivitäten zwangsweise pensioniert, verdiente S. seinen Lebensunterhalt mit Gesangstunden und als Korrepetitor. S. kam 1867 mit seinen Brüdern zur Arbeiterbewegung; 1868 gründete er eine Liedertafel im Arbeiterbildungsver. Gumpendorf, im selben Jahr vertonte er das „Lied der Arbeit“, das zur Hymne der österr. Arbeiterbewegung wurde. In den folgenden Jahren komponierte S. zahlreiche Lieder und Chorwerke (häufig Texte seines Bruders Andreas sowie u. a. Ged. von Heine, Dehmel, Hoffmann von Fallersleben, Freiligrath, Rückert), wobei die Übereinstimmung von textlicher und musikal. Deklamation für ihn sehr wesentlich war. 1872 gründete er den Wr. Musikbund (ab 1873 Wr. Musikver.), die erste österr. Gewerkschaft der Musiker, durch die eine soziale und lohnrechtliche Besserstellung erreicht wurde. Von 1875 bis zur behördlichen Einstellung 1878 war S. Red. der „Österreichischen Musikerzeitung“, 1878 gründete er den Arbeiter-Sängerbund Wien, den ersten österr. Arbeitergesangver., in dem er auch als Chormeister wirkte. 1880–82 arbeitete S. an einer Oper (mit sozialist. Vorstellungen nach einem märchenhaften, allegor. Libretto von Albert Dulk) im spätromant. Stil, die jedoch u. a. aufgrund wirtschaftlicher und polit. Schwierigkeiten nicht fertiggestellt werden konnte; 1882 war S. zeitweise in Untersuchungshaft. 1890 Mitbegründer und Chormeister der Freien Typographia, des ersten Arbeiterchors, bei dem auch Frauen zugelassen waren; 1894 auch Chormeister des Arbeiter-Sängerbundes Landstraße, 1891 Mitbegründer des Verbandes der Arbeiter-Gesangver. Niederösterreichs, 1901 des Reichsverbandes der Arbeiter-Gesangver. 1902 gründete S. die „Arbeitersänger-Zeitung“, deren Red. er bis zu seinem Tod innehatte. Ab 1895 wirkte er ferner als Musikkritiker der „Arbeiter-Zeitung“, wobei er bemüht war, das Kunstverständnis der Arbeiter zu fördern und ihnen die klass. und zeitgenöss. Musik näherzubringen. S. sah in der von ihm begründeten Arbeitersängerbewegung einen wesentlichen Bestandteil der Arbeiterbewegung überhaupt.\n" - }, - "model": "metainfo.text", - "pk": 47728 - }, - { - "fields": { - "kind": 131, - "source": 161, - "text": "Scheu Josef Franz Georg, Komponist, Chorleiter und Musikkritiker. * Wien, 15. 9. 1841; † Wien, 12. 10. 1904." - }, - "model": "metainfo.text", - "pk": 47729 - }, - { - "fields": { - "kind": 130, - "source": 162, - "text": "S. stud. 1870–78 an der Akad. der bildenden Künste in Prag bei Josef Mathias Trenkwald und Jan Sweerts, ab 1878 an der Akad. der bildenden Künste in München bei G. C. v. Max (s. d.). Nach zahlreichen Stud.Reisen u. a. nach Deutschland, Frankreich, England und Italien arbeitete S. 1885–90 als Ass. an der Kunstgewerbeschule in Prag bei František Ženíšek, 1890–1922 war er dort als Prof. (1894 o. Prof.) für dekorative Malerei tätig. 1913 Mitgl. der Tschech. Akad. der Wiss. und Künste. Am Beginn seines Schaffens waren S.s Ziele mit denen der Generation des Nationaltheaters ident, nämlich den Schwerpunkten tschech. Mythos und tschech. Geschichte sowie in Auswahl und Typus der Landschaft. In der zweiten Hälfte der 80er Jahre wandte er sich, unter dem Einfluß 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älden der folgenden Periode verwendete er häufig Motive aus dem Milieu des abendlichen und nächtlichen Alt-Prag. Seine Bilder zeichnen sich durch Gefühlstiefe, die durch Lichteffekte bewirkt wird, aus.\n" - }, - "model": "metainfo.text", - "pk": 47730 - }, - { - "fields": { - "kind": 131, - "source": 162, - "text": "Schikaneder Jakub, Maler. * Prag, 27. 2. 1855; † Prag, 15. 11. 1924." - }, - "model": "metainfo.text", - "pk": 47731 - }, - { - "fields": { - "kind": 130, - "source": 159, - "text": "(Selbstmord). Sohn des Karl Theodor Gustav S. (1861–1919), der gem. mit seinem Onkel Sebastian S. (1844–89) 1885 die Holzdrahtfabrik S. & Neffe gegründet hatte; stud. Elektrotechnik an der Höheren Ing.Schule in Mittweida (Sachsen), Ing. 1920 wurde er als Gesellschafter Chef im väterlichen Unternehmen, das Zündholzhersteller belieferte, aber auch u. a. Jalousiestäbe und Zahnstocher herstellte, und brachte es in kurzer Zeit zu großer Bedeutung. Die 1891 von seinem Onkel Johann Louis S. begonnene Zündholzerzeugung nahm 1928 durch S.s Mitgründung des Luma-Verkaufsbüros der Zündwarenfabriken Solo-AG Schüttenhofen und S. & Neffe GmbH in Prag großen Aufschwung, Zündhölzer blieben bis 1945 das Hauptprodukt der Fa. Das Unternehmen, seit 1922 mit modernsten Automaten ausgestattet, beschäftigte bis zu 300 Mitarbeiter. 1892–1938 führte S. auch eine Fabrik zur Erzeugung von Flaschenkapseln. 1934 kaufte er die Kristallglasfabrik und Raffinerie J. E. Schmid in Annathal (Annín). 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ß, die Produkte der Kristallglasschleiferei Annathal vermochten ihre alte Weltgeltung wiederzuerlangen. S. beeinflußte auch das soziale und kulturelle Leben Langendorfs, u. a. durch ein 1929 errichtetes Kulturhaus.\n" - }, - "model": "metainfo.text", - "pk": 47732 - }, - { - "fields": { - "kind": 131, - "source": 159, - "text": "Schell Karl, Industrieller. * Langendorf (Dlouhá Ves, Böhmen), 19. 12. 1892; † ebenda, 2. 6. 1945" - }, - "model": "metainfo.text", - "pk": 47733 - }, - { - "fields": { - "kind": 130, - "source": 160, - "text": "Stud. 1860–65 Med. an der Univ. Wien, 1865 Dr. med., 1866 Dr. chir. und Mag.obstet., 1866 Ass. am Physiolog. Inst. bei Brücke (s. d.), 1869 Priv.Doz. für die Lehre von der Zeugung und Entwicklung des Menschen und der Wirbeltiere. 1873 ao. Prof. für Entwicklungsgeschichte sowie Vorstand des von ihm 1874 gegründeten Inst. für Entwicklungsgeschichte an der Univ. Wien, 1896 Tit. o. Prof. für Entwicklungsgeschichte. Seine Theorie von der Bestimmung des Geschlechtes bei Ungeborenen erregte großes Aufsehen. Als man ihn bezichtigte. Reklame zu betreiben, resignierte er 1900 auf seinen Lehrstuhl. S., dessen Publ, mehrfach übers. wurden, war Mitgl. zahlreicher gel. Ges., u. a. der Leopoldina, Ehrenmitgl. der Royal Medical Society in Edinburgh und der Société scientifique médicale in Athen, korr. Mitgl. der Accad. Patavina di scienze, lettere ed arti in Padua.\n" - }, - "model": "metainfo.text", - "pk": 47734 - }, - { - "fields": { - "kind": 131, - "source": 160, - "text": "Schenk Samuel Leopold, Mediziner. * Ürmény (Mojmírovce, Slowakei), 23. 8. 1840; † Schwanberg (Stmk.), 17. 8. 1902." - }, - "model": "metainfo.text", - "pk": 47735 - }, - { - "fields": { - "kind": 130, - "source": 201, - "text": "Sohn eines Finanzsekr. – Nach der Unterrealschule begann T. seine maler. Ausbildung in Szegedin und Pest (Budapest) und setzte diese 1869–72 an der Wr. ABK bei ¿Karl Mayer fort. 1872 übersiedelte er nach München und wurde 1873 an der dortigen ABK Schüler von Sándor Wagner. In den Folgejahren arbeitete er als Maler in München und Budapest und unternahm Stud.reisen nach Belgien, Italien und Paris. 1878–81 verbrachte er die Sommermonate in Szolnok, wo er vorerst Motive aus der ung. Tiefebene malte, später wählte er Themen aus der Gegend um den Balaton. 1899–1902 hielt er sich wieder in München auf, ab 1903 lebte er in Budapest. T., der zu den besten ung. Malern realist. Stimmungslandschaften zählt, gewann 1897 den Esterházy-Preis, 1899 den Preis des Ung. Ver. für Bildende Künste. 1910 wurde eine retrospektive Ausst. seiner Werke in der Budapester Kunsthalle gezeigt. Einige seiner Arbeiten (u. a. Luftspiegelung über der Puszta, 1883, Goldene Strahlen, 1896, Morgengrauen, 1910) befinden sich in der Magyar Nemzeti Galéria in Budapest.\n\n" - }, - "model": "metainfo.text", - "pk": 47746 - }, - { - "fields": { - "kind": 131, - "source": 201, - "text": "Tölgyessy Artúr, Maler. Geb. Szegedin (Szeged, H), 1. 5. 1853; gest. Budapest (H), 2. 2. 1920; röm.-kath." - }, - "model": "metainfo.text", - "pk": 47747 - }, - { - "fields": { - "kind": 130, - "source": 200, - "text": "Südtiroler Linie, Ast Castel Brughier. Sohn von Johann Vigil Karl Gf. v. T. u. H. (1728–1788) und Josepha Gfn. v. T. u. H. (1741–1819), Cousin des Fürstbischofs von Trient Peter Vigil Gf. v. T. u. H. (1776–1780), verwandt mit Fürstbischof ¿Leopold Leonhard Gf. v. T. u. H. – 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. u. H.). Als letzter vom Trienter Domkapitel gewählter Bischof trat T. 1800 die Nachfolge seines Vetters Peter Vigil Gf. v. T. u. H. an. Der Beginn seiner Amtszeit fiel in polit. turbulente Zeiten. T. konnte die k. Investitur nicht mehr erhalten, da er Anfang 1801 vor den französ. Truppen zunächst nach Görz (Gorizia), dann nach Wien fliehen musste, von wo aus er sich für den Fortbestand seines Bistums einsetzte. Er kämpfte erfolgreich gegen die Pläne K. ¿Franz’ II. (I.), der für Tirol ein einziges Bistum mit Sitz in Innsbruck vorsah. 1803 erfolgte die endgültige Säkularisierung des Fürstbistums, Klöster wurden aufgelöst, das Hochstift mit seinen 150.000 Einwohnern Österr. zugeordnet. Nach dem Frieden von Preßburg (1805) fiel Tirol an das neu errichtete Kg.reich Bayern. T. konnte in sein Bistum zurückkehren, wo er in Trient eine Stadtwohnung bezog, da seine fürstbischöfl. Residenz, das Castello del Buonconsiglio, säkularisiert worden war. Die staatl. Übergriffe der bayer. Regierung in kirchl. Angelegenheiten erregten den Widerstand der auf Tiroler Boden residierenden Bischöfe: 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öse Leben die der Regierung vorbehaltene Besetzung aller geistl. Stellen, die staatl. Priesterausbildung und die Aufhebung von diözesanen Priesterseminaren hervor. Die drei Bischöfe wurden nach gem. Beratungen in Innsbruck 1806 von Papst Pius VII. in einem Breve (1807) in ihrem kirchenpolit. Kurs bestärkt. Während Lodron sich unter Protest dem staatskirchl. Kurs Bayerns unterwarf, wurden T. wie auch Buol-Schauenstein die Bezüge gesperrt; Buol-Schauenstein wurde nach Graubünden, T. nach (Bad) Reichenhall abgeschoben. T. hielt man gewaltsam von seinem Bistum fern, widerständige Domherren wurden entlassen. Unter Druck mussten die noch verbliebenen sechs regierungsloyalen Domherren in Trient einen neuen Kapitelvikar wählen. Dieser, Franz v. Spaur, erhielt von T. die geheime Bestätigung. Die bayer. Maßnahmen auf kirchl. Gebiet (Veräußerung größerer Tle. der bischöfl. und Kapiteldotation, Säkularisierung mehrerer Klöster) trugen zum Aufstand der Tiroler gegen die Bayern 1809 bei. 1810 kam Trient an das Kg.reich Italien, T. konnte in sein Bistum zurückkehren, 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ührung des napoleon. Katechismus und die Zivilehe. Die italien. Regierung entließ 1810 alle dt. Lehrenden des Priesterseminars und ernannte ein weitgehend neues Prof.kollegium. 1811 wurde T. das Seminar erneut übertragen. Als das Bistum 1814 wieder an Österr. fiel, folgte eine Zeit der Konsolidierung, einige Klöster konnten wiedererrichtet werden. 1818 wurden die bis 1964 geltenden Bistumsgrenzen neu umschrieben, die bischöfl. Mensa, das Domkapitel und die Bischofsnomination durch den österr. K. neu geregelt. Nur knapp zwei Drittel seiner wechselvollen Amtszeit konnte T. tatsächl. in seinem Bistum residieren.\n\n" - }, - "model": "metainfo.text", - "pk": 47748 - }, - { - "fields": { - "kind": 131, - "source": 200, - "text": "Thun und Hohenstein Emanuel Maria Gf. von, Fürstbischof. Geb. Trient, Bistum Trient (Trento, I), 28. 3. 1763; gest. Santa Massenza, Tirol (Vezzano, I), 9. 10. 1818 (bestattet: Dom zu Trient); röm.-kath." - }, - "model": "metainfo.text", - "pk": 47749 - }, - { - "fields": { - "kind": 130, - "source": 197, - "text": "Entstammte einer 1779 in den Adelsstand erhobenen Familie. Sohn des Rtm. Wilhelm Kluger Edler v. T. und von Johanna Kluger Edler v. T., geb. Toth, Vater von vier Kindern, u. a. des Juristen und Übers. Hermann Frh. v. T. (geb. 6. 7. 1866; gest. Neapel/Napoli, I, 6. 11. 1911); in 1. Ehe mit Rosa Petz (geb. 1843; gest. Wien, 16. 12. 1866), in 2. Ehe ab 1870 mit Bibiana Anna Bianca (Blanche) Lucas verheiratet. – 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ür Handel und Volkswirtschaft in den österr. Staatsdienst. Hier gelangte er sehr bald in einflussreiche Positionen: Schon Anfang der 1860er-Jahre wurde er unter ¿Anton v. Schmerling in das Staatsmin. berufen und der Presseleitung zugeteilt. T., leitender Mitarb. der „Österreichischen Wochenschrift“ (1865 eingestellt), fungierte ab 1864 als Leiter des Abendbl., ab 1865 als Chefred. der „Wiener Zeitung“, die er bis Mitte Jänner 1871 gem. mit Georg Seuffert führte, und setzte in dieser Position die von ¿Leopold Schweitzer begonnenen Reformen fort. Ab 1867 unterstand die Ztg. infolge der Reorganisation des Presseapparats der Leitung von ¿Friedrich Ferdinand Gf. Beust, der der Presse weit größere Aufmerksamkeit schenkte als seine Vorgänger: Er schätzte sowohl T.s außerordentl. publizist. Begabung wie auch seine umfassende Bildung und v. a. sein polit. Verständnis, wodurch T. noch im selben Jahr zum Min.sekr. avancierte. Er wechselte in die Präsidialsektion des Gem. Min. des Äußern und des k. Hauses und übernahm in seiner neuen Funktion, neben seiner eigentl. Tätigkeit als Chefred., auch wichtige polit. Aufträge. Im April 1869 erfolgte seine Ernennung zum Sektionsrat und im Februar 1871 die zum HR bzw. Min.rat. Während seiner Tätigkeit im Pressdep. (Literar. Büro) war er u. a. Verbindungsmann zum „Pester Lloyd“ und mit der Einflussnahme auf maßgebl. dt. Bll. beauftragt. I. d. F. wurde T. def. in den Dienst des Gem. Min. des Äußern und des k. Hauses aufgenommen und übernahm im März 1872 auf Wunsch von ¿Julius Gf. Andrássy d. Ä. das Referat für dt. Angelegenheiten. Daneben stand er dem Min. auch für andere publizist. Aufgaben zur Verfügung. Im November 1876 erfolgte seine Ernennung zum ao. Gesandten und bevollmächtigten Minister. Nach dem Rücktritt Andrássys (1879) rückte T. zwar in den Hintergrund, nahm aber weiterhin regelmäßig an den (schriftl.) Delegationsverhh. zwischen beiden Reichshälften teil. Im Juni 1880 übernahm er für kurze Zeit sowohl die Leitung des Literar. Büros als auch jene des Informationsbüros, das mit staatspolizeil. Agenden betraut war. Außerdem wurde er mit verschiedenen Inspektionsmissionen beauftragt, die ihn u. a. nach Rom und Konstantinopel (Istanbul) führten. Im September 1883 wurde er zum Verbindungsmann zwischen Außenmin. und Konsular-Akad. ernannt, die mit der Heranbildung des diplomat. Nachwuchses befasst war. T. war ab 1862 Mitgl. des Journalisten- und Schriftstellerver. „Concordia“ (1865–66 Vorstandsmitgl.). 1868 Orden der Eisernen Krone III. Kl., 1878 Kommandeur des Leopold-Ordens, 1883 Großkreuz des Franz Joseph-Ordens, 1879 Erhebung in den Frh.stand.\n\n" - }, - "model": "metainfo.text", - "pk": 47754 - }, - { - "fields": { - "kind": 131, - "source": 197, - "text": "Teschenberg Ernst Maximilian Frh. von, eigentl. Kluger Frh. von T. Ernst, Journalist und Politiker. Geb. Ödenburg (Sopron, H), 21. 5. 1836; gest. Wien, 25. 2. 1886." - }, - "model": "metainfo.text", - "pk": 47755 - }, - { - "fields": { - "kind": 130, - "source": 198, - "text": "Sohn des wohlhabenden Gutsbesitzers und galiz. LT-Abg. Adolf T. und seiner 2. Ehefrau Julia T., geb. Grabowska, Halbbruder von ¿Wlodzimierz T.(-Przerwa), Cousin des Schriftstellers Tadeusz Boy-Zelenski und von ¿Ludwig v. T. – T. besuchte das Gymn. in Krakau (Kraków) und stud. 1884–86 Phil. an der Jagiellonen-Univ. (Stud. nicht abgeschlossen). 1889–93 arbeitete er als Mithrsg. der Z. „Kurier Polski“ und als Journalist der Z. „Tygodnik Ilustrowany“, „Kurier Warszawski“ und „Czas“; 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üt. 1886 mit lyr. Prosa und Gelegenheitsdichtung („Illa“). 1888 gewann er einen Preis der Jagiellonen-Univ. für ein Ged. auf Adam Mickiewicz, den Vertreter der poln. Romantik („Wiersz na uczczenie pamieci Adama Mickiewicza“), und 1889 einen weiteren für eine Hymne auf den Schriftsteller ¿Józef Ignacy Kraszewski („Na czesc Kraszewskiego“). T. galt neben ¿Jan Kasprowicz als der populärste Dichter der Bewegung Junges Polen und repräsentierte die Generation der poln. Dichter nach der Abwendung von Positivismus und Naturalismus. Mit der achtbändigen Ged.smlg. „Poezje“ (1891–1924) erlangte er Anerkennung als bedeutender Lyriker und Autorität der jungpoln. Literatur. T., der sich für 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öss. Leben der Bohème. 1898 erschien der Roman „Aniol smierci“ (dt. „Der Todesengel“, 1899), der in dt. Übers. zuerst als Vorabdruck in der Z. „Aus fremden Zungen“ erschien, in der T. i. d. F. weitere Ged. veröff. In der fünfbändigen Novellensmlg. „Na skalnym Podhalu“ (1903–10, dt.sprachige Auswahl unter dem Titel „Aus der Tatra“, 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 „Maryna z Hrubego“ (1910) und „Janosik Nedza Litmanowski“ (1911). Seine symbolist. Dramen wurden hingegen stark kritisiert. Während des 1. Weltkriegs war T. Hrsg. der Z. „Praca Narodowa“. Ab 1918 lebte er, wegen einer unheilbaren psych. Krankheit sehr zurückgezogen, 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äs. des Journalisten- und Schriftstellerverbands Towarzystwo Dziennikarzy i Literatów Polskich und wurde 1934 Ehrenmitgl. der Polska Akad. Literatury.\n\n" - }, - "model": "metainfo.text", - "pk": 47756 - }, - { - "fields": { - "kind": 131, - "source": 198, - "text": "Tetmajer (Przerwa-Tetmajer) Kazimierz, Schriftsteller. Geb. Ludzimierz, Galizien (Ludzmierz, PL), 12. 2. 1865; gest. Warschau, Gen.gouvernement (Warszawa, PL), 18. 1. 1940; röm.-kath." - }, - "model": "metainfo.text", - "pk": 47757 - }, - { - "fields": { - "kind": 130, - "source": 199, - "text": "Sohn von ¿Oskar Karl T. und ¿Emma 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 österr. 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ätig war und gem. mit seiner jüd. Frau Selbstmord beging, sowie von Maurus T.(-Weckersdorf) (s. u.); Schwager von Charlotte T.-Weckersdorf (1923–1998), Univ.-Prof. für Politikwiss. in Wien. – T. diente ab 1896 im 3. Tiroler Jägerrgt. „Kaiserjäger“, 1897 Lt., 1901 Oblt., 1908 jedoch krankheitshalber beurlaubt, 1911 i. d. R. versetzt. 1915 als Hptm. reaktiviert, fungierte er als Militärsachverständiger bei der gerichtl. Pressepolizei am Wr. Landesgericht. Bereits 1911 hatte T. als Zentralinsp. des militär. organisierten Knabenhortverbands in der militär.-patriot. Jugenderziehung und -fürsorge ein neues Betätigungsfeld gefunden. Auf Anregung seines Bruders Wilhelm und des ersten Reichsfeldmeisters des Dt. Pfadfinderbunds, Maximilian Bayer, übertrug er das System der Boy Scouts des engl. Begründers des Pfadfindertums Robert St. S. Baden-Powell auf die Knabenhorte und gründete 1912 den Ver. zur Errichtung und Erhaltung eines Wr. Pfadfinderkorps sowie die 1. Wr. Pfadfinderkompagnie, die erste organisierte Gruppe dieser Art in Österr. und die Keimzelle des von ihm initiierten Österr. Pfadfinderbunds, dem Polen, Tschechen und die betont dt.-nationalen Kreise der Monarchie jedoch fernblieben; 1915–19 Reichsfeldmeister des Bundes. Aufgrund des Vermögens seiner Frau, einer Amerikanerin, konnte „Papa“ T. hohe Geldmittel für die Verwirklichung seiner Idee einsetzen, was mit Beginn des 1. Weltkriegs jedoch ein Ende fand. Nach der Trennung der ehemaligen Kronländer vom Österr. Pfadfinderbund wirkte T. 1918–20 hauptberufl. als Insp. des Verbands für freiwillige Jugendfürsorge, in welcher Eigenschaft ihm 360 private Kinder- und Jugendfürsorgeeinrichtungen Wiens unterstanden. Daneben war er u. a. als Jugendgerichtshelfer und für das Rote Kreuz tätig. Da er sich weltanschaul. mit der aufkommenden „bündischen“, an Dtld. orientierten Jugendbewegung nicht identifizieren wollte, legte er 1920 seine Funktion als Reichsfeldmeister zurück, blieb aber bis 1923 Bundesfeldmeister im Österr. Pfadfinderbund. Er unterstützte nunmehr den religiösen 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ündung der kath. Jugendorganisation des Österr. Pfadfinderkorps St. Georg, das sich relativ rasch vergrößerte. Durch die Aussöhnung mit seiner Frau (die ihn 1917 verlassen hatte) wieder wohlhabend geworden, erwarb T. u. a. zwei große Landgüter in Sbg. und Ktn. und zog sich von der aktiven Arbeit im Pfadfinderbund weitgehend zurück. 1922–29 Mitgl. des Internationalen Komitees der Weltpfadfinderbewegung, erhielt er 1927 die damals höchste Pfadfinderausz., den „Silberwolf“. Als nach dem „Anschluss“ Österr. alle bestehenden Jugendorganisationen aufgelöst und verboten worden waren, wurde T. im November 1938 verhaftet und des Hochverrats angeklagt, im Mai 1939 von einem Sondergericht in München aber freigesprochen. 1916 Ritter des Franz Joseph-Ordens, verliehen ihm die österr. Pfadfinder posthum 1956 ihre höchste Ausz., den „Silbernen Steinbock“. T.s Bruder " - }, - "model": "metainfo.text", - "pk": 47758 - }, - { - "fields": { - "kind": 131, - "source": 199, - "text": "Teuber Emmerich (genannt Imre), Pfadfinderführer und Offizier. Geb. Prag, Böhmen (Praha, CZ), 11. 5. 1877; gest. Wien, 3. 2. 1943; röm.-kath." - }, - "model": "metainfo.text", - "pk": 47759 - }, - { - "fields": { - "kind": 130, - "source": 196, - "text": "Unehel. Sohn der Soubrette Elisabeth Seifferth, geb. Denemy, und des Schauspielers Anton Richard T. (s. u.), der ihn später in seine Obhut nahm und 1913 adoptierte; 1926 Heirat mit der Soubrette Carlotta Vancotti (geschieden), 1936 mit der engl. Schauspielerin Diana Napier. – T. wuchs im Theatermilieu auf und wollte bereits als Jugendlicher Sänger werden. Er stud. 1908–10 Klavier, Komposition und Orchesterdirigieren am Hoch’schen Konservatorium in Frankfurt am Main. Nach ersten gescheiterten Vorsingversuchen attestierte ihm ¿Leopold Demuth eine Stimme „wie ein Zwirnsfaden“. Wegen einer Liebelei musste T. nach Freiburg im Breisgau übersiedeln, wo er dem Gesangspädagogen Carl Beines begegnete, der sein großes Talent erkannte und ihn ausbildete. T. gab sein Operndebüt 1913 in Chemnitz als Tamino in Mozarts „Zauberflöte“ 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ürzester Zeit Partien einzustud. vermochte (Beiname „SOS-Tenor“), und gastierte u. a. an der Berliner sowie an der Wr. Staatsoper. 1921 lernte er in Salzburg ¿Franz Lehár kennen, in dessen späten Operetten er dann, beginnend mit „Paganini“ (Berliner Erstauff. 1926), die männl. Hauptrollen sang. In gem. Arbeit entstanden die auf T.s Stimme zugeschnittenen „T.-Lieder“, die als Schlager große Popularität erlangten („Dein ist mein ganzes Herz“ etc.). Trotz Warnungen, dass er seine Stimme für die Oper ruiniere, verlegte er sich zunehmend auf das Operettengenre und erlangte darin immense Berühmtheit. Früh erkannte T. die Bedeutung der Werbung und lancierte als erster Star bewusst Privates in der Öffentlichkeit. Nach einer schweren Rheumaerkrankung feierte er 1929 als Prinz Sou-Chong sein Comeback in der Urauff. von Lehárs „Das Land des Lächelns“, eine Rolle, die er über 700-mal verkörperte. Im selben Jahr kam sein erster Film, „Ich glaub’ nie mehr an eine Frau“, in die Kinos. Die auf Drängen seines Cousins und Managers Max Tauber gegr. Richard Tauber Tonfilm Ges. hatte nur kurzen Bestand, T. wurde von Max um große Summen gebracht. Er stand weiterhin erfolgreich auf Opernbühnen und wurde insbes. als Mozart-Tenor gefeiert. Nachdem er im März 1933 von der Bühne des Berliner Admiralspalastes gebuht und auf dem Kurfürstendamm von SA-Männern niedergeschlagen worden war, flüchtete er in die Schweiz, in die Niederlande, von wo aus er einen gescheiterten Anbiederungsversuch an die NS-Politik unternahm, und schließl. nach Wien. Hier wurde seine Operette „Der singende Traum“ uraufgef. Ab 1934 hielt sich T. vermehrt in England auf, wo er als Schubert in „Blossom Time“ einen internationalen Filmerfolg hatte, und wandelte sich vom unpolit. Künstler zum Star, der sich öff. gegen ¿Adolf Hitler äußerte. Internationale Tourneen führten ihn nach Nord- und Südamerika, nach Südafrika, Asien und Australien. Nach dem „Anschluss“ Österr. an das Dt. Reich 1938 lebte er ausschließl. in England (ab 1940 engl. Staatsbürger). Er gab Konzerte, die BBC brachte regelmäßige R.-T.-Programme, und es entstand seine zweite, sehr erfolgreiche Operette „Old Chelsea“. An Höchstgagen und einen aufwendigen Lebensstil gewöhnt, 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 „Don Giovanni“, wobei er besser denn je gesungen haben soll. T.s Vater " - }, - "model": "metainfo.text", - "pk": 47764 - }, - { - "fields": { - "kind": 131, - "source": 196, - "text": "Tauber Richard, eigentl. Richard Denemy, ab 1913 Denemy-Tauber, Sänger, Dirigent und Komponist. Geb. Linz (OÖ), 16. 5. 1891; gest. London (GB), 8. 1. 1948 (Ehrengrab: Brompton Cemetery); bis 1926 röm.-kath." - }, - "model": "metainfo.text", - "pk": 47765 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 26, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3194099/" - }, - "model": "metainfo.uri", - "pk": 26 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 133, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3186886/" - }, - "model": "metainfo.uri", - "pk": 111 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 183, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2761369/" - }, - "model": "metainfo.uri", - "pk": 149 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 327, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3078610/" - }, - "model": "metainfo.uri", - "pk": 258 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 384, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3077117/" - }, - "model": "metainfo.uri", - "pk": 299 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 400, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3054643/" - }, - "model": "metainfo.uri", - "pk": 311 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 831, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/683506/" - }, - "model": "metainfo.uri", - "pk": 637 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 926, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2782067/" - }, - "model": "metainfo.uri", - "pk": 713 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 1390, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2950159/" - }, - "model": "metainfo.uri", - "pk": 1062 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 1424, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3071961/" - }, - "model": "metainfo.uri", - "pk": 1089 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 1454, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2781806/" - }, - "model": "metainfo.uri", - "pk": 1112 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 1701, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2781629/" - }, - "model": "metainfo.uri", - "pk": 1291 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 1718, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2907669/" - }, - "model": "metainfo.uri", - "pk": 1304 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 2006, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/684039/" - }, - "model": "metainfo.uri", - "pk": 1511 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 2072, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3060972/" - }, - "model": "metainfo.uri", - "pk": 1561 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 2085, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3078577/" - }, - "model": "metainfo.uri", - "pk": 1571 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 2161, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3081368/" - }, - "model": "metainfo.uri", - "pk": 1625 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 2170, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3181550/" - }, - "model": "metainfo.uri", - "pk": 1631 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 2197, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3074967/" - }, - "model": "metainfo.uri", - "pk": 1651 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 2281, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/711416/" - }, - "model": "metainfo.uri", - "pk": 1711 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 2489, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3435910/" - }, - "model": "metainfo.uri", - "pk": 1856 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 2602, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3181215/" - }, - "model": "metainfo.uri", - "pk": 1939 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 2854, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/710719/" - }, - "model": "metainfo.uri", - "pk": 2121 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 3105, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3101321/" - }, - "model": "metainfo.uri", - "pk": 2302 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 3162, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/681290/" - }, - "model": "metainfo.uri", - "pk": 2344 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 4096, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2934486/" - }, - "model": "metainfo.uri", - "pk": 3021 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 4269, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3063762/" - }, - "model": "metainfo.uri", - "pk": 3151 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 4767, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2778067/" - }, - "model": "metainfo.uri", - "pk": 3518 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 4877, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2779275/" - }, - "model": "metainfo.uri", - "pk": 3599 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 5294, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/677410/" - }, - "model": "metainfo.uri", - "pk": 3912 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 5308, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2873574/" - }, - "model": "metainfo.uri", - "pk": 3923 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 5478, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3175986/" - }, - "model": "metainfo.uri", - "pk": 4052 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 5691, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3173577/" - }, - "model": "metainfo.uri", - "pk": 4206 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 5749, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2777972/" - }, - "model": "metainfo.uri", - "pk": 4249 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 6004, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3063197/" - }, - "model": "metainfo.uri", - "pk": 4440 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 6324, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2910831/" - }, - "model": "metainfo.uri", - "pk": 4676 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 6700, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2775220/" - }, - "model": "metainfo.uri", - "pk": 4954 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 6947, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3199302/" - }, - "model": "metainfo.uri", - "pk": 5134 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 7454, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3097333/" - }, - "model": "metainfo.uri", - "pk": 5507 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 7622, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2772649/" - }, - "model": "metainfo.uri", - "pk": 5631 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 7986, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2892518/" - }, - "model": "metainfo.uri", - "pk": 5897 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 8482, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2773913/" - }, - "model": "metainfo.uri", - "pk": 6257 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 8798, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2885679/" - }, - "model": "metainfo.uri", - "pk": 6486 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 9287, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2773300/" - }, - "model": "metainfo.uri", - "pk": 6838 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 9455, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3072358/" - }, - "model": "metainfo.uri", - "pk": 6961 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 9475, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3196359/" - }, - "model": "metainfo.uri", - "pk": 6977 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 9735, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/702550/" - }, - "model": "metainfo.uri", - "pk": 7169 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 10015, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2772400/" - }, - "model": "metainfo.uri", - "pk": 7375 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 10265, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2643743/" - }, - "model": "metainfo.uri", - "pk": 7554 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 10793, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3195506/" - }, - "model": "metainfo.uri", - "pk": 7936 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 11238, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3064919/" - }, - "model": "metainfo.uri", - "pk": 8262 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 11556, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3070372/" - }, - "model": "metainfo.uri", - "pk": 8489 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 11799, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2867714/" - }, - "model": "metainfo.uri", - "pk": 8668 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 12211, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3090436/" - }, - "model": "metainfo.uri", - "pk": 8966 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 12758, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2990440/" - }, - "model": "metainfo.uri", - "pk": 9363 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 13253, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3045190/" - }, - "model": "metainfo.uri", - "pk": 9718 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 13382, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3069011/" - }, - "model": "metainfo.uri", - "pk": 9810 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 13714, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2988507/" - }, - "model": "metainfo.uri", - "pk": 10050 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 13987, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2854561/" - }, - "model": "metainfo.uri", - "pk": 10247 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 14608, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3067696/" - }, - "model": "metainfo.uri", - "pk": 10697 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 16242, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3057304/" - }, - "model": "metainfo.uri", - "pk": 11885 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 16310, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3167905/" - }, - "model": "metainfo.uri", - "pk": 11932 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 16594, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3065118/" - }, - "model": "metainfo.uri", - "pk": 12137 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 16864, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2765515/" - }, - "model": "metainfo.uri", - "pk": 12332 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 18374, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3083848/" - }, - "model": "metainfo.uri", - "pk": 13419 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 18400, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/715429/" - }, - "model": "metainfo.uri", - "pk": 13438 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 19215, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3165243/" - }, - "model": "metainfo.uri", - "pk": 14028 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 19599, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3058653/" - }, - "model": "metainfo.uri", - "pk": 14297 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 20549, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/756135/" - }, - "model": "metainfo.uri", - "pk": 14983 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 20659, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/792794/" - }, - "model": "metainfo.uri", - "pk": 15060 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 20872, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2782058/" - }, - "model": "metainfo.uri", - "pk": 15214 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 20988, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2633767/" - }, - "model": "metainfo.uri", - "pk": 15297 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 21818, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3064454/" - }, - "model": "metainfo.uri", - "pk": 15896 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 22216, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3074331/" - }, - "model": "metainfo.uri", - "pk": 16165 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 22259, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2764112/" - }, - "model": "metainfo.uri", - "pk": 16195 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 22322, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2762908/" - }, - "model": "metainfo.uri", - "pk": 16238 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 22354, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2659297/" - }, - "model": "metainfo.uri", - "pk": 16260 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 22475, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2953416/" - }, - "model": "metainfo.uri", - "pk": 16342 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 22494, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2772910/" - }, - "model": "metainfo.uri", - "pk": 16355 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 22526, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/2660718/" - }, - "model": "metainfo.uri", - "pk": 16377 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 22545, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/684490/" - }, - "model": "metainfo.uri", - "pk": 16386 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 22558, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3092742/" - }, - "model": "metainfo.uri", - "pk": 16392 - }, - { - "fields": { - "domain": "http://sws.geonames.org/", - "entity": 22570, - "loaded": true, - "loaded_time": null, - "rdf_link": "", - "uri": "http://sws.geonames.org/3164453/" - }, - "model": "metainfo.uri", - "pk": 16398 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 6324, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4023349-2" - }, - "model": "metainfo.uri", - "pk": 19232 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 6700, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4027096-8" - }, - "model": "metainfo.uri", - "pk": 19233 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 13714, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4044660-8" - }, - "model": "metainfo.uri", - "pk": 19242 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 11799, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4127793-4" - }, - "model": "metainfo.uri", - "pk": 19246 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 2161, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4008216-7" - }, - "model": "metainfo.uri", - "pk": 19273 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 14608, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4076310-9" - }, - "model": "metainfo.uri", - "pk": 19323 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 400, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4008684-7" - }, - "model": "metainfo.uri", - "pk": 19406 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 5691, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4038688-0" - }, - "model": "metainfo.uri", - "pk": 19447 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 1454, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4265379-4" - }, - "model": "metainfo.uri", - "pk": 19459 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 4767, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4021912-4" - }, - "model": "metainfo.uri", - "pk": 19583 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 13382, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4075643-9" - }, - "model": "metainfo.uri", - "pk": 19665 - }, - { - "fields": { - "domain": "apis default", - "entity": 27245, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/27245" - }, - "model": "metainfo.uri", - "pk": 20488 - }, - { - "fields": { - "domain": "", - "entity": 46414, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118931482" - }, - "model": "metainfo.uri", - "pk": 32623 - }, - { - "fields": { - "domain": "", - "entity": 56248, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118785028" - }, - "model": "metainfo.uri", - "pk": 39250 - }, - { - "fields": { - "domain": "", - "entity": 62757, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118573527" - }, - "model": "metainfo.uri", - "pk": 43650 - }, - { - "fields": { - "domain": "apis default", - "entity": 88219, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/88219" - }, - "model": "metainfo.uri", - "pk": 60547 - }, - { - "fields": { - "domain": "", - "entity": 88902, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118508288" - }, - "model": "metainfo.uri", - "pk": 60980 - }, - { - "fields": { - "domain": "apis default", - "entity": 92412, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/92412" - }, - "model": "metainfo.uri", - "pk": 62984 - }, - { - "fields": { - "domain": "", - "entity": 92603, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118677667" - }, - "model": "metainfo.uri", - "pk": 63085 - }, - { - "fields": { - "domain": "", - "entity": 93003, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118505955" - }, - "model": "metainfo.uri", - "pk": 63174 - }, - { - "fields": { - "domain": "", - "entity": 93009, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/119061201" - }, - "model": "metainfo.uri", - "pk": 63178 - }, - { - "fields": { - "domain": "", - "entity": 93012, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/128578998" - }, - "model": "metainfo.uri", - "pk": 63180 - }, - { - "fields": { - "domain": "", - "entity": 93015, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/143930567" - }, - "model": "metainfo.uri", - "pk": 63182 - }, - { - "fields": { - "domain": "", - "entity": 93018, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/136186289" - }, - "model": "metainfo.uri", - "pk": 63184 - }, - { - "fields": { - "domain": "", - "entity": 93021, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/136186343" - }, - "model": "metainfo.uri", - "pk": 63186 - }, - { - "fields": { - "domain": "", - "entity": 93024, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/140067302" - }, - "model": "metainfo.uri", - "pk": 63188 - }, - { - "fields": { - "domain": "apis default", - "entity": 93025, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93025" - }, - "model": "metainfo.uri", - "pk": 63189 - }, - { - "fields": { - "domain": "", - "entity": 93028, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/116539585" - }, - "model": "metainfo.uri", - "pk": 63191 - }, - { - "fields": { - "domain": "", - "entity": 93031, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/11666827X" - }, - "model": "metainfo.uri", - "pk": 63193 - }, - { - "fields": { - "domain": "", - "entity": 93034, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/116689234" - }, - "model": "metainfo.uri", - "pk": 63195 - }, - { - "fields": { - "domain": "apis default", - "entity": 93035, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93035" - }, - "model": "metainfo.uri", - "pk": 63196 - }, - { - "fields": { - "domain": "", - "entity": 93044, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/130579122" - }, - "model": "metainfo.uri", - "pk": 63202 - }, - { - "fields": { - "domain": "", - "entity": 93047, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/143681761" - }, - "model": "metainfo.uri", - "pk": 63204 - }, - { - "fields": { - "domain": "", - "entity": 93050, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/117649953" - }, - "model": "metainfo.uri", - "pk": 63206 - }, - { - "fields": { - "domain": "apis default", - "entity": 93051, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93051" - }, - "model": "metainfo.uri", - "pk": 63207 - }, - { - "fields": { - "domain": "", - "entity": 93056, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/130132098" - }, - "model": "metainfo.uri", - "pk": 63210 - }, - { - "fields": { - "domain": "", - "entity": 93059, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/143053272" - }, - "model": "metainfo.uri", - "pk": 63212 - }, - { - "fields": { - "domain": "apis default", - "entity": 93060, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93060" - }, - "model": "metainfo.uri", - "pk": 63213 - }, - { - "fields": { - "domain": "", - "entity": 93065, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118817418" - }, - "model": "metainfo.uri", - "pk": 63216 - }, - { - "fields": { - "domain": "", - "entity": 93068, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/135697719" - }, - "model": "metainfo.uri", - "pk": 63218 - }, - { - "fields": { - "domain": "", - "entity": 93071, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118524283" - }, - "model": "metainfo.uri", - "pk": 63220 - }, - { - "fields": { - "domain": "", - "entity": 93074, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/116070935" - }, - "model": "metainfo.uri", - "pk": 63222 - }, - { - "fields": { - "domain": "apis default", - "entity": 93075, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93075" - }, - "model": "metainfo.uri", - "pk": 63223 - }, - { - "fields": { - "domain": "", - "entity": 93136, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1012030806" - }, - "model": "metainfo.uri", - "pk": 63261 - }, - { - "fields": { - "domain": "", - "entity": 93328, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/117736791" - }, - "model": "metainfo.uri", - "pk": 63385 - }, - { - "fields": { - "domain": "", - "entity": 93337, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1019267925" - }, - "model": "metainfo.uri", - "pk": 63391 - }, - { - "fields": { - "domain": "", - "entity": 93352, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/136782086" - }, - "model": "metainfo.uri", - "pk": 63401 - }, - { - "fields": { - "domain": "", - "entity": 93366, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1018979573" - }, - "model": "metainfo.uri", - "pk": 63411 - }, - { - "fields": { - "domain": "", - "entity": 93369, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1019359811" - }, - "model": "metainfo.uri", - "pk": 63413 - }, - { - "fields": { - "domain": "", - "entity": 93378, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/117634816" - }, - "model": "metainfo.uri", - "pk": 63419 - }, - { - "fields": { - "domain": "apis default", - "entity": 93379, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93379" - }, - "model": "metainfo.uri", - "pk": 63420 - }, - { - "fields": { - "domain": "", - "entity": 93387, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/116907525" - }, - "model": "metainfo.uri", - "pk": 63425 - }, - { - "fields": { - "domain": "", - "entity": 93393, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/116856246" - }, - "model": "metainfo.uri", - "pk": 63429 - }, - { - "fields": { - "domain": "", - "entity": 93396, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/119334429" - }, - "model": "metainfo.uri", - "pk": 63431 - }, - { - "fields": { - "domain": "apis default", - "entity": 93397, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93397" - }, - "model": "metainfo.uri", - "pk": 63432 - }, - { - "fields": { - "domain": "", - "entity": 93400, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118806025" - }, - "model": "metainfo.uri", - "pk": 63434 - }, - { - "fields": { - "domain": "", - "entity": 93409, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1018666664" - }, - "model": "metainfo.uri", - "pk": 63440 - }, - { - "fields": { - "domain": "apis default", - "entity": 93410, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93410" - }, - "model": "metainfo.uri", - "pk": 63441 - }, - { - "fields": { - "domain": "", - "entity": 93415, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1014451833" - }, - "model": "metainfo.uri", - "pk": 63444 - }, - { - "fields": { - "domain": "", - "entity": 93418, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/117612308" - }, - "model": "metainfo.uri", - "pk": 63446 - }, - { - "fields": { - "domain": "", - "entity": 93442, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118813919" - }, - "model": "metainfo.uri", - "pk": 63462 - }, - { - "fields": { - "domain": "", - "entity": 93445, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1023121581" - }, - "model": "metainfo.uri", - "pk": 63464 - }, - { - "fields": { - "domain": "", - "entity": 93448, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/119065932" - }, - "model": "metainfo.uri", - "pk": 63466 - }, - { - "fields": { - "domain": "apis default", - "entity": 93449, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93449" - }, - "model": "metainfo.uri", - "pk": 63467 - }, - { - "fields": { - "domain": "", - "entity": 93469, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1021208493" - }, - "model": "metainfo.uri", - "pk": 63480 - }, - { - "fields": { - "domain": "", - "entity": 93481, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/137341768" - }, - "model": "metainfo.uri", - "pk": 63488 - }, - { - "fields": { - "domain": "", - "entity": 93484, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1020698381" - }, - "model": "metainfo.uri", - "pk": 63490 - }, - { - "fields": { - "domain": "", - "entity": 93487, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1020698055" - }, - "model": "metainfo.uri", - "pk": 63492 - }, - { - "fields": { - "domain": "", - "entity": 93510, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118732277" - }, - "model": "metainfo.uri", - "pk": 63508 - }, - { - "fields": { - "domain": "", - "entity": 93513, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/10788464X" - }, - "model": "metainfo.uri", - "pk": 63510 - }, - { - "fields": { - "domain": "", - "entity": 93516, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/134474937" - }, - "model": "metainfo.uri", - "pk": 63512 - }, - { - "fields": { - "domain": "", - "entity": 93540, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/13185545X" - }, - "model": "metainfo.uri", - "pk": 63528 - }, - { - "fields": { - "domain": "", - "entity": 93546, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1024716082" - }, - "model": "metainfo.uri", - "pk": 63532 - }, - { - "fields": { - "domain": "", - "entity": 93561, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1026382211" - }, - "model": "metainfo.uri", - "pk": 63542 - }, - { - "fields": { - "domain": "apis default", - "entity": 93562, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93562" - }, - "model": "metainfo.uri", - "pk": 63543 - }, - { - "fields": { - "domain": "", - "entity": 93573, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/102588485X" - }, - "model": "metainfo.uri", - "pk": 63550 - }, - { - "fields": { - "domain": "", - "entity": 93588, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/130027022" - }, - "model": "metainfo.uri", - "pk": 63560 - }, - { - "fields": { - "domain": "", - "entity": 93600, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/117687030" - }, - "model": "metainfo.uri", - "pk": 63568 - }, - { - "fields": { - "domain": "", - "entity": 93609, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/122897897" - }, - "model": "metainfo.uri", - "pk": 63574 - }, - { - "fields": { - "domain": "apis default", - "entity": 93610, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93610" - }, - "model": "metainfo.uri", - "pk": 63575 - }, - { - "fields": { - "domain": "", - "entity": 93615, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/139593128" - }, - "model": "metainfo.uri", - "pk": 63578 - }, - { - "fields": { - "domain": "", - "entity": 93639, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/139112200" - }, - "model": "metainfo.uri", - "pk": 63594 - }, - { - "fields": { - "domain": "", - "entity": 93642, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/130427012" - }, - "model": "metainfo.uri", - "pk": 63596 - }, - { - "fields": { - "domain": "", - "entity": 93645, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/117522139" - }, - "model": "metainfo.uri", - "pk": 63598 - }, - { - "fields": { - "domain": "", - "entity": 93651, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1027427839" - }, - "model": "metainfo.uri", - "pk": 63602 - }, - { - "fields": { - "domain": "", - "entity": 93654, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/127691979" - }, - "model": "metainfo.uri", - "pk": 63604 - }, - { - "fields": { - "domain": "apis default", - "entity": 93657, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93657" - }, - "model": "metainfo.uri", - "pk": 63605 - }, - { - "fields": { - "domain": "apis default", - "entity": 93658, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93658" - }, - "model": "metainfo.uri", - "pk": 63606 - }, - { - "fields": { - "domain": "apis default", - "entity": 93663, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93663" - }, - "model": "metainfo.uri", - "pk": 63608 - }, - { - "fields": { - "domain": "apis default", - "entity": 93678, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93678" - }, - "model": "metainfo.uri", - "pk": 63613 - }, - { - "fields": { - "domain": "apis default", - "entity": 93684, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93684" - }, - "model": "metainfo.uri", - "pk": 63615 - }, - { - "fields": { - "domain": "", - "entity": 93702, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/123215374" - }, - "model": "metainfo.uri", - "pk": 63627 - }, - { - "fields": { - "domain": "", - "entity": 93705, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/12899620X" - }, - "model": "metainfo.uri", - "pk": 63629 - }, - { - "fields": { - "domain": "", - "entity": 93714, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1035683431" - }, - "model": "metainfo.uri", - "pk": 63635 - }, - { - "fields": { - "domain": "apis default", - "entity": 93715, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93715" - }, - "model": "metainfo.uri", - "pk": 63636 - }, - { - "fields": { - "domain": "", - "entity": 93748, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1034850962" - }, - "model": "metainfo.uri", - "pk": 63657 - }, - { - "fields": { - "domain": "apis default", - "entity": 93749, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93749" - }, - "model": "metainfo.uri", - "pk": 63658 - }, - { - "fields": { - "domain": "", - "entity": 93779, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/135612411" - }, - "model": "metainfo.uri", - "pk": 63678 - }, - { - "fields": { - "domain": "", - "entity": 93785, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1033824674" - }, - "model": "metainfo.uri", - "pk": 63682 - }, - { - "fields": { - "domain": "", - "entity": 93791, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/133833348" - }, - "model": "metainfo.uri", - "pk": 63686 - }, - { - "fields": { - "domain": "", - "entity": 93800, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/103334690X" - }, - "model": "metainfo.uri", - "pk": 63692 - }, - { - "fields": { - "domain": "", - "entity": 93803, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/128900059" - }, - "model": "metainfo.uri", - "pk": 63694 - }, - { - "fields": { - "domain": "apis default", - "entity": 93804, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93804" - }, - "model": "metainfo.uri", - "pk": 63695 - }, - { - "fields": { - "domain": "", - "entity": 93809, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1033469084" - }, - "model": "metainfo.uri", - "pk": 63698 - }, - { - "fields": { - "domain": "", - "entity": 93815, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/117409669" - }, - "model": "metainfo.uri", - "pk": 63702 - }, - { - "fields": { - "domain": "", - "entity": 93818, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1033342483" - }, - "model": "metainfo.uri", - "pk": 63704 - }, - { - "fields": { - "domain": "", - "entity": 93836, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/134516001" - }, - "model": "metainfo.uri", - "pk": 63716 - }, - { - "fields": { - "domain": "", - "entity": 93839, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1019536594" - }, - "model": "metainfo.uri", - "pk": 63718 - }, - { - "fields": { - "domain": "", - "entity": 93854, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/103283160X" - }, - "model": "metainfo.uri", - "pk": 63728 - }, - { - "fields": { - "domain": "apis default", - "entity": 93855, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93855" - }, - "model": "metainfo.uri", - "pk": 63729 - }, - { - "fields": { - "domain": "", - "entity": 93863, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/103223718X" - }, - "model": "metainfo.uri", - "pk": 63734 - }, - { - "fields": { - "domain": "", - "entity": 93866, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118610643" - }, - "model": "metainfo.uri", - "pk": 63736 - }, - { - "fields": { - "domain": "", - "entity": 93878, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1032220473" - }, - "model": "metainfo.uri", - "pk": 63744 - }, - { - "fields": { - "domain": "apis default", - "entity": 93879, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93879" - }, - "model": "metainfo.uri", - "pk": 63745 - }, - { - "fields": { - "domain": "", - "entity": 93891, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1031937358" - }, - "model": "metainfo.uri", - "pk": 63753 - }, - { - "fields": { - "domain": "", - "entity": 93894, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1031946101" - }, - "model": "metainfo.uri", - "pk": 63755 - }, - { - "fields": { - "domain": "", - "entity": 93900, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/116848693" - }, - "model": "metainfo.uri", - "pk": 63759 - }, - { - "fields": { - "domain": "", - "entity": 93903, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/103169420X" - }, - "model": "metainfo.uri", - "pk": 63761 - }, - { - "fields": { - "domain": "", - "entity": 93909, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/137648588" - }, - "model": "metainfo.uri", - "pk": 63765 - }, - { - "fields": { - "domain": "", - "entity": 93921, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/116816961" - }, - "model": "metainfo.uri", - "pk": 63773 - }, - { - "fields": { - "domain": "", - "entity": 93933, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/118759671" - }, - "model": "metainfo.uri", - "pk": 63781 - }, - { - "fields": { - "domain": "apis default", - "entity": 93934, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93934" - }, - "model": "metainfo.uri", - "pk": 63782 - }, - { - "fields": { - "domain": "apis default", - "entity": 93937, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93937" - }, - "model": "metainfo.uri", - "pk": 63784 - }, - { - "fields": { - "domain": "", - "entity": 93940, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/103056423X" - }, - "model": "metainfo.uri", - "pk": 63786 - }, - { - "fields": { - "domain": "", - "entity": 93946, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1030283044" - }, - "model": "metainfo.uri", - "pk": 63790 - }, - { - "fields": { - "domain": "", - "entity": 93955, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1031146539" - }, - "model": "metainfo.uri", - "pk": 63796 - }, - { - "fields": { - "domain": "", - "entity": 93958, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/139576126" - }, - "model": "metainfo.uri", - "pk": 63798 - }, - { - "fields": { - "domain": "", - "entity": 93961, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/129263761" - }, - "model": "metainfo.uri", - "pk": 63800 - }, - { - "fields": { - "domain": "", - "entity": 93964, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/121246736" - }, - "model": "metainfo.uri", - "pk": 63802 - }, - { - "fields": { - "domain": "", - "entity": 93967, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1029738556" - }, - "model": "metainfo.uri", - "pk": 63804 - }, - { - "fields": { - "domain": "", - "entity": 93970, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/1029748209" - }, - "model": "metainfo.uri", - "pk": 63806 - }, - { - "fields": { - "domain": "apis default", - "entity": 93988, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93988" - }, - "model": "metainfo.uri", - "pk": 63815 - }, - { - "fields": { - "domain": "apis default", - "entity": 93991, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93991" - }, - "model": "metainfo.uri", - "pk": 63816 - }, - { - "fields": { - "domain": "apis default", - "entity": 94003, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94003" - }, - "model": "metainfo.uri", - "pk": 63821 - }, - { - "fields": { - "domain": "apis default", - "entity": 94006, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94006" - }, - "model": "metainfo.uri", - "pk": 63822 - }, - { - "fields": { - "domain": "apis default", - "entity": 94009, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94009" - }, - "model": "metainfo.uri", - "pk": 63823 - }, - { - "fields": { - "domain": "apis default", - "entity": 94018, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94018" - }, - "model": "metainfo.uri", - "pk": 63826 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 10265, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4074335-4" - }, - "model": "metainfo.uri", - "pk": 64139 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 9735, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4035304-7" - }, - "model": "metainfo.uri", - "pk": 64175 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 133, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4108914-5" - }, - "model": "metainfo.uri", - "pk": 64185 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 831, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4008858-3" - }, - "model": "metainfo.uri", - "pk": 64201 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 2854, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4010833-8" - }, - "model": "metainfo.uri", - "pk": 64255 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 9475, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4073953-3" - }, - "model": "metainfo.uri", - "pk": 64261 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 13253, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4075578-2" - }, - "model": "metainfo.uri", - "pk": 64625 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 20549, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4079048-4" - }, - "model": "metainfo.uri", - "pk": 64656 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 327, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4008456-5" - }, - "model": "metainfo.uri", - "pk": 64762 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 18400, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4106475-6" - }, - "model": "metainfo.uri", - "pk": 64958 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 10015, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4074255-6" - }, - "model": "metainfo.uri", - "pk": 64961 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 9287, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4033488-0" - }, - "model": "metainfo.uri", - "pk": 65200 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 4096, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4013237-7" - }, - "model": "metainfo.uri", - "pk": 65351 - }, - { - "fields": { - "domain": "http://d-nb.info/gnd/", - "entity": 22526, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "http://d-nb.info/gnd/4071444-5" - }, - "model": "metainfo.uri", - "pk": 65410 - }, - { - "fields": { - "domain": "apis default", - "entity": 99856, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99856" - }, - "model": "metainfo.uri", - "pk": 67378 - }, - { - "fields": { - "domain": "apis default", - "entity": 99861, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99861" - }, - "model": "metainfo.uri", - "pk": 67379 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/27245" - }, - "model": "metainfo.uri", - "pk": 67380 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/46414" - }, - "model": "metainfo.uri", - "pk": 67381 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/56248" - }, - "model": "metainfo.uri", - "pk": 67382 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/62757" - }, - "model": "metainfo.uri", - "pk": 67383 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/88219" - }, - "model": "metainfo.uri", - "pk": 67384 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/88902" - }, - "model": "metainfo.uri", - "pk": 67385 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/92412" - }, - "model": "metainfo.uri", - "pk": 67386 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/92603" - }, - "model": "metainfo.uri", - "pk": 67387 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93003" - }, - "model": "metainfo.uri", - "pk": 67388 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93009" - }, - "model": "metainfo.uri", - "pk": 67389 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93012" - }, - "model": "metainfo.uri", - "pk": 67390 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93015" - }, - "model": "metainfo.uri", - "pk": 67391 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93018" - }, - "model": "metainfo.uri", - "pk": 67392 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93021" - }, - "model": "metainfo.uri", - "pk": 67393 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93024" - }, - "model": "metainfo.uri", - "pk": 67394 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93028" - }, - "model": "metainfo.uri", - "pk": 67395 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93031" - }, - "model": "metainfo.uri", - "pk": 67396 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93034" - }, - "model": "metainfo.uri", - "pk": 67397 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93044" - }, - "model": "metainfo.uri", - "pk": 67398 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93047" - }, - "model": "metainfo.uri", - "pk": 67399 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93050" - }, - "model": "metainfo.uri", - "pk": 67400 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93056" - }, - "model": "metainfo.uri", - "pk": 67401 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93059" - }, - "model": "metainfo.uri", - "pk": 67402 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93065" - }, - "model": "metainfo.uri", - "pk": 67403 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93068" - }, - "model": "metainfo.uri", - "pk": 67404 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93071" - }, - "model": "metainfo.uri", - "pk": 67405 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93074" - }, - "model": "metainfo.uri", - "pk": 67406 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93136" - }, - "model": "metainfo.uri", - "pk": 67407 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93328" - }, - "model": "metainfo.uri", - "pk": 67408 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93337" - }, - "model": "metainfo.uri", - "pk": 67409 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93352" - }, - "model": "metainfo.uri", - "pk": 67410 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93366" - }, - "model": "metainfo.uri", - "pk": 67411 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93369" - }, - "model": "metainfo.uri", - "pk": 67412 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93378" - }, - "model": "metainfo.uri", - "pk": 67413 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93387" - }, - "model": "metainfo.uri", - "pk": 67414 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93393" - }, - "model": "metainfo.uri", - "pk": 67415 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93396" - }, - "model": "metainfo.uri", - "pk": 67416 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93400" - }, - "model": "metainfo.uri", - "pk": 67417 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93409" - }, - "model": "metainfo.uri", - "pk": 67418 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93415" - }, - "model": "metainfo.uri", - "pk": 67419 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93418" - }, - "model": "metainfo.uri", - "pk": 67420 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93442" - }, - "model": "metainfo.uri", - "pk": 67421 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93445" - }, - "model": "metainfo.uri", - "pk": 67422 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93448" - }, - "model": "metainfo.uri", - "pk": 67423 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93469" - }, - "model": "metainfo.uri", - "pk": 67424 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93481" - }, - "model": "metainfo.uri", - "pk": 67425 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93484" - }, - "model": "metainfo.uri", - "pk": 67426 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93487" - }, - "model": "metainfo.uri", - "pk": 67427 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93510" - }, - "model": "metainfo.uri", - "pk": 67428 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93513" - }, - "model": "metainfo.uri", - "pk": 67429 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93516" - }, - "model": "metainfo.uri", - "pk": 67430 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93540" - }, - "model": "metainfo.uri", - "pk": 67431 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93546" - }, - "model": "metainfo.uri", - "pk": 67432 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93561" - }, - "model": "metainfo.uri", - "pk": 67433 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93573" - }, - "model": "metainfo.uri", - "pk": 67434 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93588" - }, - "model": "metainfo.uri", - "pk": 67435 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93600" - }, - "model": "metainfo.uri", - "pk": 67436 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93609" - }, - "model": "metainfo.uri", - "pk": 67437 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93615" - }, - "model": "metainfo.uri", - "pk": 67438 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93639" - }, - "model": "metainfo.uri", - "pk": 67439 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93642" - }, - "model": "metainfo.uri", - "pk": 67440 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93645" - }, - "model": "metainfo.uri", - "pk": 67441 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93651" - }, - "model": "metainfo.uri", - "pk": 67442 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93654" - }, - "model": "metainfo.uri", - "pk": 67443 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93657" - }, - "model": "metainfo.uri", - "pk": 67444 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93663" - }, - "model": "metainfo.uri", - "pk": 67445 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93678" - }, - "model": "metainfo.uri", - "pk": 67446 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93684" - }, - "model": "metainfo.uri", - "pk": 67447 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93702" - }, - "model": "metainfo.uri", - "pk": 67448 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93705" - }, - "model": "metainfo.uri", - "pk": 67449 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93714" - }, - "model": "metainfo.uri", - "pk": 67450 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93748" - }, - "model": "metainfo.uri", - "pk": 67451 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93779" - }, - "model": "metainfo.uri", - "pk": 67452 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93785" - }, - "model": "metainfo.uri", - "pk": 67453 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93791" - }, - "model": "metainfo.uri", - "pk": 67454 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93800" - }, - "model": "metainfo.uri", - "pk": 67455 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93803" - }, - "model": "metainfo.uri", - "pk": 67456 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93809" - }, - "model": "metainfo.uri", - "pk": 67457 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93815" - }, - "model": "metainfo.uri", - "pk": 67458 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93818" - }, - "model": "metainfo.uri", - "pk": 67459 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93836" - }, - "model": "metainfo.uri", - "pk": 67460 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93839" - }, - "model": "metainfo.uri", - "pk": 67461 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93854" - }, - "model": "metainfo.uri", - "pk": 67462 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93863" - }, - "model": "metainfo.uri", - "pk": 67463 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93866" - }, - "model": "metainfo.uri", - "pk": 67464 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93878" - }, - "model": "metainfo.uri", - "pk": 67465 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93891" - }, - "model": "metainfo.uri", - "pk": 67466 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93894" - }, - "model": "metainfo.uri", - "pk": 67467 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93900" - }, - "model": "metainfo.uri", - "pk": 67468 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93903" - }, - "model": "metainfo.uri", - "pk": 67469 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93909" - }, - "model": "metainfo.uri", - "pk": 67470 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93921" - }, - "model": "metainfo.uri", - "pk": 67471 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93933" - }, - "model": "metainfo.uri", - "pk": 67472 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93940" - }, - "model": "metainfo.uri", - "pk": 67473 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93946" - }, - "model": "metainfo.uri", - "pk": 67474 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93955" - }, - "model": "metainfo.uri", - "pk": 67475 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93958" - }, - "model": "metainfo.uri", - "pk": 67476 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93961" - }, - "model": "metainfo.uri", - "pk": 67477 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93964" - }, - "model": "metainfo.uri", - "pk": 67478 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93967" - }, - "model": "metainfo.uri", - "pk": 67479 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93970" - }, - "model": "metainfo.uri", - "pk": 67480 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93988" - }, - "model": "metainfo.uri", - "pk": 67481 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93991" - }, - "model": "metainfo.uri", - "pk": 67482 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94003" - }, - "model": "metainfo.uri", - "pk": 67483 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94006" - }, - "model": "metainfo.uri", - "pk": 67484 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94009" - }, - "model": "metainfo.uri", - "pk": 67485 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94018" - }, - "model": "metainfo.uri", - "pk": 67486 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/26" - }, - "model": "metainfo.uri", - "pk": 67487 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/133" - }, - "model": "metainfo.uri", - "pk": 67488 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/183" - }, - "model": "metainfo.uri", - "pk": 67489 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/327" - }, - "model": "metainfo.uri", - "pk": 67490 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/384" - }, - "model": "metainfo.uri", - "pk": 67491 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/400" - }, - "model": "metainfo.uri", - "pk": 67492 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/831" - }, - "model": "metainfo.uri", - "pk": 67493 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/926" - }, - "model": "metainfo.uri", - "pk": 67494 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/1390" - }, - "model": "metainfo.uri", - "pk": 67495 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/1424" - }, - "model": "metainfo.uri", - "pk": 67496 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/1454" - }, - "model": "metainfo.uri", - "pk": 67497 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/1701" - }, - "model": "metainfo.uri", - "pk": 67498 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/1718" - }, - "model": "metainfo.uri", - "pk": 67499 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/2006" - }, - "model": "metainfo.uri", - "pk": 67500 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/2072" - }, - "model": "metainfo.uri", - "pk": 67501 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/2085" - }, - "model": "metainfo.uri", - "pk": 67502 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/2161" - }, - "model": "metainfo.uri", - "pk": 67503 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/2170" - }, - "model": "metainfo.uri", - "pk": 67504 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/2197" - }, - "model": "metainfo.uri", - "pk": 67505 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/2281" - }, - "model": "metainfo.uri", - "pk": 67506 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/2489" - }, - "model": "metainfo.uri", - "pk": 67507 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/2602" - }, - "model": "metainfo.uri", - "pk": 67508 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/2854" - }, - "model": "metainfo.uri", - "pk": 67509 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/3105" - }, - "model": "metainfo.uri", - "pk": 67510 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/3162" - }, - "model": "metainfo.uri", - "pk": 67511 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/4096" - }, - "model": "metainfo.uri", - "pk": 67512 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/4269" - }, - "model": "metainfo.uri", - "pk": 67513 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/4767" - }, - "model": "metainfo.uri", - "pk": 67514 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/4877" - }, - "model": "metainfo.uri", - "pk": 67515 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/5294" - }, - "model": "metainfo.uri", - "pk": 67516 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/5308" - }, - "model": "metainfo.uri", - "pk": 67517 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/5478" - }, - "model": "metainfo.uri", - "pk": 67518 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/5691" - }, - "model": "metainfo.uri", - "pk": 67519 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/5749" - }, - "model": "metainfo.uri", - "pk": 67520 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/6004" - }, - "model": "metainfo.uri", - "pk": 67521 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/6324" - }, - "model": "metainfo.uri", - "pk": 67522 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/6700" - }, - "model": "metainfo.uri", - "pk": 67523 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/6947" - }, - "model": "metainfo.uri", - "pk": 67524 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/7454" - }, - "model": "metainfo.uri", - "pk": 67525 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/7622" - }, - "model": "metainfo.uri", - "pk": 67526 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/7986" - }, - "model": "metainfo.uri", - "pk": 67527 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/8482" - }, - "model": "metainfo.uri", - "pk": 67528 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/8798" - }, - "model": "metainfo.uri", - "pk": 67529 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/9287" - }, - "model": "metainfo.uri", - "pk": 67530 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/9455" - }, - "model": "metainfo.uri", - "pk": 67531 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/9475" - }, - "model": "metainfo.uri", - "pk": 67532 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/9735" - }, - "model": "metainfo.uri", - "pk": 67533 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/10015" - }, - "model": "metainfo.uri", - "pk": 67534 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/10265" - }, - "model": "metainfo.uri", - "pk": 67535 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/10793" - }, - "model": "metainfo.uri", - "pk": 67536 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/11238" - }, - "model": "metainfo.uri", - "pk": 67537 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/11556" - }, - "model": "metainfo.uri", - "pk": 67538 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/11799" - }, - "model": "metainfo.uri", - "pk": 67539 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/12211" - }, - "model": "metainfo.uri", - "pk": 67540 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/12758" - }, - "model": "metainfo.uri", - "pk": 67541 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/13253" - }, - "model": "metainfo.uri", - "pk": 67542 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/13382" - }, - "model": "metainfo.uri", - "pk": 67543 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/13714" - }, - "model": "metainfo.uri", - "pk": 67544 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/13987" - }, - "model": "metainfo.uri", - "pk": 67545 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/14608" - }, - "model": "metainfo.uri", - "pk": 67546 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/16242" - }, - "model": "metainfo.uri", - "pk": 67547 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/16310" - }, - "model": "metainfo.uri", - "pk": 67548 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/16594" - }, - "model": "metainfo.uri", - "pk": 67549 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/16864" - }, - "model": "metainfo.uri", - "pk": 67550 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/18374" - }, - "model": "metainfo.uri", - "pk": 67551 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/18400" - }, - "model": "metainfo.uri", - "pk": 67552 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/19215" - }, - "model": "metainfo.uri", - "pk": 67553 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/19599" - }, - "model": "metainfo.uri", - "pk": 67554 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/20549" - }, - "model": "metainfo.uri", - "pk": 67555 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/20659" - }, - "model": "metainfo.uri", - "pk": 67556 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/20872" - }, - "model": "metainfo.uri", - "pk": 67557 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/20988" - }, - "model": "metainfo.uri", - "pk": 67558 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/21818" - }, - "model": "metainfo.uri", - "pk": 67559 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/22216" - }, - "model": "metainfo.uri", - "pk": 67560 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/22259" - }, - "model": "metainfo.uri", - "pk": 67561 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/22322" - }, - "model": "metainfo.uri", - "pk": 67562 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/22354" - }, - "model": "metainfo.uri", - "pk": 67563 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/22475" - }, - "model": "metainfo.uri", - "pk": 67564 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/22494" - }, - "model": "metainfo.uri", - "pk": 67565 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/22526" - }, - "model": "metainfo.uri", - "pk": 67566 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/22545" - }, - "model": "metainfo.uri", - "pk": 67567 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/22558" - }, - "model": "metainfo.uri", - "pk": 67568 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/22570" - }, - "model": "metainfo.uri", - "pk": 67569 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93025" - }, - "model": "metainfo.uri", - "pk": 67570 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93035" - }, - "model": "metainfo.uri", - "pk": 67571 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93051" - }, - "model": "metainfo.uri", - "pk": 67572 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93060" - }, - "model": "metainfo.uri", - "pk": 67573 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93075" - }, - "model": "metainfo.uri", - "pk": 67574 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93379" - }, - "model": "metainfo.uri", - "pk": 67575 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93397" - }, - "model": "metainfo.uri", - "pk": 67576 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93410" - }, - "model": "metainfo.uri", - "pk": 67577 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93449" - }, - "model": "metainfo.uri", - "pk": 67578 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93562" - }, - "model": "metainfo.uri", - "pk": 67579 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93610" - }, - "model": "metainfo.uri", - "pk": 67580 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93658" - }, - "model": "metainfo.uri", - "pk": 67581 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93715" - }, - "model": "metainfo.uri", - "pk": 67582 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93749" - }, - "model": "metainfo.uri", - "pk": 67583 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93804" - }, - "model": "metainfo.uri", - "pk": 67584 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93855" - }, - "model": "metainfo.uri", - "pk": 67585 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93879" - }, - "model": "metainfo.uri", - "pk": 67586 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93934" - }, - "model": "metainfo.uri", - "pk": 67587 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/93937" - }, - "model": "metainfo.uri", - "pk": 67588 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/24869" - }, - "model": "metainfo.uri", - "pk": 67589 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/24898" - }, - "model": "metainfo.uri", - "pk": 67590 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/24899" - }, - "model": "metainfo.uri", - "pk": 67591 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/24900" - }, - "model": "metainfo.uri", - "pk": 67592 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/24908" - }, - "model": "metainfo.uri", - "pk": 67593 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/24909" - }, - "model": "metainfo.uri", - "pk": 67594 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/24910" - }, - "model": "metainfo.uri", - "pk": 67595 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/24911" - }, - "model": "metainfo.uri", - "pk": 67596 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25012" - }, - "model": "metainfo.uri", - "pk": 67597 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25035" - }, - "model": "metainfo.uri", - "pk": 67598 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25059" - }, - "model": "metainfo.uri", - "pk": 67599 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25060" - }, - "model": "metainfo.uri", - "pk": 67600 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25143" - }, - "model": "metainfo.uri", - "pk": 67601 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25186" - }, - "model": "metainfo.uri", - "pk": 67602 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25187" - }, - "model": "metainfo.uri", - "pk": 67603 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25188" - }, - "model": "metainfo.uri", - "pk": 67604 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25189" - }, - "model": "metainfo.uri", - "pk": 67605 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25199" - }, - "model": "metainfo.uri", - "pk": 67606 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25200" - }, - "model": "metainfo.uri", - "pk": 67607 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25212" - }, - "model": "metainfo.uri", - "pk": 67608 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25213" - }, - "model": "metainfo.uri", - "pk": 67609 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25395" - }, - "model": "metainfo.uri", - "pk": 67610 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25396" - }, - "model": "metainfo.uri", - "pk": 67611 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25397" - }, - "model": "metainfo.uri", - "pk": 67612 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25398" - }, - "model": "metainfo.uri", - "pk": 67613 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25401" - }, - "model": "metainfo.uri", - "pk": 67614 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25402" - }, - "model": "metainfo.uri", - "pk": 67615 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25405" - }, - "model": "metainfo.uri", - "pk": 67616 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25412" - }, - "model": "metainfo.uri", - "pk": 67617 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25413" - }, - "model": "metainfo.uri", - "pk": 67618 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25414" - }, - "model": "metainfo.uri", - "pk": 67619 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25415" - }, - "model": "metainfo.uri", - "pk": 67620 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25416" - }, - "model": "metainfo.uri", - "pk": 67621 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25417" - }, - "model": "metainfo.uri", - "pk": 67622 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25418" - }, - "model": "metainfo.uri", - "pk": 67623 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25419" - }, - "model": "metainfo.uri", - "pk": 67624 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25420" - }, - "model": "metainfo.uri", - "pk": 67625 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25421" - }, - "model": "metainfo.uri", - "pk": 67626 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25589" - }, - "model": "metainfo.uri", - "pk": 67627 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25626" - }, - "model": "metainfo.uri", - "pk": 67628 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25627" - }, - "model": "metainfo.uri", - "pk": 67629 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25628" - }, - "model": "metainfo.uri", - "pk": 67630 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25629" - }, - "model": "metainfo.uri", - "pk": 67631 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25630" - }, - "model": "metainfo.uri", - "pk": 67632 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25631" - }, - "model": "metainfo.uri", - "pk": 67633 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25632" - }, - "model": "metainfo.uri", - "pk": 67634 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25633" - }, - "model": "metainfo.uri", - "pk": 67635 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25634" - }, - "model": "metainfo.uri", - "pk": 67636 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25635" - }, - "model": "metainfo.uri", - "pk": 67637 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25767" - }, - "model": "metainfo.uri", - "pk": 67638 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25768" - }, - "model": "metainfo.uri", - "pk": 67639 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25769" - }, - "model": "metainfo.uri", - "pk": 67640 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25770" - }, - "model": "metainfo.uri", - "pk": 67641 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25771" - }, - "model": "metainfo.uri", - "pk": 67642 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25772" - }, - "model": "metainfo.uri", - "pk": 67643 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/25773" - }, - "model": "metainfo.uri", - "pk": 67644 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94102" - }, - "model": "metainfo.uri", - "pk": 67645 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94103" - }, - "model": "metainfo.uri", - "pk": 67646 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94104" - }, - "model": "metainfo.uri", - "pk": 67647 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94105" - }, - "model": "metainfo.uri", - "pk": 67648 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94120" - }, - "model": "metainfo.uri", - "pk": 67649 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94121" - }, - "model": "metainfo.uri", - "pk": 67650 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94122" - }, - "model": "metainfo.uri", - "pk": 67651 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94123" - }, - "model": "metainfo.uri", - "pk": 67652 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94124" - }, - "model": "metainfo.uri", - "pk": 67653 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94125" - }, - "model": "metainfo.uri", - "pk": 67654 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94126" - }, - "model": "metainfo.uri", - "pk": 67655 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94127" - }, - "model": "metainfo.uri", - "pk": 67656 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94128" - }, - "model": "metainfo.uri", - "pk": 67657 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94129" - }, - "model": "metainfo.uri", - "pk": 67658 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94131" - }, - "model": "metainfo.uri", - "pk": 67659 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94132" - }, - "model": "metainfo.uri", - "pk": 67660 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94133" - }, - "model": "metainfo.uri", - "pk": 67661 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94134" - }, - "model": "metainfo.uri", - "pk": 67662 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94135" - }, - "model": "metainfo.uri", - "pk": 67663 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94136" - }, - "model": "metainfo.uri", - "pk": 67664 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94137" - }, - "model": "metainfo.uri", - "pk": 67665 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94138" - }, - "model": "metainfo.uri", - "pk": 67666 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94139" - }, - "model": "metainfo.uri", - "pk": 67667 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94140" - }, - "model": "metainfo.uri", - "pk": 67668 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94141" - }, - "model": "metainfo.uri", - "pk": 67669 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94247" - }, - "model": "metainfo.uri", - "pk": 67670 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94248" - }, - "model": "metainfo.uri", - "pk": 67671 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94249" - }, - "model": "metainfo.uri", - "pk": 67672 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94250" - }, - "model": "metainfo.uri", - "pk": 67673 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94251" - }, - "model": "metainfo.uri", - "pk": 67674 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94307" - }, - "model": "metainfo.uri", - "pk": 67675 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94308" - }, - "model": "metainfo.uri", - "pk": 67676 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94309" - }, - "model": "metainfo.uri", - "pk": 67677 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94310" - }, - "model": "metainfo.uri", - "pk": 67678 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94311" - }, - "model": "metainfo.uri", - "pk": 67679 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94312" - }, - "model": "metainfo.uri", - "pk": 67680 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94313" - }, - "model": "metainfo.uri", - "pk": 67681 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94314" - }, - "model": "metainfo.uri", - "pk": 67682 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94315" - }, - "model": "metainfo.uri", - "pk": 67683 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94323" - }, - "model": "metainfo.uri", - "pk": 67684 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94324" - }, - "model": "metainfo.uri", - "pk": 67685 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94351" - }, - "model": "metainfo.uri", - "pk": 67686 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94352" - }, - "model": "metainfo.uri", - "pk": 67687 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94353" - }, - "model": "metainfo.uri", - "pk": 67688 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94354" - }, - "model": "metainfo.uri", - "pk": 67689 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94355" - }, - "model": "metainfo.uri", - "pk": 67690 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94356" - }, - "model": "metainfo.uri", - "pk": 67691 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94357" - }, - "model": "metainfo.uri", - "pk": 67692 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94358" - }, - "model": "metainfo.uri", - "pk": 67693 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94359" - }, - "model": "metainfo.uri", - "pk": 67694 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94360" - }, - "model": "metainfo.uri", - "pk": 67695 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94361" - }, - "model": "metainfo.uri", - "pk": 67696 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94362" - }, - "model": "metainfo.uri", - "pk": 67697 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94433" - }, - "model": "metainfo.uri", - "pk": 67698 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94434" - }, - "model": "metainfo.uri", - "pk": 67699 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94435" - }, - "model": "metainfo.uri", - "pk": 67700 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94436" - }, - "model": "metainfo.uri", - "pk": 67701 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94437" - }, - "model": "metainfo.uri", - "pk": 67702 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94438" - }, - "model": "metainfo.uri", - "pk": 67703 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94439" - }, - "model": "metainfo.uri", - "pk": 67704 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94440" - }, - "model": "metainfo.uri", - "pk": 67705 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94441" - }, - "model": "metainfo.uri", - "pk": 67706 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94442" - }, - "model": "metainfo.uri", - "pk": 67707 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94822" - }, - "model": "metainfo.uri", - "pk": 67708 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94823" - }, - "model": "metainfo.uri", - "pk": 67709 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94824" - }, - "model": "metainfo.uri", - "pk": 67710 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94825" - }, - "model": "metainfo.uri", - "pk": 67711 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94826" - }, - "model": "metainfo.uri", - "pk": 67712 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94827" - }, - "model": "metainfo.uri", - "pk": 67713 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94828" - }, - "model": "metainfo.uri", - "pk": 67714 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94829" - }, - "model": "metainfo.uri", - "pk": 67715 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94830" - }, - "model": "metainfo.uri", - "pk": 67716 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94831" - }, - "model": "metainfo.uri", - "pk": 67717 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94885" - }, - "model": "metainfo.uri", - "pk": 67718 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94886" - }, - "model": "metainfo.uri", - "pk": 67719 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94887" - }, - "model": "metainfo.uri", - "pk": 67720 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94888" - }, - "model": "metainfo.uri", - "pk": 67721 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94889" - }, - "model": "metainfo.uri", - "pk": 67722 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94890" - }, - "model": "metainfo.uri", - "pk": 67723 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94891" - }, - "model": "metainfo.uri", - "pk": 67724 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94892" - }, - "model": "metainfo.uri", - "pk": 67725 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94893" - }, - "model": "metainfo.uri", - "pk": 67726 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94894" - }, - "model": "metainfo.uri", - "pk": 67727 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94895" - }, - "model": "metainfo.uri", - "pk": 67728 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94896" - }, - "model": "metainfo.uri", - "pk": 67729 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94897" - }, - "model": "metainfo.uri", - "pk": 67730 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94898" - }, - "model": "metainfo.uri", - "pk": 67731 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94899" - }, - "model": "metainfo.uri", - "pk": 67732 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94900" - }, - "model": "metainfo.uri", - "pk": 67733 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94901" - }, - "model": "metainfo.uri", - "pk": 67734 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94902" - }, - "model": "metainfo.uri", - "pk": 67735 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94903" - }, - "model": "metainfo.uri", - "pk": 67736 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/94904" - }, - "model": "metainfo.uri", - "pk": 67737 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95024" - }, - "model": "metainfo.uri", - "pk": 67738 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95025" - }, - "model": "metainfo.uri", - "pk": 67739 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95026" - }, - "model": "metainfo.uri", - "pk": 67740 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95027" - }, - "model": "metainfo.uri", - "pk": 67741 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95028" - }, - "model": "metainfo.uri", - "pk": 67742 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95029" - }, - "model": "metainfo.uri", - "pk": 67743 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95030" - }, - "model": "metainfo.uri", - "pk": 67744 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95043" - }, - "model": "metainfo.uri", - "pk": 67745 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95044" - }, - "model": "metainfo.uri", - "pk": 67746 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95045" - }, - "model": "metainfo.uri", - "pk": 67747 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95046" - }, - "model": "metainfo.uri", - "pk": 67748 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95047" - }, - "model": "metainfo.uri", - "pk": 67749 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95048" - }, - "model": "metainfo.uri", - "pk": 67750 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95049" - }, - "model": "metainfo.uri", - "pk": 67751 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95050" - }, - "model": "metainfo.uri", - "pk": 67752 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95051" - }, - "model": "metainfo.uri", - "pk": 67753 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95052" - }, - "model": "metainfo.uri", - "pk": 67754 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95053" - }, - "model": "metainfo.uri", - "pk": 67755 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95054" - }, - "model": "metainfo.uri", - "pk": 67756 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95123" - }, - "model": "metainfo.uri", - "pk": 67757 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95124" - }, - "model": "metainfo.uri", - "pk": 67758 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95125" - }, - "model": "metainfo.uri", - "pk": 67759 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95126" - }, - "model": "metainfo.uri", - "pk": 67760 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95127" - }, - "model": "metainfo.uri", - "pk": 67761 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95128" - }, - "model": "metainfo.uri", - "pk": 67762 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95129" - }, - "model": "metainfo.uri", - "pk": 67763 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95130" - }, - "model": "metainfo.uri", - "pk": 67764 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95131" - }, - "model": "metainfo.uri", - "pk": 67765 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95156" - }, - "model": "metainfo.uri", - "pk": 67766 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95157" - }, - "model": "metainfo.uri", - "pk": 67767 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95158" - }, - "model": "metainfo.uri", - "pk": 67768 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95159" - }, - "model": "metainfo.uri", - "pk": 67769 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95160" - }, - "model": "metainfo.uri", - "pk": 67770 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95161" - }, - "model": "metainfo.uri", - "pk": 67771 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95162" - }, - "model": "metainfo.uri", - "pk": 67772 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95163" - }, - "model": "metainfo.uri", - "pk": 67773 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95164" - }, - "model": "metainfo.uri", - "pk": 67774 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95397" - }, - "model": "metainfo.uri", - "pk": 67775 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95398" - }, - "model": "metainfo.uri", - "pk": 67776 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95399" - }, - "model": "metainfo.uri", - "pk": 67777 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95400" - }, - "model": "metainfo.uri", - "pk": 67778 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95401" - }, - "model": "metainfo.uri", - "pk": 67779 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95402" - }, - "model": "metainfo.uri", - "pk": 67780 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95403" - }, - "model": "metainfo.uri", - "pk": 67781 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95404" - }, - "model": "metainfo.uri", - "pk": 67782 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95405" - }, - "model": "metainfo.uri", - "pk": 67783 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95406" - }, - "model": "metainfo.uri", - "pk": 67784 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95407" - }, - "model": "metainfo.uri", - "pk": 67785 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95582" - }, - "model": "metainfo.uri", - "pk": 67786 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95583" - }, - "model": "metainfo.uri", - "pk": 67787 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95584" - }, - "model": "metainfo.uri", - "pk": 67788 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95596" - }, - "model": "metainfo.uri", - "pk": 67789 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95597" - }, - "model": "metainfo.uri", - "pk": 67790 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95598" - }, - "model": "metainfo.uri", - "pk": 67791 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95599" - }, - "model": "metainfo.uri", - "pk": 67792 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95600" - }, - "model": "metainfo.uri", - "pk": 67793 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95601" - }, - "model": "metainfo.uri", - "pk": 67794 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95602" - }, - "model": "metainfo.uri", - "pk": 67795 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95603" - }, - "model": "metainfo.uri", - "pk": 67796 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95604" - }, - "model": "metainfo.uri", - "pk": 67797 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95847" - }, - "model": "metainfo.uri", - "pk": 67798 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95848" - }, - "model": "metainfo.uri", - "pk": 67799 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95867" - }, - "model": "metainfo.uri", - "pk": 67800 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95868" - }, - "model": "metainfo.uri", - "pk": 67801 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95869" - }, - "model": "metainfo.uri", - "pk": 67802 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95870" - }, - "model": "metainfo.uri", - "pk": 67803 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95871" - }, - "model": "metainfo.uri", - "pk": 67804 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95872" - }, - "model": "metainfo.uri", - "pk": 67805 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95873" - }, - "model": "metainfo.uri", - "pk": 67806 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95874" - }, - "model": "metainfo.uri", - "pk": 67807 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95875" - }, - "model": "metainfo.uri", - "pk": 67808 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95876" - }, - "model": "metainfo.uri", - "pk": 67809 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95893" - }, - "model": "metainfo.uri", - "pk": 67810 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95929" - }, - "model": "metainfo.uri", - "pk": 67811 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95930" - }, - "model": "metainfo.uri", - "pk": 67812 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95931" - }, - "model": "metainfo.uri", - "pk": 67813 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95932" - }, - "model": "metainfo.uri", - "pk": 67814 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95949" - }, - "model": "metainfo.uri", - "pk": 67815 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95950" - }, - "model": "metainfo.uri", - "pk": 67816 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95951" - }, - "model": "metainfo.uri", - "pk": 67817 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95952" - }, - "model": "metainfo.uri", - "pk": 67818 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95953" - }, - "model": "metainfo.uri", - "pk": 67819 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95954" - }, - "model": "metainfo.uri", - "pk": 67820 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95955" - }, - "model": "metainfo.uri", - "pk": 67821 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95956" - }, - "model": "metainfo.uri", - "pk": 67822 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/95957" - }, - "model": "metainfo.uri", - "pk": 67823 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96143" - }, - "model": "metainfo.uri", - "pk": 67824 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96144" - }, - "model": "metainfo.uri", - "pk": 67825 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96145" - }, - "model": "metainfo.uri", - "pk": 67826 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96146" - }, - "model": "metainfo.uri", - "pk": 67827 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96208" - }, - "model": "metainfo.uri", - "pk": 67828 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96209" - }, - "model": "metainfo.uri", - "pk": 67829 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96210" - }, - "model": "metainfo.uri", - "pk": 67830 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96211" - }, - "model": "metainfo.uri", - "pk": 67831 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96221" - }, - "model": "metainfo.uri", - "pk": 67832 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96222" - }, - "model": "metainfo.uri", - "pk": 67833 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96223" - }, - "model": "metainfo.uri", - "pk": 67834 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96224" - }, - "model": "metainfo.uri", - "pk": 67835 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96225" - }, - "model": "metainfo.uri", - "pk": 67836 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96226" - }, - "model": "metainfo.uri", - "pk": 67837 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96458" - }, - "model": "metainfo.uri", - "pk": 67838 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96459" - }, - "model": "metainfo.uri", - "pk": 67839 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96460" - }, - "model": "metainfo.uri", - "pk": 67840 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96461" - }, - "model": "metainfo.uri", - "pk": 67841 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96462" - }, - "model": "metainfo.uri", - "pk": 67842 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96463" - }, - "model": "metainfo.uri", - "pk": 67843 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96464" - }, - "model": "metainfo.uri", - "pk": 67844 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96465" - }, - "model": "metainfo.uri", - "pk": 67845 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96466" - }, - "model": "metainfo.uri", - "pk": 67846 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96467" - }, - "model": "metainfo.uri", - "pk": 67847 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96620" - }, - "model": "metainfo.uri", - "pk": 67848 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96621" - }, - "model": "metainfo.uri", - "pk": 67849 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96622" - }, - "model": "metainfo.uri", - "pk": 67850 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96623" - }, - "model": "metainfo.uri", - "pk": 67851 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96728" - }, - "model": "metainfo.uri", - "pk": 67852 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96729" - }, - "model": "metainfo.uri", - "pk": 67853 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96730" - }, - "model": "metainfo.uri", - "pk": 67854 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96731" - }, - "model": "metainfo.uri", - "pk": 67855 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96732" - }, - "model": "metainfo.uri", - "pk": 67856 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96733" - }, - "model": "metainfo.uri", - "pk": 67857 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96734" - }, - "model": "metainfo.uri", - "pk": 67858 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96735" - }, - "model": "metainfo.uri", - "pk": 67859 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96736" - }, - "model": "metainfo.uri", - "pk": 67860 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96737" - }, - "model": "metainfo.uri", - "pk": 67861 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96738" - }, - "model": "metainfo.uri", - "pk": 67862 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96740" - }, - "model": "metainfo.uri", - "pk": 67863 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96741" - }, - "model": "metainfo.uri", - "pk": 67864 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96742" - }, - "model": "metainfo.uri", - "pk": 67865 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96743" - }, - "model": "metainfo.uri", - "pk": 67866 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96744" - }, - "model": "metainfo.uri", - "pk": 67867 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96745" - }, - "model": "metainfo.uri", - "pk": 67868 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96746" - }, - "model": "metainfo.uri", - "pk": 67869 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96747" - }, - "model": "metainfo.uri", - "pk": 67870 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96748" - }, - "model": "metainfo.uri", - "pk": 67871 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96749" - }, - "model": "metainfo.uri", - "pk": 67872 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96750" - }, - "model": "metainfo.uri", - "pk": 67873 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96758" - }, - "model": "metainfo.uri", - "pk": 67874 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96759" - }, - "model": "metainfo.uri", - "pk": 67875 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96813" - }, - "model": "metainfo.uri", - "pk": 67876 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96814" - }, - "model": "metainfo.uri", - "pk": 67877 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96815" - }, - "model": "metainfo.uri", - "pk": 67878 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96816" - }, - "model": "metainfo.uri", - "pk": 67879 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96817" - }, - "model": "metainfo.uri", - "pk": 67880 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96858" - }, - "model": "metainfo.uri", - "pk": 67881 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96859" - }, - "model": "metainfo.uri", - "pk": 67882 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96860" - }, - "model": "metainfo.uri", - "pk": 67883 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96861" - }, - "model": "metainfo.uri", - "pk": 67884 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96862" - }, - "model": "metainfo.uri", - "pk": 67885 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96863" - }, - "model": "metainfo.uri", - "pk": 67886 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96864" - }, - "model": "metainfo.uri", - "pk": 67887 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96865" - }, - "model": "metainfo.uri", - "pk": 67888 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96947" - }, - "model": "metainfo.uri", - "pk": 67889 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96948" - }, - "model": "metainfo.uri", - "pk": 67890 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96949" - }, - "model": "metainfo.uri", - "pk": 67891 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96950" - }, - "model": "metainfo.uri", - "pk": 67892 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96951" - }, - "model": "metainfo.uri", - "pk": 67893 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96952" - }, - "model": "metainfo.uri", - "pk": 67894 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96953" - }, - "model": "metainfo.uri", - "pk": 67895 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96954" - }, - "model": "metainfo.uri", - "pk": 67896 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96955" - }, - "model": "metainfo.uri", - "pk": 67897 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/96956" - }, - "model": "metainfo.uri", - "pk": 67898 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97430" - }, - "model": "metainfo.uri", - "pk": 67899 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97529" - }, - "model": "metainfo.uri", - "pk": 67900 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97530" - }, - "model": "metainfo.uri", - "pk": 67901 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97531" - }, - "model": "metainfo.uri", - "pk": 67902 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97532" - }, - "model": "metainfo.uri", - "pk": 67903 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97533" - }, - "model": "metainfo.uri", - "pk": 67904 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97534" - }, - "model": "metainfo.uri", - "pk": 67905 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97578" - }, - "model": "metainfo.uri", - "pk": 67906 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97592" - }, - "model": "metainfo.uri", - "pk": 67907 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97593" - }, - "model": "metainfo.uri", - "pk": 67908 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97617" - }, - "model": "metainfo.uri", - "pk": 67909 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97623" - }, - "model": "metainfo.uri", - "pk": 67910 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97657" - }, - "model": "metainfo.uri", - "pk": 67911 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97707" - }, - "model": "metainfo.uri", - "pk": 67912 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97723" - }, - "model": "metainfo.uri", - "pk": 67913 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97753" - }, - "model": "metainfo.uri", - "pk": 67914 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97790" - }, - "model": "metainfo.uri", - "pk": 67915 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97834" - }, - "model": "metainfo.uri", - "pk": 67916 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97849" - }, - "model": "metainfo.uri", - "pk": 67917 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97884" - }, - "model": "metainfo.uri", - "pk": 67918 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97888" - }, - "model": "metainfo.uri", - "pk": 67919 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97896" - }, - "model": "metainfo.uri", - "pk": 67920 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97933" - }, - "model": "metainfo.uri", - "pk": 67921 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97943" - }, - "model": "metainfo.uri", - "pk": 67922 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97944" - }, - "model": "metainfo.uri", - "pk": 67923 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97945" - }, - "model": "metainfo.uri", - "pk": 67924 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97976" - }, - "model": "metainfo.uri", - "pk": 67925 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97977" - }, - "model": "metainfo.uri", - "pk": 67926 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/97986" - }, - "model": "metainfo.uri", - "pk": 67927 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98006" - }, - "model": "metainfo.uri", - "pk": 67928 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98024" - }, - "model": "metainfo.uri", - "pk": 67929 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98183" - }, - "model": "metainfo.uri", - "pk": 67930 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98184" - }, - "model": "metainfo.uri", - "pk": 67931 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98185" - }, - "model": "metainfo.uri", - "pk": 67932 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98237" - }, - "model": "metainfo.uri", - "pk": 67933 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98296" - }, - "model": "metainfo.uri", - "pk": 67934 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98297" - }, - "model": "metainfo.uri", - "pk": 67935 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98298" - }, - "model": "metainfo.uri", - "pk": 67936 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98299" - }, - "model": "metainfo.uri", - "pk": 67937 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98300" - }, - "model": "metainfo.uri", - "pk": 67938 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98301" - }, - "model": "metainfo.uri", - "pk": 67939 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98348" - }, - "model": "metainfo.uri", - "pk": 67940 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98551" - }, - "model": "metainfo.uri", - "pk": 67941 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98569" - }, - "model": "metainfo.uri", - "pk": 67942 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98570" - }, - "model": "metainfo.uri", - "pk": 67943 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98579" - }, - "model": "metainfo.uri", - "pk": 67944 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98580" - }, - "model": "metainfo.uri", - "pk": 67945 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98581" - }, - "model": "metainfo.uri", - "pk": 67946 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98582" - }, - "model": "metainfo.uri", - "pk": 67947 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98583" - }, - "model": "metainfo.uri", - "pk": 67948 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98584" - }, - "model": "metainfo.uri", - "pk": 67949 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98585" - }, - "model": "metainfo.uri", - "pk": 67950 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98586" - }, - "model": "metainfo.uri", - "pk": 67951 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98587" - }, - "model": "metainfo.uri", - "pk": 67952 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98588" - }, - "model": "metainfo.uri", - "pk": 67953 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98604" - }, - "model": "metainfo.uri", - "pk": 67954 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98605" - }, - "model": "metainfo.uri", - "pk": 67955 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98606" - }, - "model": "metainfo.uri", - "pk": 67956 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98696" - }, - "model": "metainfo.uri", - "pk": 67957 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98697" - }, - "model": "metainfo.uri", - "pk": 67958 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98714" - }, - "model": "metainfo.uri", - "pk": 67959 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98722" - }, - "model": "metainfo.uri", - "pk": 67960 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98723" - }, - "model": "metainfo.uri", - "pk": 67961 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98724" - }, - "model": "metainfo.uri", - "pk": 67962 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98725" - }, - "model": "metainfo.uri", - "pk": 67963 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98726" - }, - "model": "metainfo.uri", - "pk": 67964 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98727" - }, - "model": "metainfo.uri", - "pk": 67965 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98728" - }, - "model": "metainfo.uri", - "pk": 67966 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98729" - }, - "model": "metainfo.uri", - "pk": 67967 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98730" - }, - "model": "metainfo.uri", - "pk": 67968 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98731" - }, - "model": "metainfo.uri", - "pk": 67969 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98732" - }, - "model": "metainfo.uri", - "pk": 67970 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98733" - }, - "model": "metainfo.uri", - "pk": 67971 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98734" - }, - "model": "metainfo.uri", - "pk": 67972 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98735" - }, - "model": "metainfo.uri", - "pk": 67973 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98736" - }, - "model": "metainfo.uri", - "pk": 67974 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98737" - }, - "model": "metainfo.uri", - "pk": 67975 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98886" - }, - "model": "metainfo.uri", - "pk": 67976 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98891" - }, - "model": "metainfo.uri", - "pk": 67977 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98892" - }, - "model": "metainfo.uri", - "pk": 67978 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98893" - }, - "model": "metainfo.uri", - "pk": 67979 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98922" - }, - "model": "metainfo.uri", - "pk": 67980 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98923" - }, - "model": "metainfo.uri", - "pk": 67981 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98924" - }, - "model": "metainfo.uri", - "pk": 67982 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98925" - }, - "model": "metainfo.uri", - "pk": 67983 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98980" - }, - "model": "metainfo.uri", - "pk": 67984 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98990" - }, - "model": "metainfo.uri", - "pk": 67985 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98991" - }, - "model": "metainfo.uri", - "pk": 67986 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98992" - }, - "model": "metainfo.uri", - "pk": 67987 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98993" - }, - "model": "metainfo.uri", - "pk": 67988 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98994" - }, - "model": "metainfo.uri", - "pk": 67989 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98995" - }, - "model": "metainfo.uri", - "pk": 67990 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98996" - }, - "model": "metainfo.uri", - "pk": 67991 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98997" - }, - "model": "metainfo.uri", - "pk": 67992 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98998" - }, - "model": "metainfo.uri", - "pk": 67993 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/98999" - }, - "model": "metainfo.uri", - "pk": 67994 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99000" - }, - "model": "metainfo.uri", - "pk": 67995 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99001" - }, - "model": "metainfo.uri", - "pk": 67996 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99002" - }, - "model": "metainfo.uri", - "pk": 67997 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99003" - }, - "model": "metainfo.uri", - "pk": 67998 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99004" - }, - "model": "metainfo.uri", - "pk": 67999 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99005" - }, - "model": "metainfo.uri", - "pk": 68000 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99006" - }, - "model": "metainfo.uri", - "pk": 68001 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99007" - }, - "model": "metainfo.uri", - "pk": 68002 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99008" - }, - "model": "metainfo.uri", - "pk": 68003 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99009" - }, - "model": "metainfo.uri", - "pk": 68004 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99075" - }, - "model": "metainfo.uri", - "pk": 68005 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99092" - }, - "model": "metainfo.uri", - "pk": 68006 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99093" - }, - "model": "metainfo.uri", - "pk": 68007 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99094" - }, - "model": "metainfo.uri", - "pk": 68008 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99095" - }, - "model": "metainfo.uri", - "pk": 68009 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99096" - }, - "model": "metainfo.uri", - "pk": 68010 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99097" - }, - "model": "metainfo.uri", - "pk": 68011 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99098" - }, - "model": "metainfo.uri", - "pk": 68012 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99099" - }, - "model": "metainfo.uri", - "pk": 68013 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99100" - }, - "model": "metainfo.uri", - "pk": 68014 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99101" - }, - "model": "metainfo.uri", - "pk": 68015 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99102" - }, - "model": "metainfo.uri", - "pk": 68016 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99103" - }, - "model": "metainfo.uri", - "pk": 68017 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99104" - }, - "model": "metainfo.uri", - "pk": 68018 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99105" - }, - "model": "metainfo.uri", - "pk": 68019 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99106" - }, - "model": "metainfo.uri", - "pk": 68020 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99107" - }, - "model": "metainfo.uri", - "pk": 68021 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99108" - }, - "model": "metainfo.uri", - "pk": 68022 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99109" - }, - "model": "metainfo.uri", - "pk": 68023 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99110" - }, - "model": "metainfo.uri", - "pk": 68024 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99156" - }, - "model": "metainfo.uri", - "pk": 68025 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99336" - }, - "model": "metainfo.uri", - "pk": 68026 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99337" - }, - "model": "metainfo.uri", - "pk": 68027 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99352" - }, - "model": "metainfo.uri", - "pk": 68028 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99353" - }, - "model": "metainfo.uri", - "pk": 68029 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99354" - }, - "model": "metainfo.uri", - "pk": 68030 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99355" - }, - "model": "metainfo.uri", - "pk": 68031 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99356" - }, - "model": "metainfo.uri", - "pk": 68032 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99357" - }, - "model": "metainfo.uri", - "pk": 68033 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99358" - }, - "model": "metainfo.uri", - "pk": 68034 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99369" - }, - "model": "metainfo.uri", - "pk": 68035 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99370" - }, - "model": "metainfo.uri", - "pk": 68036 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99371" - }, - "model": "metainfo.uri", - "pk": 68037 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99372" - }, - "model": "metainfo.uri", - "pk": 68038 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99373" - }, - "model": "metainfo.uri", - "pk": 68039 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99374" - }, - "model": "metainfo.uri", - "pk": 68040 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99375" - }, - "model": "metainfo.uri", - "pk": 68041 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99376" - }, - "model": "metainfo.uri", - "pk": 68042 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99377" - }, - "model": "metainfo.uri", - "pk": 68043 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99378" - }, - "model": "metainfo.uri", - "pk": 68044 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99416" - }, - "model": "metainfo.uri", - "pk": 68045 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99417" - }, - "model": "metainfo.uri", - "pk": 68046 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99418" - }, - "model": "metainfo.uri", - "pk": 68047 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99419" - }, - "model": "metainfo.uri", - "pk": 68048 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99420" - }, - "model": "metainfo.uri", - "pk": 68049 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99421" - }, - "model": "metainfo.uri", - "pk": 68050 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99422" - }, - "model": "metainfo.uri", - "pk": 68051 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99423" - }, - "model": "metainfo.uri", - "pk": 68052 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99744" - }, - "model": "metainfo.uri", - "pk": 68053 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99841" - }, - "model": "metainfo.uri", - "pk": 68054 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99842" - }, - "model": "metainfo.uri", - "pk": 68055 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99843" - }, - "model": "metainfo.uri", - "pk": 68056 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99844" - }, - "model": "metainfo.uri", - "pk": 68057 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99845" - }, - "model": "metainfo.uri", - "pk": 68058 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99846" - }, - "model": "metainfo.uri", - "pk": 68059 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99847" - }, - "model": "metainfo.uri", - "pk": 68060 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99848" - }, - "model": "metainfo.uri", - "pk": 68061 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99849" - }, - "model": "metainfo.uri", - "pk": 68062 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99850" - }, - "model": "metainfo.uri", - "pk": 68063 - }, - { - "fields": { - "domain": "apis default", - "entity": null, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99852" - }, - "model": "metainfo.uri", - "pk": 68064 - }, - { - "fields": { - "domain": "apis default", - "entity": 99872, - "loaded": false, - "loaded_time": null, - "rdf_link": "", - "uri": "https://apis.eos.arz.oeaw.ac.at/entity/99872" - }, - "model": "metainfo.uri", - "pk": 68065 - }, - { - "fields": { - "confidence": 38.330826, - "entity": 93060, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/3075069/" - }, - "model": "metainfo.uricandidate", - "pk": 3373 - }, - { - "fields": { - "confidence": 38.330826, - "entity": 93060, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/3075073/" - }, - "model": "metainfo.uricandidate", - "pk": 3374 - }, - { - "fields": { - "confidence": 36.39077, - "entity": 93060, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/3064955/" - }, - "model": "metainfo.uricandidate", - "pk": 3375 - }, - { - "fields": { - "confidence": 27.023357, - "entity": 93060, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/3064682/" - }, - "model": "metainfo.uricandidate", - "pk": 3376 - }, - { - "fields": { - "confidence": 42.59393, - "entity": 93410, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/8987526/" - }, - "model": "metainfo.uricandidate", - "pk": 3392 - }, - { - "fields": { - "confidence": 42.59393, - "entity": 93410, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/8988006/" - }, - "model": "metainfo.uricandidate", - "pk": 3393 - }, - { - "fields": { - "confidence": 36.04053, - "entity": 93410, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/3187442/" - }, - "model": "metainfo.uricandidate", - "pk": 3394 - }, - { - "fields": { - "confidence": 55.56808, - "entity": 93934, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/710232/" - }, - "model": "metainfo.uricandidate", - "pk": 3427 - }, - { - "fields": { - "confidence": 55.56808, - "entity": 93934, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/710234/" - }, - "model": "metainfo.uricandidate", - "pk": 3428 - }, - { - "fields": { - "confidence": 55.56808, - "entity": 93934, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/710242/" - }, - "model": "metainfo.uricandidate", - "pk": 3429 - }, - { - "fields": { - "confidence": 55.56808, - "entity": 93934, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/710241/" - }, - "model": "metainfo.uricandidate", - "pk": 3430 - }, - { - "fields": { - "confidence": 55.56808, - "entity": 93934, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/810113/" - }, - "model": "metainfo.uricandidate", - "pk": 3431 - }, - { - "fields": { - "confidence": 55.56808, - "entity": 93934, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/8468002/" - }, - "model": "metainfo.uricandidate", - "pk": 3432 - }, - { - "fields": { - "confidence": 39.944958, - "entity": 93934, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/710235/" - }, - "model": "metainfo.uricandidate", - "pk": 3433 - }, - { - "fields": { - "confidence": 39.944958, - "entity": 93934, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/710243/" - }, - "model": "metainfo.uricandidate", - "pk": 3434 - }, - { - "fields": { - "confidence": 37.787853, - "entity": 93934, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/697446/" - }, - "model": "metainfo.uricandidate", - "pk": 3435 - }, - { - "fields": { - "confidence": 37.787853, - "entity": 93934, - "responsible": "stanbol", - "uri": "http://sws.geonames.org/687982/" - }, - "model": "metainfo.uricandidate", - "pk": 3436 - }, - { - "fields": { - "project": 1, - "text": "", - "text_class": "obl-haupttext", - "text_id": null, - "text_type": "cl", - "title": "ÖBL Haupttext", - "uri": "" - }, - "model": "highlighter.texthigh", - "pk": 1 - }, - { - "fields": { - "project": 1, - "text": "", - "text_class": "obl-kurzinfo", - "text_id": null, - "text_type": "cl", - "title": "Öbl Kurzinfo", - "uri": "" - }, - "model": "highlighter.texthigh", - "pk": 2 - }, - { - "fields": { - "description": "We need an annotation project for every annotation. Thus the default project.", - "name": "Default" - }, - "model": "highlighter.annotationproject", - "pk": 1 - }, - { - "fields": { - "api_endpoint": "PersonPlaceHighlighterForm", - "method": "l", - "name": "Person Place Form" - }, - "model": "highlighter.vocabularyapi", - "pk": 1 - }, - { - "fields": { - "api_endpoint": "PersonInstitutionHighlighterForm", - "method": "l", - "name": "Person Institution Form" - }, - "model": "highlighter.vocabularyapi", - "pk": 2 - }, - { - "fields": { - "api_endpoint": "PersonPersonHighlighterForm", - "method": "l", - "name": "Person Person Form" - }, - "model": "highlighter.vocabularyapi", - "pk": 3 - }, - { - "fields": { - "api": 1, - "kind": "frm", - "name": "Person Place Relation", - "parent": null, - "project": 1 - }, - "model": "highlighter.menuentry", - "pk": 1 - }, - { - "fields": { - "api": 2, - "kind": "frm", - "name": "Person Institution Relation", - "parent": null, - "project": 1 - }, - "model": "highlighter.menuentry", - "pk": 2 - }, - { - "fields": { - "api": 3, - "kind": "frm", - "name": "Person Person Relation", - "parent": null, - "project": 1 - }, - "model": "highlighter.menuentry", - "pk": 3 - }, - { - "fields": { - "codename": "add_logentry", - "content_type": 1, - "name": "Can add log entry" - }, - "model": "auth.permission", - "pk": 1 - }, - { - "fields": { - "codename": "change_logentry", - "content_type": 1, - "name": "Can change log entry" - }, - "model": "auth.permission", - "pk": 2 - }, - { - "fields": { - "codename": "delete_logentry", - "content_type": 1, - "name": "Can delete log entry" - }, - "model": "auth.permission", - "pk": 3 - }, - { - "fields": { - "codename": "add_permission", - "content_type": 2, - "name": "Can add permission" - }, - "model": "auth.permission", - "pk": 4 - }, - { - "fields": { - "codename": "change_permission", - "content_type": 2, - "name": "Can change permission" - }, - "model": "auth.permission", - "pk": 5 - }, - { - "fields": { - "codename": "delete_permission", - "content_type": 2, - "name": "Can delete permission" - }, - "model": "auth.permission", - "pk": 6 - }, - { - "fields": { - "codename": "add_group", - "content_type": 3, - "name": "Can add group" - }, - "model": "auth.permission", - "pk": 7 - }, - { - "fields": { - "codename": "change_group", - "content_type": 3, - "name": "Can change group" - }, - "model": "auth.permission", - "pk": 8 - }, - { - "fields": { - "codename": "delete_group", - "content_type": 3, - "name": "Can delete group" - }, - "model": "auth.permission", - "pk": 9 - }, - { - "fields": { - "codename": "add_user", - "content_type": 4, - "name": "Can add user" - }, - "model": "auth.permission", - "pk": 10 - }, - { - "fields": { - "codename": "change_user", - "content_type": 4, - "name": "Can change user" - }, - "model": "auth.permission", - "pk": 11 - }, - { - "fields": { - "codename": "delete_user", - "content_type": 4, - "name": "Can delete user" - }, - "model": "auth.permission", - "pk": 12 - }, - { - "fields": { - "codename": "add_contenttype", - "content_type": 5, - "name": "Can add content type" - }, - "model": "auth.permission", - "pk": 13 - }, - { - "fields": { - "codename": "change_contenttype", - "content_type": 5, - "name": "Can change content type" - }, - "model": "auth.permission", - "pk": 14 - }, - { - "fields": { - "codename": "delete_contenttype", - "content_type": 5, - "name": "Can delete content type" - }, - "model": "auth.permission", - "pk": 15 - }, - { - "fields": { - "codename": "add_session", - "content_type": 6, - "name": "Can add session" - }, - "model": "auth.permission", - "pk": 16 - }, - { - "fields": { - "codename": "change_session", - "content_type": 6, - "name": "Can change session" - }, - "model": "auth.permission", - "pk": 17 - }, - { - "fields": { - "codename": "delete_session", - "content_type": 6, - "name": "Can delete session" - }, - "model": "auth.permission", - "pk": 18 - }, - { - "fields": { - "codename": "add_label", - "content_type": 7, - "name": "Can add label" - }, - "model": "auth.permission", - "pk": 19 - }, - { - "fields": { - "codename": "change_label", - "content_type": 7, - "name": "Can change label" - }, - "model": "auth.permission", - "pk": 20 - }, - { - "fields": { - "codename": "delete_label", - "content_type": 7, - "name": "Can delete label" - }, - "model": "auth.permission", - "pk": 21 - }, - { - "fields": { - "codename": "add_person", - "content_type": 8, - "name": "Can add person" - }, - "model": "auth.permission", - "pk": 22 - }, - { - "fields": { - "codename": "change_person", - "content_type": 8, - "name": "Can change person" - }, - "model": "auth.permission", - "pk": 23 - }, - { - "fields": { - "codename": "delete_person", - "content_type": 8, - "name": "Can delete person" - }, - "model": "auth.permission", - "pk": 24 - }, - { - "fields": { - "codename": "add_place", - "content_type": 9, - "name": "Can add place" - }, - "model": "auth.permission", - "pk": 25 - }, - { - "fields": { - "codename": "change_place", - "content_type": 9, - "name": "Can change place" - }, - "model": "auth.permission", - "pk": 26 - }, - { - "fields": { - "codename": "delete_place", - "content_type": 9, - "name": "Can delete place" - }, - "model": "auth.permission", - "pk": 27 - }, - { - "fields": { - "codename": "add_institution", - "content_type": 10, - "name": "Can add institution" - }, - "model": "auth.permission", - "pk": 28 - }, - { - "fields": { - "codename": "change_institution", - "content_type": 10, - "name": "Can change institution" - }, - "model": "auth.permission", - "pk": 29 - }, - { - "fields": { - "codename": "delete_institution", - "content_type": 10, - "name": "Can delete institution" - }, - "model": "auth.permission", - "pk": 30 - }, - { - "fields": { - "codename": "add_event", - "content_type": 11, - "name": "Can add event" - }, - "model": "auth.permission", - "pk": 31 - }, - { - "fields": { - "codename": "change_event", - "content_type": 11, - "name": "Can change event" - }, - "model": "auth.permission", - "pk": 32 - }, - { - "fields": { - "codename": "delete_event", - "content_type": 11, - "name": "Can delete event" - }, - "model": "auth.permission", - "pk": 33 - }, - { - "fields": { - "codename": "add_work", - "content_type": 12, - "name": "Can add work" - }, - "model": "auth.permission", - "pk": 34 - }, - { - "fields": { - "codename": "change_work", - "content_type": 12, - "name": "Can change work" - }, - "model": "auth.permission", - "pk": 35 - }, - { - "fields": { - "codename": "delete_work", - "content_type": 12, - "name": "Can delete work" - }, - "model": "auth.permission", - "pk": 36 - }, - { - "fields": { - "codename": "add_vocabsbaseclass", - "content_type": 13, - "name": "Can add vocabs base class" - }, - "model": "auth.permission", - "pk": 37 - }, - { - "fields": { - "codename": "change_vocabsbaseclass", - "content_type": 13, - "name": "Can change vocabs base class" - }, - "model": "auth.permission", - "pk": 38 - }, - { - "fields": { - "codename": "delete_vocabsbaseclass", - "content_type": 13, - "name": "Can delete vocabs base class" - }, - "model": "auth.permission", - "pk": 39 - }, - { - "fields": { - "codename": "add_relationbaseclass", - "content_type": 14, - "name": "Can add relation base class" - }, - "model": "auth.permission", - "pk": 40 - }, - { - "fields": { - "codename": "change_relationbaseclass", - "content_type": 14, - "name": "Can change relation base class" - }, - "model": "auth.permission", - "pk": 41 - }, - { - "fields": { - "codename": "delete_relationbaseclass", - "content_type": 14, - "name": "Can delete relation base class" - }, - "model": "auth.permission", - "pk": 42 - }, - { - "fields": { - "codename": "add_vocabsuri", - "content_type": 15, - "name": "Can add vocabs uri" - }, - "model": "auth.permission", - "pk": 43 - }, - { - "fields": { - "codename": "change_vocabsuri", - "content_type": 15, - "name": "Can change vocabs uri" - }, - "model": "auth.permission", - "pk": 44 - }, - { - "fields": { - "codename": "delete_vocabsuri", - "content_type": 15, - "name": "Can delete vocabs uri" - }, - "model": "auth.permission", - "pk": 45 - }, - { - "fields": { - "codename": "add_worktype", - "content_type": 16, - "name": "Can add work type" - }, - "model": "auth.permission", - "pk": 46 - }, - { - "fields": { - "codename": "change_worktype", - "content_type": 16, - "name": "Can change work type" - }, - "model": "auth.permission", - "pk": 47 - }, - { - "fields": { - "codename": "delete_worktype", - "content_type": 16, - "name": "Can delete work type" - }, - "model": "auth.permission", - "pk": 48 - }, - { - "fields": { - "codename": "add_title", - "content_type": 17, - "name": "Can add title" - }, - "model": "auth.permission", - "pk": 49 - }, - { - "fields": { - "codename": "change_title", - "content_type": 17, - "name": "Can change title" - }, - "model": "auth.permission", - "pk": 50 - }, - { - "fields": { - "codename": "delete_title", - "content_type": 17, - "name": "Can delete title" - }, - "model": "auth.permission", - "pk": 51 - }, - { - "fields": { - "codename": "add_professiontype", - "content_type": 18, - "name": "Can add profession type" - }, - "model": "auth.permission", - "pk": 52 - }, - { - "fields": { - "codename": "change_professiontype", - "content_type": 18, - "name": "Can change profession type" - }, - "model": "auth.permission", - "pk": 53 - }, - { - "fields": { - "codename": "delete_professiontype", - "content_type": 18, - "name": "Can delete profession type" - }, - "model": "auth.permission", - "pk": 54 - }, - { - "fields": { - "codename": "add_placetype", - "content_type": 19, - "name": "Can add place type" - }, - "model": "auth.permission", - "pk": 55 - }, - { - "fields": { - "codename": "change_placetype", - "content_type": 19, - "name": "Can change place type" - }, - "model": "auth.permission", - "pk": 56 - }, - { - "fields": { - "codename": "delete_placetype", - "content_type": 19, - "name": "Can delete place type" - }, - "model": "auth.permission", - "pk": 57 - }, - { - "fields": { - "codename": "add_institutiontype", - "content_type": 20, - "name": "Can add institution type" - }, - "model": "auth.permission", - "pk": 58 - }, - { - "fields": { - "codename": "change_institutiontype", - "content_type": 20, - "name": "Can change institution type" - }, - "model": "auth.permission", - "pk": 59 - }, - { - "fields": { - "codename": "delete_institutiontype", - "content_type": 20, - "name": "Can delete institution type" - }, - "model": "auth.permission", - "pk": 60 - }, - { - "fields": { - "codename": "add_eventtype", - "content_type": 21, - "name": "Can add event type" - }, - "model": "auth.permission", - "pk": 61 - }, - { - "fields": { - "codename": "change_eventtype", - "content_type": 21, - "name": "Can change event type" - }, - "model": "auth.permission", - "pk": 62 - }, - { - "fields": { - "codename": "delete_eventtype", - "content_type": 21, - "name": "Can delete event type" - }, - "model": "auth.permission", - "pk": 63 - }, - { - "fields": { - "codename": "add_labeltype", - "content_type": 22, - "name": "Can add label type" - }, - "model": "auth.permission", - "pk": 64 - }, - { - "fields": { - "codename": "change_labeltype", - "content_type": 22, - "name": "Can change label type" - }, - "model": "auth.permission", - "pk": 65 - }, - { - "fields": { - "codename": "delete_labeltype", - "content_type": 22, - "name": "Can delete label type" - }, - "model": "auth.permission", - "pk": 66 - }, - { - "fields": { - "codename": "add_collectiontype", - "content_type": 23, - "name": "Can add collection type" - }, - "model": "auth.permission", - "pk": 67 - }, - { - "fields": { - "codename": "change_collectiontype", - "content_type": 23, - "name": "Can change collection type" - }, - "model": "auth.permission", - "pk": 68 - }, - { - "fields": { - "codename": "delete_collectiontype", - "content_type": 23, - "name": "Can delete collection type" - }, - "model": "auth.permission", - "pk": 69 - }, - { - "fields": { - "codename": "add_texttype", - "content_type": 24, - "name": "Can add text type" - }, - "model": "auth.permission", - "pk": 70 - }, - { - "fields": { - "codename": "change_texttype", - "content_type": 24, - "name": "Can change text type" - }, - "model": "auth.permission", - "pk": 71 - }, - { - "fields": { - "codename": "delete_texttype", - "content_type": 24, - "name": "Can delete text type" - }, - "model": "auth.permission", - "pk": 72 - }, - { - "fields": { - "codename": "add_personpersonrelation", - "content_type": 25, - "name": "Can add person person relation" - }, - "model": "auth.permission", - "pk": 73 - }, - { - "fields": { - "codename": "change_personpersonrelation", - "content_type": 25, - "name": "Can change person person relation" - }, - "model": "auth.permission", - "pk": 74 - }, - { - "fields": { - "codename": "delete_personpersonrelation", - "content_type": 25, - "name": "Can delete person person relation" - }, - "model": "auth.permission", - "pk": 75 - }, - { - "fields": { - "codename": "add_personplacerelation", - "content_type": 26, - "name": "Can add person place relation" - }, - "model": "auth.permission", - "pk": 76 - }, - { - "fields": { - "codename": "change_personplacerelation", - "content_type": 26, - "name": "Can change person place relation" - }, - "model": "auth.permission", - "pk": 77 - }, - { - "fields": { - "codename": "delete_personplacerelation", - "content_type": 26, - "name": "Can delete person place relation" - }, - "model": "auth.permission", - "pk": 78 - }, - { - "fields": { - "codename": "add_personinstitutionrelation", - "content_type": 27, - "name": "Can add person institution relation" - }, - "model": "auth.permission", - "pk": 79 - }, - { - "fields": { - "codename": "change_personinstitutionrelation", - "content_type": 27, - "name": "Can change person institution relation" - }, - "model": "auth.permission", - "pk": 80 - }, - { - "fields": { - "codename": "delete_personinstitutionrelation", - "content_type": 27, - "name": "Can delete person institution relation" - }, - "model": "auth.permission", - "pk": 81 - }, - { - "fields": { - "codename": "add_personeventrelation", - "content_type": 28, - "name": "Can add person event relation" - }, - "model": "auth.permission", - "pk": 82 - }, - { - "fields": { - "codename": "change_personeventrelation", - "content_type": 28, - "name": "Can change person event relation" - }, - "model": "auth.permission", - "pk": 83 - }, - { - "fields": { - "codename": "delete_personeventrelation", - "content_type": 28, - "name": "Can delete person event relation" - }, - "model": "auth.permission", - "pk": 84 - }, - { - "fields": { - "codename": "add_personworkrelation", - "content_type": 29, - "name": "Can add person work relation" - }, - "model": "auth.permission", - "pk": 85 - }, - { - "fields": { - "codename": "change_personworkrelation", - "content_type": 29, - "name": "Can change person work relation" - }, - "model": "auth.permission", - "pk": 86 - }, - { - "fields": { - "codename": "delete_personworkrelation", - "content_type": 29, - "name": "Can delete person work relation" - }, - "model": "auth.permission", - "pk": 87 - }, - { - "fields": { - "codename": "add_institutioneventrelation", - "content_type": 30, - "name": "Can add institution event relation" - }, - "model": "auth.permission", - "pk": 88 - }, - { - "fields": { - "codename": "change_institutioneventrelation", - "content_type": 30, - "name": "Can change institution event relation" - }, - "model": "auth.permission", - "pk": 89 - }, - { - "fields": { - "codename": "delete_institutioneventrelation", - "content_type": 30, - "name": "Can delete institution event relation" - }, - "model": "auth.permission", - "pk": 90 - }, - { - "fields": { - "codename": "add_institutionplacerelation", - "content_type": 31, - "name": "Can add institution place relation" - }, - "model": "auth.permission", - "pk": 91 - }, - { - "fields": { - "codename": "change_institutionplacerelation", - "content_type": 31, - "name": "Can change institution place relation" - }, - "model": "auth.permission", - "pk": 92 - }, - { - "fields": { - "codename": "delete_institutionplacerelation", - "content_type": 31, - "name": "Can delete institution place relation" - }, - "model": "auth.permission", - "pk": 93 - }, - { - "fields": { - "codename": "add_institutioninstitutionrelation", - "content_type": 32, - "name": "Can add institution institution relation" - }, - "model": "auth.permission", - "pk": 94 - }, - { - "fields": { - "codename": "change_institutioninstitutionrelation", - "content_type": 32, - "name": "Can change institution institution relation" - }, - "model": "auth.permission", - "pk": 95 - }, - { - "fields": { - "codename": "delete_institutioninstitutionrelation", - "content_type": 32, - "name": "Can delete institution institution relation" - }, - "model": "auth.permission", - "pk": 96 - }, - { - "fields": { - "codename": "add_placeplacerelation", - "content_type": 33, - "name": "Can add place place relation" - }, - "model": "auth.permission", - "pk": 97 - }, - { - "fields": { - "codename": "change_placeplacerelation", - "content_type": 33, - "name": "Can change place place relation" - }, - "model": "auth.permission", - "pk": 98 - }, - { - "fields": { - "codename": "delete_placeplacerelation", - "content_type": 33, - "name": "Can delete place place relation" - }, - "model": "auth.permission", - "pk": 99 - }, - { - "fields": { - "codename": "add_placeeventrelation", - "content_type": 34, - "name": "Can add place event relation" - }, - "model": "auth.permission", - "pk": 100 - }, - { - "fields": { - "codename": "change_placeeventrelation", - "content_type": 34, - "name": "Can change place event relation" - }, - "model": "auth.permission", - "pk": 101 - }, - { - "fields": { - "codename": "delete_placeeventrelation", - "content_type": 34, - "name": "Can delete place event relation" - }, - "model": "auth.permission", - "pk": 102 - }, - { - "fields": { - "codename": "add_placeworkrelation", - "content_type": 35, - "name": "Can add place work relation" - }, - "model": "auth.permission", - "pk": 103 - }, - { - "fields": { - "codename": "change_placeworkrelation", - "content_type": 35, - "name": "Can change place work relation" - }, - "model": "auth.permission", - "pk": 104 - }, - { - "fields": { - "codename": "delete_placeworkrelation", - "content_type": 35, - "name": "Can delete place work relation" - }, - "model": "auth.permission", - "pk": 105 - }, - { - "fields": { - "codename": "add_eventeventrelation", - "content_type": 36, - "name": "Can add event event relation" - }, - "model": "auth.permission", - "pk": 106 - }, - { - "fields": { - "codename": "change_eventeventrelation", - "content_type": 36, - "name": "Can change event event relation" - }, - "model": "auth.permission", - "pk": 107 - }, - { - "fields": { - "codename": "delete_eventeventrelation", - "content_type": 36, - "name": "Can delete event event relation" - }, - "model": "auth.permission", - "pk": 108 - }, - { - "fields": { - "codename": "add_eventworkrelation", - "content_type": 37, - "name": "Can add event work relation" - }, - "model": "auth.permission", - "pk": 109 - }, - { - "fields": { - "codename": "change_eventworkrelation", - "content_type": 37, - "name": "Can change event work relation" - }, - "model": "auth.permission", - "pk": 110 - }, - { - "fields": { - "codename": "delete_eventworkrelation", - "content_type": 37, - "name": "Can delete event work relation" - }, - "model": "auth.permission", - "pk": 111 - }, - { - "fields": { - "codename": "add_workworkrelation", - "content_type": 38, - "name": "Can add work work relation" - }, - "model": "auth.permission", - "pk": 112 - }, - { - "fields": { - "codename": "change_workworkrelation", - "content_type": 38, - "name": "Can change work work relation" - }, - "model": "auth.permission", - "pk": 113 - }, - { - "fields": { - "codename": "delete_workworkrelation", - "content_type": 38, - "name": "Can delete work work relation" - }, - "model": "auth.permission", - "pk": 114 - }, - { - "fields": { - "codename": "add_personperson", - "content_type": 39, - "name": "Can add person person" - }, - "model": "auth.permission", - "pk": 115 - }, - { - "fields": { - "codename": "change_personperson", - "content_type": 39, - "name": "Can change person person" - }, - "model": "auth.permission", - "pk": 116 - }, - { - "fields": { - "codename": "delete_personperson", - "content_type": 39, - "name": "Can delete person person" - }, - "model": "auth.permission", - "pk": 117 - }, - { - "fields": { - "codename": "add_personplace", - "content_type": 40, - "name": "Can add person place" - }, - "model": "auth.permission", - "pk": 118 - }, - { - "fields": { - "codename": "change_personplace", - "content_type": 40, - "name": "Can change person place" - }, - "model": "auth.permission", - "pk": 119 - }, - { - "fields": { - "codename": "delete_personplace", - "content_type": 40, - "name": "Can delete person place" - }, - "model": "auth.permission", - "pk": 120 - }, - { - "fields": { - "codename": "add_personinstitution", - "content_type": 41, - "name": "Can add person institution" - }, - "model": "auth.permission", - "pk": 121 - }, - { - "fields": { - "codename": "change_personinstitution", - "content_type": 41, - "name": "Can change person institution" - }, - "model": "auth.permission", - "pk": 122 - }, - { - "fields": { - "codename": "delete_personinstitution", - "content_type": 41, - "name": "Can delete person institution" - }, - "model": "auth.permission", - "pk": 123 - }, - { - "fields": { - "codename": "add_personevent", - "content_type": 42, - "name": "Can add person event" - }, - "model": "auth.permission", - "pk": 124 - }, - { - "fields": { - "codename": "change_personevent", - "content_type": 42, - "name": "Can change person event" - }, - "model": "auth.permission", - "pk": 125 - }, - { - "fields": { - "codename": "delete_personevent", - "content_type": 42, - "name": "Can delete person event" - }, - "model": "auth.permission", - "pk": 126 - }, - { - "fields": { - "codename": "add_personwork", - "content_type": 43, - "name": "Can add person work" - }, - "model": "auth.permission", - "pk": 127 - }, - { - "fields": { - "codename": "change_personwork", - "content_type": 43, - "name": "Can change person work" - }, - "model": "auth.permission", - "pk": 128 - }, - { - "fields": { - "codename": "delete_personwork", - "content_type": 43, - "name": "Can delete person work" - }, - "model": "auth.permission", - "pk": 129 - }, - { - "fields": { - "codename": "add_institutioninstitution", - "content_type": 44, - "name": "Can add institution institution" - }, - "model": "auth.permission", - "pk": 130 - }, - { - "fields": { - "codename": "change_institutioninstitution", - "content_type": 44, - "name": "Can change institution institution" - }, - "model": "auth.permission", - "pk": 131 - }, - { - "fields": { - "codename": "delete_institutioninstitution", - "content_type": 44, - "name": "Can delete institution institution" - }, - "model": "auth.permission", - "pk": 132 - }, - { - "fields": { - "codename": "add_institutionplace", - "content_type": 45, - "name": "Can add institution place" - }, - "model": "auth.permission", - "pk": 133 - }, - { - "fields": { - "codename": "change_institutionplace", - "content_type": 45, - "name": "Can change institution place" - }, - "model": "auth.permission", - "pk": 134 - }, - { - "fields": { - "codename": "delete_institutionplace", - "content_type": 45, - "name": "Can delete institution place" - }, - "model": "auth.permission", - "pk": 135 - }, - { - "fields": { - "codename": "add_institutionevent", - "content_type": 46, - "name": "Can add institution event" - }, - "model": "auth.permission", - "pk": 136 - }, - { - "fields": { - "codename": "change_institutionevent", - "content_type": 46, - "name": "Can change institution event" - }, - "model": "auth.permission", - "pk": 137 - }, - { - "fields": { - "codename": "delete_institutionevent", - "content_type": 46, - "name": "Can delete institution event" - }, - "model": "auth.permission", - "pk": 138 - }, - { - "fields": { - "codename": "add_institutionwork", - "content_type": 47, - "name": "Can add institution work" - }, - "model": "auth.permission", - "pk": 139 - }, - { - "fields": { - "codename": "change_institutionwork", - "content_type": 47, - "name": "Can change institution work" - }, - "model": "auth.permission", - "pk": 140 - }, - { - "fields": { - "codename": "delete_institutionwork", - "content_type": 47, - "name": "Can delete institution work" - }, - "model": "auth.permission", - "pk": 141 - }, - { - "fields": { - "codename": "add_placeplace", - "content_type": 48, - "name": "Can add place place" - }, - "model": "auth.permission", - "pk": 142 - }, - { - "fields": { - "codename": "change_placeplace", - "content_type": 48, - "name": "Can change place place" - }, - "model": "auth.permission", - "pk": 143 - }, - { - "fields": { - "codename": "delete_placeplace", - "content_type": 48, - "name": "Can delete place place" - }, - "model": "auth.permission", - "pk": 144 - }, - { - "fields": { - "codename": "add_placeevent", - "content_type": 49, - "name": "Can add place event" - }, - "model": "auth.permission", - "pk": 145 - }, - { - "fields": { - "codename": "change_placeevent", - "content_type": 49, - "name": "Can change place event" - }, - "model": "auth.permission", - "pk": 146 - }, - { - "fields": { - "codename": "delete_placeevent", - "content_type": 49, - "name": "Can delete place event" - }, - "model": "auth.permission", - "pk": 147 - }, - { - "fields": { - "codename": "add_placework", - "content_type": 50, - "name": "Can add place work" - }, - "model": "auth.permission", - "pk": 148 - }, - { - "fields": { - "codename": "change_placework", - "content_type": 50, - "name": "Can change place work" - }, - "model": "auth.permission", - "pk": 149 - }, - { - "fields": { - "codename": "delete_placework", - "content_type": 50, - "name": "Can delete place work" - }, - "model": "auth.permission", - "pk": 150 - }, - { - "fields": { - "codename": "add_eventevent", - "content_type": 51, - "name": "Can add event event" - }, - "model": "auth.permission", - "pk": 151 - }, - { - "fields": { - "codename": "change_eventevent", - "content_type": 51, - "name": "Can change event event" - }, - "model": "auth.permission", - "pk": 152 - }, - { - "fields": { - "codename": "delete_eventevent", - "content_type": 51, - "name": "Can delete event event" - }, - "model": "auth.permission", - "pk": 153 - }, - { - "fields": { - "codename": "add_eventwork", - "content_type": 52, - "name": "Can add event work" - }, - "model": "auth.permission", - "pk": 154 - }, - { - "fields": { - "codename": "change_eventwork", - "content_type": 52, - "name": "Can change event work" - }, - "model": "auth.permission", - "pk": 155 - }, - { - "fields": { - "codename": "delete_eventwork", - "content_type": 52, - "name": "Can delete event work" - }, - "model": "auth.permission", - "pk": 156 - }, - { - "fields": { - "codename": "add_workwork", - "content_type": 53, - "name": "Can add work work" - }, - "model": "auth.permission", - "pk": 157 - }, - { - "fields": { - "codename": "change_workwork", - "content_type": 53, - "name": "Can change work work" - }, - "model": "auth.permission", - "pk": 158 - }, - { - "fields": { - "codename": "delete_workwork", - "content_type": 53, - "name": "Can delete work work" - }, - "model": "auth.permission", - "pk": 159 - }, - { - "fields": { - "codename": "add_tempentityclass", - "content_type": 54, - "name": "Can add temp entity class" - }, - "model": "auth.permission", - "pk": 160 - }, - { - "fields": { - "codename": "change_tempentityclass", - "content_type": 54, - "name": "Can change temp entity class" - }, - "model": "auth.permission", - "pk": 161 - }, - { - "fields": { - "codename": "delete_tempentityclass", - "content_type": 54, - "name": "Can delete temp entity class" - }, - "model": "auth.permission", - "pk": 162 - }, - { - "fields": { - "codename": "add_source", - "content_type": 55, - "name": "Can add source" - }, - "model": "auth.permission", - "pk": 163 - }, - { - "fields": { - "codename": "change_source", - "content_type": 55, - "name": "Can change source" - }, - "model": "auth.permission", - "pk": 164 - }, - { - "fields": { - "codename": "delete_source", - "content_type": 55, - "name": "Can delete source" - }, - "model": "auth.permission", - "pk": 165 - }, - { - "fields": { - "codename": "add_collection", - "content_type": 56, - "name": "Can add collection" - }, - "model": "auth.permission", - "pk": 166 - }, - { - "fields": { - "codename": "change_collection", - "content_type": 56, - "name": "Can change collection" - }, - "model": "auth.permission", - "pk": 167 - }, - { - "fields": { - "codename": "delete_collection", - "content_type": 56, - "name": "Can delete collection" - }, - "model": "auth.permission", - "pk": 168 - }, - { - "fields": { - "codename": "add_text", - "content_type": 57, - "name": "Can add text" - }, - "model": "auth.permission", - "pk": 169 - }, - { - "fields": { - "codename": "change_text", - "content_type": 57, - "name": "Can change text" - }, - "model": "auth.permission", - "pk": 170 - }, - { - "fields": { - "codename": "delete_text", - "content_type": 57, - "name": "Can delete text" - }, - "model": "auth.permission", - "pk": 171 - }, - { - "fields": { - "codename": "add_uri", - "content_type": 58, - "name": "Can add uri" - }, - "model": "auth.permission", - "pk": 172 - }, - { - "fields": { - "codename": "change_uri", - "content_type": 58, - "name": "Can change uri" - }, - "model": "auth.permission", - "pk": 173 - }, - { - "fields": { - "codename": "delete_uri", - "content_type": 58, - "name": "Can delete uri" - }, - "model": "auth.permission", - "pk": 174 - }, - { - "fields": { - "codename": "add_project", - "content_type": 61, - "name": "Can add project" - }, - "model": "auth.permission", - "pk": 181 - }, - { - "fields": { - "codename": "change_project", - "content_type": 61, - "name": "Can change project" - }, - "model": "auth.permission", - "pk": 182 - }, - { - "fields": { - "codename": "delete_project", - "content_type": 61, - "name": "Can delete project" - }, - "model": "auth.permission", - "pk": 183 - }, - { - "fields": { - "codename": "add_annotation", - "content_type": 63, - "name": "Can add annotation" - }, - "model": "auth.permission", - "pk": 187 - }, - { - "fields": { - "codename": "change_annotation", - "content_type": 63, - "name": "Can change annotation" - }, - "model": "auth.permission", - "pk": 188 - }, - { - "fields": { - "codename": "delete_annotation", - "content_type": 63, - "name": "Can delete annotation" - }, - "model": "auth.permission", - "pk": 189 - }, - { - "fields": { - "codename": "add_vocabularyapi", - "content_type": 64, - "name": "Can add vocabulary api" - }, - "model": "auth.permission", - "pk": 190 - }, - { - "fields": { - "codename": "change_vocabularyapi", - "content_type": 64, - "name": "Can change vocabulary api" - }, - "model": "auth.permission", - "pk": 191 - }, - { - "fields": { - "codename": "delete_vocabularyapi", - "content_type": 64, - "name": "Can delete vocabulary api" - }, - "model": "auth.permission", - "pk": 192 - }, - { - "fields": { - "codename": "add_menuentry", - "content_type": 65, - "name": "Can add menu entry" - }, - "model": "auth.permission", - "pk": 193 - }, - { - "fields": { - "codename": "change_menuentry", - "content_type": 65, - "name": "Can change menu entry" - }, - "model": "auth.permission", - "pk": 194 - }, - { - "fields": { - "codename": "delete_menuentry", - "content_type": 65, - "name": "Can delete menu entry" - }, - "model": "auth.permission", - "pk": 195 - }, - { - "fields": { - "codename": "add_revision", - "content_type": 66, - "name": "Can add revision" - }, - "model": "auth.permission", - "pk": 196 - }, - { - "fields": { - "codename": "change_revision", - "content_type": 66, - "name": "Can change revision" - }, - "model": "auth.permission", - "pk": 197 - }, - { - "fields": { - "codename": "delete_revision", - "content_type": 66, - "name": "Can delete revision" - }, - "model": "auth.permission", - "pk": 198 - }, - { - "fields": { - "codename": "add_version", - "content_type": 67, - "name": "Can add version" - }, - "model": "auth.permission", - "pk": 199 - }, - { - "fields": { - "codename": "change_version", - "content_type": 67, - "name": "Can change version" - }, - "model": "auth.permission", - "pk": 200 - }, - { - "fields": { - "codename": "delete_version", - "content_type": 67, - "name": "Can delete version" - }, - "model": "auth.permission", - "pk": 201 - }, - { - "fields": { - "codename": "add_uricandidate", - "content_type": 68, - "name": "Can add uri candidate" - }, - "model": "auth.permission", - "pk": 202 - }, - { - "fields": { - "codename": "change_uricandidate", - "content_type": 68, - "name": "Can change uri candidate" - }, - "model": "auth.permission", - "pk": 203 - }, - { - "fields": { - "codename": "delete_uricandidate", - "content_type": 68, - "name": "Can delete uri candidate" - }, - "model": "auth.permission", - "pk": 204 - }, - { - "fields": { - "codename": "add_vocabnames", - "content_type": 69, - "name": "Can add vocab names" - }, - "model": "auth.permission", - "pk": 205 - }, - { - "fields": { - "codename": "change_vocabnames", - "content_type": 69, - "name": "Can change vocab names" - }, - "model": "auth.permission", - "pk": 206 - }, - { - "fields": { - "codename": "delete_vocabnames", - "content_type": 69, - "name": "Can delete vocab names" - }, - "model": "auth.permission", - "pk": 207 - }, - { - "fields": { - "codename": "add_texthigh", - "content_type": 70, - "name": "Can add text high" - }, - "model": "auth.permission", - "pk": 208 - }, - { - "fields": { - "codename": "change_texthigh", - "content_type": 70, - "name": "Can change text high" - }, - "model": "auth.permission", - "pk": 209 - }, - { - "fields": { - "codename": "delete_texthigh", - "content_type": 70, - "name": "Can delete text high" - }, - "model": "auth.permission", - "pk": 210 - }, - { - "fields": { - "codename": "add_annotationproject", - "content_type": 71, - "name": "Can add annotation project" - }, - "model": "auth.permission", - "pk": 211 - }, - { - "fields": { - "codename": "change_annotationproject", - "content_type": 71, - "name": "Can change annotation project" - }, - "model": "auth.permission", - "pk": 212 - }, - { - "fields": { - "codename": "delete_annotationproject", - "content_type": 71, - "name": "Can delete annotation project" - }, - "model": "auth.permission", - "pk": 213 - }, - { - "fields": { - "codename": "add_token", - "content_type": 72, - "name": "Can add Token" - }, - "model": "auth.permission", - "pk": 214 - }, - { - "fields": { - "codename": "change_token", - "content_type": 72, - "name": "Can change Token" - }, - "model": "auth.permission", - "pk": 215 - }, - { - "fields": { - "codename": "delete_token", - "content_type": 72, - "name": "Can delete Token" - }, - "model": "auth.permission", - "pk": 216 - }, - { - "fields": { - "codename": "add_userobjectpermission", - "content_type": 73, - "name": "Can add user object permission" - }, - "model": "auth.permission", - "pk": 217 - }, - { - "fields": { - "codename": "change_userobjectpermission", - "content_type": 73, - "name": "Can change user object permission" - }, - "model": "auth.permission", - "pk": 218 - }, - { - "fields": { - "codename": "delete_userobjectpermission", - "content_type": 73, - "name": "Can delete user object permission" - }, - "model": "auth.permission", - "pk": 219 - }, - { - "fields": { - "codename": "add_groupobjectpermission", - "content_type": 74, - "name": "Can add group object permission" - }, - "model": "auth.permission", - "pk": 220 - }, - { - "fields": { - "codename": "change_groupobjectpermission", - "content_type": 74, - "name": "Can change group object permission" - }, - "model": "auth.permission", - "pk": 221 - }, - { - "fields": { - "codename": "delete_groupobjectpermission", - "content_type": 74, - "name": "Can delete group object permission" - }, - "model": "auth.permission", - "pk": 222 - }, - { - "fields": { - "codename": "add_institutionworkrelation", - "content_type": 75, - "name": "Can add institution work relation" - }, - "model": "auth.permission", - "pk": 223 - }, - { - "fields": { - "codename": "change_institutionworkrelation", - "content_type": 75, - "name": "Can change institution work relation" - }, - "model": "auth.permission", - "pk": 224 - }, - { - "fields": { - "codename": "delete_institutionworkrelation", - "content_type": 75, - "name": "Can delete institution work relation" - }, - "model": "auth.permission", - "pk": 225 - }, - { - "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": 1 - }, - { - "fields": { - "name": "apis", - "permissions": [] - }, - "model": "auth.group", - "pk": 2 - }, - { - "fields": { - "name": "staribacher", - "permissions": [] - }, - "model": "auth.group", - "pk": 3 - }, - { - "fields": { - "date_joined": "2016-04-04T11:48:13Z", - "email": "", - "first_name": "", - "groups": [], - "is_active": true, - "is_staff": true, - "is_superuser": true, - "last_login": "2016-12-20T11:30:35Z", - "last_name": "", - "password": "pbkdf2_sha256$24000$lZLlfjvJkfgl$AaPc0kM0uUiYs1Iaj8jLiZcMGjC/hqQPyt3qX+B0JFk=", - "user_permissions": [], - "username": "pandorfer" - }, - "model": "auth.user", - "pk": 11 - }, - { - "fields": { - "date_joined": "2016-04-05T15:11:00Z", - "email": "matthias.schloegl@oeaw.ac.at", - "first_name": "Matthias", - "groups": [ - 2 - ], - "is_active": true, - "is_staff": true, - "is_superuser": true, - "last_login": "2016-12-21T09:47:39Z", - "last_name": "Schlögl", - "password": "pbkdf2_sha256$24000$kvTWNQR7UMoY$mHzGxbZI99bqjbHmIYxYUUxx4FCY7T0NpCpQROVKyxY=", - "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 - ], - "username": "sennierer" - }, - "model": "auth.user", - "pk": 12 - }, - { - "fields": { - "date_joined": "2017-01-04T11:33:08Z", - "email": "", - "first_name": "", - "groups": [], - "is_active": true, - "is_staff": true, - "is_superuser": false, - "last_login": null, - "last_name": "", - "password": "pbkdf2_sha256$24000$TK70KJIDQxSE$CQlZqwHdYS0P8yfKxFkNTwNLfwV7i7qwJTPwdAZhAd4=", - "user_permissions": [ - 67, - 68, - 69, - 106, - 107, - 108, - 61, - 62, - 63, - 109, - 110, - 111, - 88, - 89, - 90, - 94, - 95, - 96, - 91, - 92, - 93, - 58, - 59, - 60, - 223, - 224, - 225, - 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, - 205, - 206, - 207, - 37, - 38, - 39, - 43, - 44, - 45, - 46, - 47, - 48, - 112, - 113, - 114 - ], - "username": "testuser" - }, - "model": "auth.user", - "pk": 14 - }, - { - "fields": { - "comment": "", - "date_created": "2016-12-21T12:04:36.217Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7078 - }, - { - "fields": { - "comment": "", - "date_created": "2016-12-21T12:06:00.178Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7079 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T09:37:26.645Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7080 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T09:44:39.076Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7081 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T09:45:26.886Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7082 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T09:47:34.173Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7083 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T09:47:44.829Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7084 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T09:48:05.477Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7085 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T09:50:11.375Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7086 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T09:50:28.958Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7087 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T09:50:46.503Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7088 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T12:53:35.038Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7089 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T12:57:24.090Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7090 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T12:57:40.977Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7091 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-03T12:57:52.030Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7092 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-04T08:51:49.569Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7093 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-04T08:53:33.095Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7094 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-04T10:08:13.694Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7095 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-04T10:10:26.879Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7096 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-04T10:10:54.364Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7097 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-04T10:11:27.257Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7098 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-04T10:12:35.293Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7099 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-04T10:12:49.979Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7100 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-04T10:13:24.372Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7101 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-04T10:21:43.805Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7102 - }, - { - "fields": { - "comment": "", - "date_created": "2017-01-04T11:31:36.749Z", - "user": 12 - }, - "model": "reversion.revision", - "pk": 7103 - }, - { - "fields": { - "description": "", - "name": "old entity of", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 1 - }, - { - "fields": { - "description": "", - "name": "Place description ÖBL", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 2 - }, - { - "fields": { - "description": "", - "name": "vocabsor similar import", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 3 - }, - { - "fields": { - "description": "", - "name": "ÖBL place name", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 4 - }, - { - "fields": { - "description": "", - "name": "seat of a third-order administrative division (PPLA3)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5 - }, - { - "fields": { - "description": "wie im Gideon, statt alternative name", - "name": "weitere Namensformen", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 6 - }, - { - "fields": { - "description": "", - "name": "independent political entity (PCLI)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 7 - }, - { - "fields": { - "description": "", - "name": "located in", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 8 - }, - { - "fields": { - "description": "a city, town, village, or other agglomeration of buildings where people live and work", - "name": "populated place (PPL)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 9 - }, - { - "fields": { - "description": "", - "name": "seat of a fourth-order administrative division (PPLA4)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 10 - }, - { - "fields": { - "description": "", - "name": "seat of a second-order administrative division (PPLA2)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 11 - }, - { - "fields": { - "description": "", - "name": "capital of a political entity (PPLC)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 12 - }, - { - "fields": { - "description": "seat of a first-order administrative division (PPLC takes precedence over PPLA),", - "name": "seat of a first-order administrative division (PPLA)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 13 - }, - { - "fields": { - "description": "", - "name": "test data import", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 125 - }, - { - "fields": { - "description": "", - "name": "Literatur, Buch- und Zeitungswesen", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 128 - }, - { - "fields": { - "description": "", - "name": "Schriftsteller", - "parent_class": 128, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 129 - }, - { - "fields": { - "description": "", - "name": "ÖBL Haupttext", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 7 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 130 - }, - { - "fields": { - "description": "", - "name": "ÖBL Kurzinfo", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 7 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 131 - }, - { - "fields": { - "description": "", - "name": "Rechtswesen und Rechtswissenschaft", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 132 - }, - { - "fields": { - "description": "", - "name": "Rechtshistoriker und Abgeordneter", - "parent_class": 132, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 133 - }, - { - "fields": { - "description": "", - "name": "Politik", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 134 - }, - { - "fields": { - "description": "", - "name": "Naturwissenschaft", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 135 - }, - { - "fields": { - "description": "", - "name": "Botaniker", - "parent_class": 135, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 136 - }, - { - "fields": { - "description": "", - "name": "Wirtschaft", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 137 - }, - { - "fields": { - "description": "", - "name": "Instrumentenbauer", - "parent_class": 137, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 138 - }, - { - "fields": { - "description": "", - "name": "Bildende und angewandte Kunst", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 139 - }, - { - "fields": { - "description": "", - "name": "Maler", - "parent_class": 139, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 140 - }, - { - "fields": { - "description": "", - "name": "Religionen und Theologie", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 141 - }, - { - "fields": { - "description": "", - "name": "Bischof", - "parent_class": 141, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 142 - }, - { - "fields": { - "description": "", - "name": "Militär", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 143 - }, - { - "fields": { - "description": "", - "name": "General", - "parent_class": 143, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 144 - }, - { - "fields": { - "description": "", - "name": "Verwaltungsjurist und Politiker", - "parent_class": 134, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 145 - }, - { - "fields": { - "description": "", - "name": "Verwaltung", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 146 - }, - { - "fields": { - "description": "", - "name": "Ministerpräsident", - "parent_class": 134, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 147 - }, - { - "fields": { - "description": "", - "name": "Zoologe", - "parent_class": 135, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 148 - }, - { - "fields": { - "description": "", - "name": "Geisteswissenschaft", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 149 - }, - { - "fields": { - "description": "", - "name": "Archäologe", - "parent_class": 149, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 150 - }, - { - "fields": { - "description": "", - "name": "Musik und darstellende Kunst", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 151 - }, - { - "fields": { - "description": "", - "name": "Schauspieler und Schriftsteller", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 152 - }, - { - "fields": { - "description": "", - "name": "Medizin", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 154 - }, - { - "fields": { - "description": "", - "name": "Pädiater", - "parent_class": 154, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 155 - }, - { - "fields": { - "description": "", - "name": "Technik", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 157 - }, - { - "fields": { - "description": "", - "name": "Militärtechniker, Offizier und ungarischer Freiheitskämpfer", - "parent_class": 157, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 158 - }, - { - "fields": { - "description": "", - "name": "Beamter und Fachschriftsteller", - "parent_class": 128, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 159 - }, - { - "fields": { - "description": "", - "name": "Historiker", - "parent_class": 149, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 160 - }, - { - "fields": { - "description": "", - "name": "Architekt", - "parent_class": 139, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 161 - }, - { - "fields": { - "description": "", - "name": "Diplomat", - "parent_class": 146, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 162 - }, - { - "fields": { - "description": "", - "name": "Sport", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 163 - }, - { - "fields": { - "description": "", - "name": "Eiskunstläuferin", - "parent_class": 163, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 164 - }, - { - "fields": { - "description": "", - "name": "Großindustrielle", - "parent_class": 137, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 165 - }, - { - "fields": { - "description": "", - "name": "Diverse", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 166 - }, - { - "fields": { - "description": "", - "name": "Bautechniker", - "parent_class": 157, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 167 - }, - { - "fields": { - "description": "", - "name": "Maler und Graphiker", - "parent_class": 139, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 168 - }, - { - "fields": { - "description": "", - "name": "Politikerin und Schriftstellerin", - "parent_class": 134, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 169 - }, - { - "fields": { - "description": "", - "name": "Schauspieler, Theaterdirektor und Schriftsteller", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 170 - }, - { - "fields": { - "description": "", - "name": "Physiologe", - "parent_class": 154, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 171 - }, - { - "fields": { - "description": "", - "name": "Jurist", - "parent_class": 132, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 172 - }, - { - "fields": { - "description": "", - "name": "Fabrikant", - "parent_class": 137, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 173 - }, - { - "fields": { - "description": "", - "name": "Schriftsteller und Journalist", - "parent_class": 128, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 174 - }, - { - "fields": { - "description": "", - "name": "Internist", - "parent_class": 154, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 175 - }, - { - "fields": { - "description": "", - "name": "Landesverteidiger und Schriftsteller", - "parent_class": 134, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 176 - }, - { - "fields": { - "description": "", - "name": "Drehbuchautor", - "parent_class": 128, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 177 - }, - { - "fields": { - "description": "", - "name": "Malerin", - "parent_class": 139, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 178 - }, - { - "fields": { - "description": "", - "name": "Volkssänger", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 179 - }, - { - "fields": { - "description": "", - "name": "Sozial- und Wirtschaftswissenschaft", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 180 - }, - { - "fields": { - "description": "", - "name": "Betriebswirtschafter", - "parent_class": 180, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 181 - }, - { - "fields": { - "description": "", - "name": "Slawist und Linguist", - "parent_class": 149, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 182 - }, - { - "fields": { - "description": "", - "name": "Admiral", - "parent_class": 143, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 183 - }, - { - "fields": { - "description": "", - "name": "Stigmatisierte", - "parent_class": 141, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 184 - }, - { - "fields": { - "description": "", - "name": "Chemiker", - "parent_class": 135, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 185 - }, - { - "fields": { - "description": "", - "name": "Dirigent und Komponist", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 186 - }, - { - "fields": { - "description": "", - "name": "Pharmazeut", - "parent_class": 135, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 187 - }, - { - "fields": { - "description": "", - "name": "Unterrichtswesen", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 188 - }, - { - "fields": { - "description": "", - "name": "Lehrer", - "parent_class": 188, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 189 - }, - { - "fields": { - "description": "", - "name": "Montanist und Chemiker", - "parent_class": 135, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 190 - }, - { - "fields": { - "description": "", - "name": "Maler und Radierer", - "parent_class": 139, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 191 - }, - { - "fields": { - "description": "", - "name": "Philologe und Literarhistoriker", - "parent_class": 149, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 192 - }, - { - "fields": { - "description": "", - "name": "Biologe und Lehrer", - "parent_class": 135, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 193 - }, - { - "fields": { - "description": "", - "name": "Physiker", - "parent_class": 135, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 194 - }, - { - "fields": { - "description": "", - "name": "Offizier und Diplomat", - "parent_class": 143, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 195 - }, - { - "fields": { - "description": "", - "name": "Theologe", - "parent_class": 141, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 196 - }, - { - "fields": { - "description": "", - "name": "Ornithologe", - "parent_class": 135, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 197 - }, - { - "fields": { - "description": "", - "name": "Diplomat und Politiker", - "parent_class": 146, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 198 - }, - { - "fields": { - "description": "", - "name": "Lokalhistoriker, Gewerbetreibender und Politiker", - "parent_class": 149, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 199 - }, - { - "fields": { - "description": "", - "name": "Schriftsteller und Seelsorger", - "parent_class": 128, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 200 - }, - { - "fields": { - "description": "", - "name": "Industrieller", - "parent_class": 137, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 201 - }, - { - "fields": { - "description": "", - "name": "Mediziner", - "parent_class": 154, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 202 - }, - { - "fields": { - "description": "", - "name": "Komponist, Chorleiter und Musikkritiker", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 203 - }, - { - "fields": { - "description": "", - "name": "Kirchenhistoriker", - "parent_class": 149, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 204 - }, - { - "fields": { - "description": "", - "name": "Journalist und Lehrer", - "parent_class": 128, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 205 - }, - { - "fields": { - "description": "", - "name": "Fabrikant und Politiker", - "parent_class": 137, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 206 - }, - { - "fields": { - "description": "", - "name": "Sänger und Schauspieler", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 207 - }, - { - "fields": { - "description": "", - "name": "Chirurg", - "parent_class": 154, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 208 - }, - { - "fields": { - "description": "", - "name": "Jurist und Beamter", - "parent_class": 132, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 209 - }, - { - "fields": { - "description": "", - "name": "Großindustrieller, Großunternehmer und Bankier", - "parent_class": 137, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 210 - }, - { - "fields": { - "description": "", - "name": "Feldmarschalleutnant und Sicherheitsbeamter", - "parent_class": 143, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 211 - }, - { - "fields": { - "description": "", - "name": "Pianist", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 212 - }, - { - "fields": { - "description": "", - "name": "Politiker und Jurist", - "parent_class": 134, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 213 - }, - { - "fields": { - "description": "", - "name": "Musiker und Komponist", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 214 - }, - { - "fields": { - "description": "", - "name": "Bildhauer", - "parent_class": 139, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 215 - }, - { - "fields": { - "description": "", - "name": "Harfenist und Komponist", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 216 - }, - { - "fields": { - "description": "", - "name": "Land- und Forstwirtschaft", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 217 - }, - { - "fields": { - "description": "", - "name": "Landwirt und Weinhauer", - "parent_class": 217, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 218 - }, - { - "fields": { - "description": "", - "name": "Ordensangehöriger und Stifter", - "parent_class": 141, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 219 - }, - { - "fields": { - "description": "", - "name": "Historiker und Lehrer", - "parent_class": 149, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 220 - }, - { - "fields": { - "description": "", - "name": "Politiker und Kaufmann", - "parent_class": 134, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 221 - }, - { - "fields": { - "description": "", - "name": "Journalist und Schriftsteller", - "parent_class": 128, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 222 - }, - { - "fields": { - "description": "", - "name": "Maler und Karikaturist", - "parent_class": 139, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 223 - }, - { - "fields": { - "description": "", - "name": "Offizier", - "parent_class": 143, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 224 - }, - { - "fields": { - "description": "", - "name": "Bischof und Missionar", - "parent_class": 141, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 225 - }, - { - "fields": { - "description": "", - "name": "Pädagogin und Physikerin", - "parent_class": 188, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 226 - }, - { - "fields": { - "description": "", - "name": "Historiker und Byzantinist", - "parent_class": 149, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 227 - }, - { - "fields": { - "description": "", - "name": "Archivar und Historiker", - "parent_class": 146, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 228 - }, - { - "fields": { - "description": "", - "name": "Geistlicher, Historiker und Politiker", - "parent_class": 149, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 229 - }, - { - "fields": { - "description": "", - "name": "Schriftsteller, Übersetzer, Schauspieler und Regisseur", - "parent_class": 128, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 230 - }, - { - "fields": { - "description": "", - "name": "Offizier und Politiker", - "parent_class": 143, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 231 - }, - { - "fields": { - "description": "", - "name": "Sänger, Dirigent und Komponist", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 232 - }, - { - "fields": { - "description": "", - "name": "Journalist und Politiker", - "parent_class": 128, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 233 - }, - { - "fields": { - "description": "", - "name": "Pfadfinderführer und Offizier", - "parent_class": 166, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 234 - }, - { - "fields": { - "description": "", - "name": "Fürstbischof", - "parent_class": 141, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 235 - }, - { - "fields": { - "description": "", - "name": "Place review comments", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 236 - }, - { - "fields": { - "description": "a primary administrative division of a country, such as a state in the United States", - "name": "first-order administrative division (ADM1)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 371 - }, - { - "fields": { - "description": "a subdivision of a second-order administrative division", - "name": "third-order administrative division (ADM3)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 373 - }, - { - "fields": { - "description": "a subdivision of a fourth-order administrative division", - "name": "fifth-order administrative division (ADM5)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 375 - }, - { - "fields": { - "description": "auch Revolution und Bürgerkrieg, Unterkategorie ist Schlacht", - "name": "Krieg", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 380 - }, - { - "fields": { - "description": "", - "name": "Attentat", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 382 - }, - { - "fields": { - "description": "", - "name": "Epidemie", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 384 - }, - { - "fields": { - "description": "", - "name": "Verleihung", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 385 - }, - { - "fields": { - "description": "", - "name": "Festzug", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 386 - }, - { - "fields": { - "description": "", - "name": "Kongress", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 388 - }, - { - "fields": { - "description": "", - "name": "Rücktritt", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 390 - }, - { - "fields": { - "description": "", - "name": "Fertigstellung", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 391 - }, - { - "fields": { - "description": "", - "name": "Erstaufführung", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 392 - }, - { - "fields": { - "description": "", - "name": "Ausstellung", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 393 - }, - { - "fields": { - "description": "", - "name": "Berufung", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 394 - }, - { - "fields": { - "description": "", - "name": "Abspaltung", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 396 - }, - { - "fields": { - "description": "", - "name": "nahm Teil an", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 398 - }, - { - "fields": { - "description": "", - "name": "hatte als Teilnehmer", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 399 - }, - { - "fields": { - "description": "", - "name": "Schlacht", - "parent_class": 380, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 400 - }, - { - "fields": { - "description": "", - "name": "Friedensverhandlung", - "parent_class": 380, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 401 - }, - { - "fields": { - "description": "a former first-order administrative division", - "name": "historical first-order administrative division (ADM1H)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 420 - }, - { - "fields": { - "description": "", - "name": "author", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 12 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 424 - }, - { - "fields": { - "description": "", - "name": "Publikation", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 429 - }, - { - "fields": { - "description": "", - "name": "Pseudonym", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 430 - }, - { - "fields": { - "description": "", - "name": "Mädchenname", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 431 - }, - { - "fields": { - "description": "", - "name": "Künstlername", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 432 - }, - { - "fields": { - "description": "", - "name": "alternative name", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 433 - }, - { - "fields": { - "description": "a subdivision of a third-order administrative division", - "name": "fourth-order administrative division (ADM4)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 443 - }, - { - "fields": { - "description": "a subdivision of a first-order administrative division", - "name": "second-order administrative division (ADM2)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 452 - }, - { - "fields": { - "description": "", - "name": "Graf", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 460 - }, - { - "fields": { - "description": "", - "name": "Herzog", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 461 - }, - { - "fields": { - "description": "", - "name": "Freiherr", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 462 - }, - { - "fields": { - "description": "", - "name": "Erzherzog", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 463 - }, - { - "fields": { - "description": "", - "name": "König", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 464 - }, - { - "fields": { - "description": "", - "name": "Kaiser", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 465 - }, - { - "fields": { - "description": "", - "name": "Fürst", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 466 - }, - { - "fields": { - "description": "", - "name": "Freiin", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 467 - }, - { - "fields": { - "description": "", - "name": "Freifrau", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 468 - }, - { - "fields": { - "description": "", - "name": "Fürstin", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 469 - }, - { - "fields": { - "description": "", - "name": "Erzherzögin", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 470 - }, - { - "fields": { - "description": "", - "name": "Königin", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": null - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 474 - }, - { - "fields": { - "description": "", - "name": "Komponist", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": 1 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 483 - }, - { - "fields": { - "description": "", - "name": "Pianist und Komponist", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": 1 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 544 - }, - { - "fields": { - "description": "", - "name": "place of birth", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 2 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 595 - }, - { - "fields": { - "description": "", - "name": "place of death", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 2 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 596 - }, - { - "fields": { - "description": "", - "name": "alternative Namensform", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 3 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 597 - }, - { - "fields": { - "description": "", - "name": "Name laut ÖBL XML", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 3 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 598 - }, - { - "fields": { - "description": "", - "name": "Ehename", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 3 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 606 - }, - { - "fields": { - "description": "", - "name": "Taufname", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 3 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 612 - }, - { - "fields": { - "description": "", - "name": "not defined", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 3 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 653 - }, - { - "fields": { - "description": "", - "name": "Pianistin", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": 1 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 1750 - }, - { - "fields": { - "description": "", - "name": "Komponist und Musiklehrer", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": 1 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 2054 - }, - { - "fields": { - "description": "", - "name": "Schriftstellerin, Übersetzerin und Pianistin", - "parent_class": 128, - "status": "can", - "userAdded": 12, - "vocab_name": 1 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5578 - }, - { - "fields": { - "description": "", - "name": "Pianist, Pädagoge und Komponist", - "parent_class": 151, - "status": "can", - "userAdded": 12, - "vocab_name": 1 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5599 - }, - { - "fields": { - "description": "", - "name": "undefined", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 6 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5608 - }, - { - "fields": { - "description": "", - "name": "situated in", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 8 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5702 - }, - { - "fields": { - "description": "", - "name": "is superior of", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 5 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5708 - }, - { - "fields": { - "description": "", - "name": "is succeeding", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 5 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5709 - }, - { - "fields": { - "description": "", - "name": "is preceding", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 5 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5711 - }, - { - "fields": { - "description": "", - "name": "section of populated place (PPLX)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 10 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5729 - }, - { - "fields": { - "description": "", - "name": "family member", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 6 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5741 - }, - { - "fields": { - "description": "", - "name": "friend", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 6 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5742 - }, - { - "fields": { - "description": "", - "name": "affiliation", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 4 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5743 - }, - { - "fields": { - "description": "an administrative division of a country, undifferentiated as to administrative level", - "name": "administrative division (ADMD)", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 10 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5765 - }, - { - "fields": { - "description": "", - "name": "research dataset", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 11 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5772 - }, - { - "fields": { - "description": "", - "name": "had event", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 13 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5773 - }, - { - "fields": { - "description": "", - "name": "veranstaltete", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 14 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5774 - }, - { - "fields": { - "description": "", - "name": "testtype", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 9 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5775 - }, - { - "fields": { - "description": "", - "name": "test relation", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 15 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5776 - }, - { - "fields": { - "description": "", - "name": "testrelation", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 16 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5777 - }, - { - "fields": { - "description": "", - "name": "testrelation", - "parent_class": null, - "status": "can", - "userAdded": 12, - "vocab_name": 17 - }, - "model": "vocabularies.vocabsbaseclass", - "pk": 5778 - }, - { - "fields": { - "name_reverse": "" - }, - "model": "vocabularies.relationbaseclass", - "pk": 1 - }, - { - "fields": { - "name_reverse": "includes" - }, - "model": "vocabularies.relationbaseclass", - "pk": 8 - }, - { - "fields": { - "name_reverse": "hatte als Teilnehmer" - }, - "model": "vocabularies.relationbaseclass", - "pk": 398 - }, - { - "fields": { - "name_reverse": "nahm Teil an" - }, - "model": "vocabularies.relationbaseclass", - "pk": 399 - }, - { - "fields": { - "name_reverse": "authored by" - }, - "model": "vocabularies.relationbaseclass", - "pk": 424 - }, - { - "fields": { - "name_reverse": "" - }, - "model": "vocabularies.relationbaseclass", - "pk": 595 - }, - { - "fields": { - "name_reverse": "" - }, - "model": "vocabularies.relationbaseclass", - "pk": 596 - }, - { - "fields": { - "name_reverse": "undefined" - }, - "model": "vocabularies.relationbaseclass", - "pk": 5608 - }, - { - "fields": { - "name_reverse": "" - }, - "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": "took place in" - }, - "model": "vocabularies.relationbaseclass", - "pk": 5773 - }, - { - "fields": { - "name_reverse": "wurde veranstaltet von" - }, - "model": "vocabularies.relationbaseclass", - "pk": 5774 - }, - { - "fields": { - "name_reverse": "reverse test relation" - }, - "model": "vocabularies.relationbaseclass", - "pk": 5776 - }, - { - "fields": { - "name_reverse": "test relation reverse" - }, - "model": "vocabularies.relationbaseclass", - "pk": 5777 - }, - { - "fields": { - "name_reverse": "testrelation reverse" - }, - "model": "vocabularies.relationbaseclass", - "pk": 5778 - }, - { - "fields": {}, - "model": "vocabularies.worktype", - "pk": 429 - }, - { - "fields": { - "abbreviation": "Gf." - }, - "model": "vocabularies.title", - "pk": 460 - }, - { - "fields": { - "abbreviation": "Hg." - }, - "model": "vocabularies.title", - "pk": 461 - }, - { - "fields": { - "abbreviation": "Frh." - }, - "model": "vocabularies.title", - "pk": 462 - }, - { - "fields": { - "abbreviation": "Erzhg." - }, - "model": "vocabularies.title", - "pk": 463 - }, - { - "fields": { - "abbreviation": "Kg." - }, - "model": "vocabularies.title", - "pk": 464 - }, - { - "fields": { - "abbreviation": "K." - }, - "model": "vocabularies.title", - "pk": 465 - }, - { - "fields": { - "abbreviation": "" - }, - "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": "Erzhgn." - }, - "model": "vocabularies.title", - "pk": 470 - }, - { - "fields": { - "abbreviation": "Kngn." - }, - "model": "vocabularies.title", - "pk": 474 - }, - { - "fields": {}, - "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.institutiontype", - "pk": 5775 - }, - { - "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": { - "collections": [], - "entity": "Place" - }, - "model": "vocabularies.texttype", - "pk": 2 - }, - { - "fields": { - "collections": [], - "entity": "Person" - }, - "model": "vocabularies.texttype", - "pk": 130 - }, - { - "fields": { - "collections": [], - "entity": "Person" - }, - "model": "vocabularies.texttype", - "pk": 131 - }, - { - "fields": { - "collections": [], - "entity": "Place" - }, - "model": "vocabularies.texttype", - "pk": 236 - }, - { - "fields": {}, - "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.institutioneventrelation", - "pk": 5774 - }, - { - "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.institutionworkrelation", - "pk": 5776 - }, - { - "fields": {}, - "model": "vocabularies.placeplacerelation", - "pk": 1 - }, - { - "fields": {}, - "model": "vocabularies.placeplacerelation", - "pk": 8 - }, - { - "fields": {}, - "model": "vocabularies.placeeventrelation", - "pk": 5773 - }, - { - "fields": {}, - "model": "vocabularies.placeworkrelation", - "pk": 5777 - }, - { - "fields": {}, - "model": "vocabularies.eventworkrelation", - "pk": 5778 - }, - { - "fields": { - "collection_type": 125, - "description": "", - "groups_allowed": [ - 2 - ], - "name": "testcollection" - }, - "model": "metainfo.collection", - "pk": 22 - }, - { - "fields": { - "base_url": "", - "description": "", - "name": "highlight places", - "store_text": false, - "user": 12 - }, - "model": "highlighter.project", - "pk": 1 - }, - { - "fields": { - "annotation_project": 1, - "end": 250, - "entity_candidate": [], - "entity_link": [ - [ - [ - "relations", - "personperson" - ], - 92840 - ] - ], - "orig_string": "Carl Czerny", - "parent": null, - "start": 239, - "status": null, - "text": 47030, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 237 - }, - { - "fields": { - "annotation_project": 1, - "end": 899, - "entity_candidate": [], - "entity_link": [ - [ - [ - "relations", - "personperson" - ], - 92930 - ] - ], - "orig_string": "Ludwig van Beethoven", - "parent": null, - "start": 879, - "status": null, - "text": 47126, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 331 - }, - { - "fields": { - "annotation_project": 1, - "end": 1380, - "entity_candidate": [], - "entity_link": [ - [ - [ - "relations", - "personperson" - ], - 92931 - ] - ], - "orig_string": "Sigismund Thalberg", - "parent": null, - "start": 1362, - "status": null, - "text": 47126, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 332 - }, - { - "fields": { - "annotation_project": 1, - "end": 1408, - "entity_candidate": [], - "entity_link": [ - [ - [ - "relations", - "personperson" - ], - 92932 - ] - ], - "orig_string": "Marie Leopoldine Blahetka", - "parent": null, - "start": 1383, - "status": null, - "text": 47126, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 333 - }, - { - "fields": { - "annotation_project": 1, - "end": 1454, - "entity_candidate": [], - "entity_link": [ - [ - [ - "relations", - "personperson" - ], - 92933 - ] - ], - "orig_string": "Franz von Liszt", - "parent": null, - "start": 1439, - "status": null, - "text": 47126, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 334 - }, - { - "fields": { - "annotation_project": 1, - "end": 1751, - "entity_candidate": [], - "entity_link": [ - [ - [ - "relations", - "personperson" - ], - 92934 - ] - ], - "orig_string": "Ignaz Moscheles", - "parent": null, - "start": 1736, - "status": null, - "text": 47126, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 335 - }, - { - "fields": { - "annotation_project": 1, - "end": 3043, - "entity_candidate": [], - "entity_link": [ - [ - [ - "relations", - "personperson" - ], - 92935 - ] - ], - "orig_string": "Anton Reicha", - "parent": null, - "start": 3031, - "status": null, - "text": 47126, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 336 - }, - { - "fields": { - "annotation_project": 1, - "end": 55, - "entity_candidate": [], - "entity_link": [], - "orig_string": null, - "parent": null, - "start": 40, - "status": null, - "text": 47642, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 1214 - }, - { - "fields": { - "annotation_project": 1, - "end": 151, - "entity_candidate": [], - "entity_link": [], - "orig_string": null, - "parent": null, - "start": 141, - "status": null, - "text": 47642, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 1215 - }, - { - "fields": { - "annotation_project": 1, - "end": 262, - "entity_candidate": [], - "entity_link": [], - "orig_string": null, - "parent": null, - "start": 225, - "status": null, - "text": 47642, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 1216 - }, - { - "fields": { - "annotation_project": 1, - "end": 378, - "entity_candidate": [], - "entity_link": [], - "orig_string": null, - "parent": null, - "start": 354, - "status": null, - "text": 47642, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 1217 - }, - { - "fields": { - "annotation_project": 1, - "end": 478, - "entity_candidate": [], - "entity_link": [], - "orig_string": null, - "parent": null, - "start": 451, - "status": null, - "text": 47642, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 1218 - }, - { - "fields": { - "annotation_project": 1, - "end": 508, - "entity_candidate": [], - "entity_link": [], - "orig_string": null, - "parent": null, - "start": 500, - "status": null, - "text": 47642, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 1219 - }, - { - "fields": { - "annotation_project": 1, - "end": 566, - "entity_candidate": [], - "entity_link": [], - "orig_string": null, - "parent": null, - "start": 549, - "status": null, - "text": 47642, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 1220 - }, - { - "fields": { - "annotation_project": 1, - "end": 670, - "entity_candidate": [], - "entity_link": [], - "orig_string": null, - "parent": null, - "start": 650, - "status": null, - "text": 47642, - "user_added": 12 - }, - "model": "highlighter.annotation", - "pk": 1221 - }, - { - "fields": { - "created": "2016-08-26T08:01:26Z", - "user": 12 - }, - "model": "authtoken.token", - "pk": "bb650ee43b63b5e13cbac9320157b08c36099452" - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93803", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 122 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93803", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 623 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93003", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1010 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93009", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1012 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93012", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1013 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93015", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1014 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93018", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1015 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93021", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1016 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93024", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1017 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93028", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1018 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93031", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1019 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93034", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1020 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93044", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1023 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93047", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1024 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93050", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1025 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93056", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1026 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93059", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1027 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93065", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1028 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93068", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1029 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93071", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1030 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93074", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1031 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93136", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1048 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93328", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1102 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93337", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1104 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93352", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1107 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93366", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1111 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93369", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1112 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93378", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1115 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93387", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1117 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93393", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1119 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93396", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1120 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93400", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1121 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93409", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1124 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93415", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1125 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93418", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1126 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93442", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1133 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93445", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1134 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93448", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1135 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93469", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1140 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93481", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1143 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93484", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1144 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93487", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1145 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93510", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1151 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93513", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1152 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93516", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1153 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93540", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1161 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93546", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1163 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93561", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1168 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93573", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1171 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93588", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1175 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93600", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1178 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93609", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1180 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93615", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1181 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93639", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1188 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93642", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1189 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93645", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1190 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93651", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1192 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93654", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1193 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93657", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1194 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93663", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1195 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93678", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1200 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93684", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1202 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93702", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1207 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93705", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1208 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93714", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1211 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93748", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1219 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93779", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1225 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93785", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1227 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93791", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1229 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93800", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1232 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93809", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1233 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93815", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1235 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93818", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1236 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93836", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1242 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93839", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1243 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93854", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1248 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93863", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1250 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93866", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1251 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93878", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1255 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93891", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1257 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93894", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1258 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93900", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1260 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93903", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1261 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93909", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1263 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93921", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1266 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93933", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1269 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93940", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1270 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93946", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1272 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93955", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1275 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93958", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1276 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93961", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1277 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93964", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1278 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93967", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1279 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93970", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1280 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93988", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1286 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93991", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1287 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "94003", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1290 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "94006", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1291 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "94009", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1292 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "94018", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 1295 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93003", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1303 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93009", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1305 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93012", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1306 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93015", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1307 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93018", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1308 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93021", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1309 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93024", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1310 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93028", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1311 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93031", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1312 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93034", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1313 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93044", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1316 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93047", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1317 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93050", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1318 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93056", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1319 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93059", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1320 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93065", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1321 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93068", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1322 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93071", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1323 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93074", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1324 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93136", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1341 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93328", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1395 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93337", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1397 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93352", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1400 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93366", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1404 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93369", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1405 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93378", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1408 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93387", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1410 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93393", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1412 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93396", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1413 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93400", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1414 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93409", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1417 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93415", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1418 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93418", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1419 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93442", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1426 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93445", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1427 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93448", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1428 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93469", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1433 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93481", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1436 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93484", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1437 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93487", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1438 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93510", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1444 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93513", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1445 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93516", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1446 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93540", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1454 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93546", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1456 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93561", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1461 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93573", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1464 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93588", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1468 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93600", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1471 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93609", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1473 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93615", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1474 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93639", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1481 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93642", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1482 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93645", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1483 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93651", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1485 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93654", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1486 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93657", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1487 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93663", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1488 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93678", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1493 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93684", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1495 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93702", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1500 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93705", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1501 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93714", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1504 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93748", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1512 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93779", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1518 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93785", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1520 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93791", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1522 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93800", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1525 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93809", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1526 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93815", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1528 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93818", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1529 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93836", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1535 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93839", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1536 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93854", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1541 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93863", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1543 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93866", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1544 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93878", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1548 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93891", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1550 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93894", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1551 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93900", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1553 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93903", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1554 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93909", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1556 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93921", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1559 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93933", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1562 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93940", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1563 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93946", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1565 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93955", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1568 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93958", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1569 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93961", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1570 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93964", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1571 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93967", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1572 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93970", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1573 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93988", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1579 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "93991", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1580 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "94003", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1583 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "94006", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1584 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "94009", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1585 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "94018", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 1588 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "88902", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 3973 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "92412", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 4240 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "88902", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 7515 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "92412", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 7782 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "27245", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 9760 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "46414", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 13575 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "56248", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 15601 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "62757", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 16957 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "88219", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 22688 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "27245", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 23454 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "46414", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 27269 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "56248", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 29295 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "62757", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 30651 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "88219", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 36382 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "92603", - "permission": 23 - }, - "model": "guardian.groupobjectpermission", - "pk": 37445 - }, - { - "fields": { - "content_type": 8, - "group": 2, - "object_pk": "92603", - "permission": 24 - }, - "model": "guardian.groupobjectpermission", - "pk": 37550 - }, - { - "fields": { - "content_type": 40, - "group": 2, - "object_pk": "98116", - "permission": 119 - }, - "model": "guardian.groupobjectpermission", - "pk": 37575 - }, - { - "fields": { - "content_type": 40, - "group": 2, - "object_pk": "98116", - "permission": 120 - }, - "model": "guardian.groupobjectpermission", - "pk": 37576 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "26", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 39399 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "133", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 39454 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "183", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 39478 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "327", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 39549 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "384", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 39579 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "400", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 39588 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "831", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 39822 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "926", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 39872 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "1390", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40122 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "1424", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40142 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "1454", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40157 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "1701", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40292 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "1718", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40301 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "2006", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40454 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "2072", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40489 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "2085", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40496 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "2161", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40538 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "2170", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40543 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "2197", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40557 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "2281", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40602 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "2489", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40718 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "2602", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40779 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "2854", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 40911 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "3105", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 41046 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "3162", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 41076 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "4096", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 41582 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "4269", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 41674 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "4767", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 41937 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "4877", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 41997 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "5294", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 42221 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "5308", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 42228 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "5478", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 42318 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "5691", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 42436 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "5749", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 42466 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "6004", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 42602 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "6324", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 42775 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "6700", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 42985 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "6947", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 43120 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "7454", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 43396 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "7622", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 43489 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "7986", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 43690 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "8482", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 43961 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "8798", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 44131 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "9287", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 44397 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "9455", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 44489 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "9475", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 44499 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "9735", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 44638 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "10015", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 44790 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "10265", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 44924 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "10793", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 45212 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "11238", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 45448 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "11556", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 45620 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "11799", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 45749 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "12211", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 45969 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "12758", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 46265 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "13253", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 46538 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "13382", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 46611 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "13714", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 46791 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "13987", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 46937 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "14608", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 47277 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "16242", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 48165 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "16310", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 48200 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "16594", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 48351 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "16864", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 48496 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "18374", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 49327 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "18400", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 49341 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "19215", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 49771 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "19599", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 49976 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "20549", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 50488 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "20659", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 50550 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "20872", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 50668 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "20988", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 50731 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "21818", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 51189 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "22216", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 51199 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "22259", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 51204 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "22322", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 51212 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "22354", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 51215 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "22475", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 51226 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "22494", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 51230 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "22526", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 51235 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "22545", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 51239 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "22558", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 51241 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "22570", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 51244 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93025", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59098 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93035", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59099 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93051", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59100 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93060", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59102 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93075", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59104 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93379", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59141 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93397", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59143 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93410", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59144 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93449", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59148 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93562", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59158 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93610", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59166 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93658", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59170 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93715", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59174 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93749", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59181 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93804", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59190 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93855", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59192 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93879", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59194 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93934", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59203 - }, - { - "fields": { - "content_type": 9, - "group": 2, - "object_pk": "93937", - "permission": 26 - }, - "model": "guardian.groupobjectpermission", - "pk": 59205 - }, - { - "fields": { - "content_type": 41, - "group": 2, - "object_pk": "99591", - "permission": 122 - }, - "model": "guardian.groupobjectpermission", - "pk": 59391 - }, - { - "fields": { - "content_type": 41, - "group": 2, - "object_pk": "99591", - "permission": 123 - }, - "model": "guardian.groupobjectpermission", - "pk": 59392 - }, - { - "fields": { - "content_type": 12, - "group": 2, - "object_pk": "99852", - "permission": 35 - }, - "model": "guardian.groupobjectpermission", - "pk": 59427 - }, - { - "fields": { - "content_type": 12, - "group": 2, - "object_pk": "99852", - "permission": 36 - }, - "model": "guardian.groupobjectpermission", - "pk": 59428 - }, - { - "fields": { - "content_type": 11, - "group": 2, - "object_pk": "99856", - "permission": 32 - }, - "model": "guardian.groupobjectpermission", - "pk": 59429 - }, - { - "fields": { - "content_type": 11, - "group": 2, - "object_pk": "99856", - "permission": 33 - }, - "model": "guardian.groupobjectpermission", - "pk": 59430 - }, - { - "fields": { - "content_type": 10, - "group": 2, - "object_pk": "99861", - "permission": 29 - }, - "model": "guardian.groupobjectpermission", - "pk": 59431 - }, - { - "fields": { - "content_type": 10, - "group": 2, - "object_pk": "99861", - "permission": 30 - }, - "model": "guardian.groupobjectpermission", - "pk": 59432 - }, - { - "fields": { - "content_type": 12, - "group": 2, - "object_pk": "99872", - "permission": 35 - }, - "model": "guardian.groupobjectpermission", - "pk": 59433 - }, - { - "fields": { - "content_type": 12, - "group": 2, - "object_pk": "99872", - "permission": 36 - }, - "model": "guardian.groupobjectpermission", - "pk": 59434 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-04T13:17:57Z", - "change_message": "", - "content_type": 10, - "object_id": "18", - "object_repr": "", - "user": 11 - }, - "model": "admin.logentry", - "pk": 48 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-04T13:20:56Z", - "change_message": "", - "content_type": 27, - "object_id": "15", - "object_repr": "Ehrenmitglied", - "user": 11 - }, - "model": "admin.logentry", - "pk": 49 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-04T13:20:56Z", - "change_message": "", - "content_type": 27, - "object_id": "14", - "object_repr": "Wirkliches Mitglied (w. M.)", - "user": 11 - }, - "model": "admin.logentry", - "pk": 50 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-04T13:20:56Z", - "change_message": "", - "content_type": 27, - "object_id": "13", - "object_repr": "Korrespondierendes Mitglied im Ausland (k. M. A.)", - "user": 11 - }, - "model": "admin.logentry", - "pk": 51 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-04T13:20:56Z", - "change_message": "", - "content_type": 27, - "object_id": "12", - "object_repr": "Korrespondierendes Mitglied im Inland (k. M. I.)", - "user": 11 - }, - "model": "admin.logentry", - "pk": 52 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-04-05T15:41:22Z", - "change_message": "Changed name and name_reverse.", - "content_type": 32, - "object_id": "7", - "object_repr": "ist Nachfolger von", - "user": 11 - }, - "model": "admin.logentry", - "pk": 81 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-04-05T15:41:39Z", - "change_message": "Changed name and name_reverse.", - "content_type": 32, - "object_id": "5", - "object_repr": "ist Vorgänger von", - "user": 11 - }, - "model": "admin.logentry", - "pk": 82 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-04-05T15:42:02Z", - "change_message": "Changed name.", - "content_type": 32, - "object_id": "8", - "object_repr": "ist Teil von", - "user": 11 - }, - "model": "admin.logentry", - "pk": 83 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-05T15:43:00Z", - "change_message": "", - "content_type": 32, - "object_id": "8", - "object_repr": "ist Teil von", - "user": 11 - }, - "model": "admin.logentry", - "pk": 84 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-04-07T11:10:33Z", - "change_message": "Added.", - "content_type": 4, - "object_id": "13", - "object_repr": "oebl", - "user": 12 - }, - "model": "admin.logentry", - "pk": 85 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-04-07T11:11:00Z", - "change_message": "Changed is_staff and user_permissions.", - "content_type": 4, - "object_id": "13", - "object_repr": "oebl", - "user": 12 - }, - "model": "admin.logentry", - "pk": 86 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-04-13T15:46:02Z", - "change_message": "Changed entity and collections.", - "content_type": 24, - "object_id": "40", - "object_repr": "Place description ÖBL", - "user": 12 - }, - "model": "admin.logentry", - "pk": 87 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-04-14T11:55:13Z", - "change_message": "Changed entity and collections.", - "content_type": 24, - "object_id": "50", - "object_repr": "ÖBL Haupttext", - "user": 12 - }, - "model": "admin.logentry", - "pk": 88 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-04-14T11:55:29Z", - "change_message": "Changed entity and collections.", - "content_type": 24, - "object_id": "53", - "object_repr": "ÖBL Kurzinfo", - "user": 12 - }, - "model": "admin.logentry", - "pk": 89 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-04-14T12:41:46Z", - "change_message": "Added.", - "content_type": 25, - "object_id": "96", - "object_repr": "test", - "user": 12 - }, - "model": "admin.logentry", - "pk": 90 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-04-15T07:22:05Z", - "change_message": "Changed name_reverse.", - "content_type": 25, - "object_id": "96", - "object_repr": "test", - "user": 12 - }, - "model": "admin.logentry", - "pk": 91 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-04-15T07:22:26Z", - "change_message": "Changed name_reverse.", - "content_type": 25, - "object_id": "96", - "object_repr": "test", - "user": 12 - }, - "model": "admin.logentry", - "pk": 92 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-04-18T08:22:56Z", - "change_message": "Added.", - "content_type": 25, - "object_id": "105", - "object_repr": "ist Vater", - "user": 11 - }, - "model": "admin.logentry", - "pk": 93 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-04-18T08:23:07Z", - "change_message": "Added.", - "content_type": 25, - "object_id": "106", - "object_repr": "hat Vater", - "user": 11 - }, - "model": "admin.logentry", - "pk": 94 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-18T09:39:43Z", - "change_message": "", - "content_type": 27, - "object_id": "38", - "object_repr": "hat Wirkliches Mitglied (w. M.)", - "user": 11 - }, - "model": "admin.logentry", - "pk": 95 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-18T09:39:43Z", - "change_message": "", - "content_type": 27, - "object_id": "37", - "object_repr": "hat Ehrenmitglied", - "user": 11 - }, - "model": "admin.logentry", - "pk": 96 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-18T09:39:43Z", - "change_message": "", - "content_type": 27, - "object_id": "36", - "object_repr": "hat Korrespondierendes Mitglied im Ausland (k. M. A.)", - "user": 11 - }, - "model": "admin.logentry", - "pk": 97 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-18T09:39:43Z", - "change_message": "", - "content_type": 27, - "object_id": "35", - "object_repr": "hat Korrespondierendes Mitglied im Inland (k. M. I.)", - "user": 11 - }, - "model": "admin.logentry", - "pk": 98 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-18T09:39:43Z", - "change_message": "", - "content_type": 27, - "object_id": "34", - "object_repr": "hat Kuratorstellvertreter(in)", - "user": 11 - }, - "model": "admin.logentry", - "pk": 99 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-18T09:39:43Z", - "change_message": "", - "content_type": 27, - "object_id": "33", - "object_repr": "hat Präsident(in)", - "user": 11 - }, - "model": "admin.logentry", - "pk": 100 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-18T09:39:43Z", - "change_message": "", - "content_type": 27, - "object_id": "32", - "object_repr": "hat Miglied", - "user": 11 - }, - "model": "admin.logentry", - "pk": 101 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-04-18T09:39:43Z", - "change_message": "", - "content_type": 27, - "object_id": "31", - "object_repr": "hat Obmann/Obfrau", - "user": 11 - }, - "model": "admin.logentry", - "pk": 102 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-04-18T11:07:39Z", - "change_message": "Added.", - "content_type": 56, - "object_id": "6", - "object_repr": "testcollection 18.4", - "user": 12 - }, - "model": "admin.logentry", - "pk": 103 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-04-18T11:16:20Z", - "change_message": "Added.", - "content_type": 24, - "object_id": "107", - "object_repr": "Editlogs", - "user": 12 - }, - "model": "admin.logentry", - "pk": 104 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-04-26T09:31:21Z", - "change_message": "Changed name_reverse.", - "content_type": 26, - "object_id": "44", - "object_repr": "place of death", - "user": 12 - }, - "model": "admin.logentry", - "pk": 105 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-04-26T09:31:47Z", - "change_message": "Changed name_reverse.", - "content_type": 26, - "object_id": "43", - "object_repr": "place of birth", - "user": 12 - }, - "model": "admin.logentry", - "pk": 106 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-04-27T10:26:06Z", - "change_message": "Added.", - "content_type": 31, - "object_id": "108", - "object_repr": "located in", - "user": 12 - }, - "model": "admin.logentry", - "pk": 107 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-04-28T09:03:10Z", - "change_message": "Added.", - "content_type": 26, - "object_id": "109", - "object_repr": "studied in", - "user": 12 - }, - "model": "admin.logentry", - "pk": 108 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-05-02T10:05:25Z", - "change_message": "Changed name_reverse.", - "content_type": 25, - "object_id": "100", - "object_repr": "family member", - "user": 11 - }, - "model": "admin.logentry", - "pk": 109 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-05-02T10:07:16Z", - "change_message": "Changed name and name_reverse.", - "content_type": 26, - "object_id": "44", - "object_repr": "died in", - "user": 11 - }, - "model": "admin.logentry", - "pk": 110 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-05-02T10:07:33Z", - "change_message": "Changed name and name_reverse.", - "content_type": 26, - "object_id": "43", - "object_repr": "born in", - "user": 11 - }, - "model": "admin.logentry", - "pk": 111 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-05-03T09:51:29Z", - "change_message": "Added.", - "content_type": 24, - "object_id": "110", - "object_repr": "Place accuracy test", - "user": 12 - }, - "model": "admin.logentry", - "pk": 112 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-05-03T11:01:33Z", - "change_message": "", - "content_type": 40, - "object_id": "23993", - "object_repr": "Defregger, Franz von (studied in)", - "user": 12 - }, - "model": "admin.logentry", - "pk": 113 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-05-09T08:58:18Z", - "change_message": "Changed entity and collections.", - "content_type": 24, - "object_id": "130", - "object_repr": "ÖBL Haupttext", - "user": 12 - }, - "model": "admin.logentry", - "pk": 114 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-05-09T08:58:25Z", - "change_message": "Changed entity and collections.", - "content_type": 24, - "object_id": "131", - "object_repr": "ÖBL Kurzinfo", - "user": 12 - }, - "model": "admin.logentry", - "pk": 115 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-05-09T10:07:01Z", - "change_message": "Added.", - "content_type": 24, - "object_id": "236", - "object_repr": "Place review comments", - "user": 12 - }, - "model": "admin.logentry", - "pk": 116 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-05-09T10:10:38Z", - "change_message": "Changed entity and collections.", - "content_type": 24, - "object_id": "2", - "object_repr": "Place description ÖBL", - "user": 12 - }, - "model": "admin.logentry", - "pk": 117 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-05-23T07:03:50Z", - "change_message": "Changed name and name_reverse.", - "content_type": 27, - "object_id": "279", - "object_repr": "is Vizepräsident von", - "user": 12 - }, - "model": "admin.logentry", - "pk": 292 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-05-23T09:31:15Z", - "change_message": "Changed name and name_reverse.", - "content_type": 26, - "object_id": "237", - "object_repr": "wirkte in", - "user": 12 - }, - "model": "admin.logentry", - "pk": 293 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-05-25T11:19:56Z", - "change_message": "", - "content_type": 25, - "object_id": "245", - "object_repr": "Kind", - "user": 12 - }, - "model": "admin.logentry", - "pk": 421 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-05-25T11:19:56Z", - "change_message": "", - "content_type": 25, - "object_id": "244", - "object_repr": "Eltern", - "user": 12 - }, - "model": "admin.logentry", - "pk": 422 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-05-25T11:19:56Z", - "change_message": "", - "content_type": 25, - "object_id": "243", - "object_repr": "Vater", - "user": 12 - }, - "model": "admin.logentry", - "pk": 423 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-05-25T11:19:56Z", - "change_message": "", - "content_type": 25, - "object_id": "242", - "object_repr": "Mutter", - "user": 12 - }, - "model": "admin.logentry", - "pk": 424 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-05-25T11:21:38Z", - "change_message": "Hinzugefügt.", - "content_type": 25, - "object_id": "421", - "object_repr": "Vater/Mutter", - "user": 12 - }, - "model": "admin.logentry", - "pk": 425 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-06-06T07:44:47Z", - "change_message": "Hinzugefügt.", - "content_type": 17, - "object_id": "459", - "object_repr": "Graf", - "user": 12 - }, - "model": "admin.logentry", - "pk": 456 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-06-06T07:45:44Z", - "change_message": "", - "content_type": 17, - "object_id": "459", - "object_repr": "Graf", - "user": 12 - }, - "model": "admin.logentry", - "pk": 457 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-06-21T09:34:32Z", - "change_message": "Hinzugefügt.", - "content_type": 3, - "object_id": "2", - "object_repr": "apis", - "user": 12 - }, - "model": "admin.logentry", - "pk": 473 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-06-21T09:34:54Z", - "change_message": "groups geändert.", - "content_type": 4, - "object_id": "12", - "object_repr": "sennierer", - "user": 12 - }, - "model": "admin.logentry", - "pk": 474 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-06-23T13:50:16Z", - "change_message": "", - "content_type": 25, - "object_id": "422", - "object_repr": "family member", - "user": 11 - }, - "model": "admin.logentry", - "pk": 475 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-06-23T13:50:22Z", - "change_message": "", - "content_type": 25, - "object_id": "423", - "object_repr": "friend", - "user": 11 - }, - "model": "admin.logentry", - "pk": 476 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-02T08:41:51Z", - "change_message": "Hinzugefügt.", - "content_type": 61, - "object_id": "1", - "object_repr": "highlight places", - "user": 12 - }, - "model": "admin.logentry", - "pk": 480 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-02T08:43:38Z", - "change_message": "Hinzugefügt.", - "content_type": 64, - "object_id": "1", - "object_repr": "Person Place Relation", - "user": 12 - }, - "model": "admin.logentry", - "pk": 481 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-02T08:44:13Z", - "change_message": "Hinzugefügt.", - "content_type": 65, - "object_id": "1", - "object_repr": "Person Place Relation", - "user": 12 - }, - "model": "admin.logentry", - "pk": 482 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-02T08:45:35Z", - "change_message": "Hinzugefügt.", - "content_type": 70, - "object_id": "1", - "object_repr": "ÖBL Haupttext", - "user": 12 - }, - "model": "admin.logentry", - "pk": 483 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-02T08:45:50Z", - "change_message": "Hinzugefügt.", - "content_type": 70, - "object_id": "2", - "object_repr": "Öbl Kurzinfo", - "user": 12 - }, - "model": "admin.logentry", - "pk": 484 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-02T08:49:51Z", - "change_message": "Hinzugefügt.", - "content_type": 64, - "object_id": "2", - "object_repr": "Person Institution Form", - "user": 12 - }, - "model": "admin.logentry", - "pk": 485 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-02T08:50:13Z", - "change_message": "Hinzugefügt.", - "content_type": 65, - "object_id": "2", - "object_repr": "Person Institution Relation", - "user": 12 - }, - "model": "admin.logentry", - "pk": 486 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-05T09:01:30Z", - "change_message": "Hinzugefügt.", - "content_type": 4, - "object_id": "14", - "object_repr": "KaiserM", - "user": 12 - }, - "model": "admin.logentry", - "pk": 487 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-08-05T09:02:10Z", - "change_message": "is_staff, groups und user_permissions geändert.", - "content_type": 4, - "object_id": "14", - "object_repr": "KaiserM", - "user": 12 - }, - "model": "admin.logentry", - "pk": 488 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-08-05T09:02:40Z", - "change_message": "username geändert.", - "content_type": 4, - "object_id": "14", - "object_repr": "MKaiser", - "user": 12 - }, - "model": "admin.logentry", - "pk": 489 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-05T12:44:55Z", - "change_message": "Hinzugefügt.", - "content_type": 4, - "object_id": "15", - "object_repr": "JKerschner", - "user": 12 - }, - "model": "admin.logentry", - "pk": 490 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-08-05T12:45:10Z", - "change_message": "is_staff und groups geändert.", - "content_type": 4, - "object_id": "15", - "object_repr": "JKerschner", - "user": 12 - }, - "model": "admin.logentry", - "pk": 491 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-22T14:47:23Z", - "change_message": "Hinzugefügt.", - "content_type": 4, - "object_id": "16", - "object_repr": "ABernard", - "user": 12 - }, - "model": "admin.logentry", - "pk": 492 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-08-22T14:47:41Z", - "change_message": "is_staff, groups und user_permissions geändert.", - "content_type": 4, - "object_id": "16", - "object_repr": "ABernard", - "user": 12 - }, - "model": "admin.logentry", - "pk": 493 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-26T08:00:33Z", - "change_message": "Hinzugefügt.", - "content_type": 4, - "object_id": "17", - "object_repr": "MDurco", - "user": 12 - }, - "model": "admin.logentry", - "pk": 494 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-08-26T08:00:50Z", - "change_message": "is_staff, is_superuser und groups geändert.", - "content_type": 4, - "object_id": "17", - "object_repr": "MDurco", - "user": 12 - }, - "model": "admin.logentry", - "pk": 495 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-26T08:01:14Z", - "change_message": "Hinzugefügt.", - "content_type": 72, - "object_id": "3d956846291ca55f4b4aada950364cd3447e579a", - "object_repr": "3d956846291ca55f4b4aada950364cd3447e579a", - "user": 12 - }, - "model": "admin.logentry", - "pk": 496 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-08-26T08:01:26Z", - "change_message": "Hinzugefügt.", - "content_type": 72, - "object_id": "bb650ee43b63b5e13cbac9320157b08c36099452", - "object_repr": "bb650ee43b63b5e13cbac9320157b08c36099452", - "user": 12 - }, - "model": "admin.logentry", - "pk": 497 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-09-05T08:05:05Z", - "change_message": "Hinzugefügt.", - "content_type": 4, - "object_id": "18", - "object_repr": "CGruber", - "user": 12 - }, - "model": "admin.logentry", - "pk": 577 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-09-05T08:05:29Z", - "change_message": "is_staff, groups und user_permissions geändert.", - "content_type": 4, - "object_id": "18", - "object_repr": "CGruber", - "user": 12 - }, - "model": "admin.logentry", - "pk": 578 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-09-06T10:50:39Z", - "change_message": "collections geändert.", - "content_type": 24, - "object_id": "130", - "object_repr": "ÖBL Haupttext", - "user": 12 - }, - "model": "admin.logentry", - "pk": 679 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-09-06T10:51:00Z", - "change_message": "collections geändert.", - "content_type": 24, - "object_id": "131", - "object_repr": "ÖBL Kurzinfo", - "user": 12 - }, - "model": "admin.logentry", - "pk": 680 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-09-06T14:33:23Z", - "change_message": "name_reverse geändert.", - "content_type": 25, - "object_id": "5608", - "object_repr": "undefined", - "user": 12 - }, - "model": "admin.logentry", - "pk": 681 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-09-07T10:05:46Z", - "change_message": "collections geändert.", - "content_type": 24, - "object_id": "131", - "object_repr": "ÖBL Kurzinfo", - "user": 12 - }, - "model": "admin.logentry", - "pk": 682 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-09-07T10:05:53Z", - "change_message": "collections geändert.", - "content_type": 24, - "object_id": "130", - "object_repr": "ÖBL Haupttext", - "user": 12 - }, - "model": "admin.logentry", - "pk": 683 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-09-07T12:36:40Z", - "change_message": "collections geändert.", - "content_type": 24, - "object_id": "130", - "object_repr": "ÖBL Haupttext", - "user": 12 - }, - "model": "admin.logentry", - "pk": 688 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-09-07T12:36:55Z", - "change_message": "collections geändert.", - "content_type": 24, - "object_id": "131", - "object_repr": "ÖBL Kurzinfo", - "user": 12 - }, - "model": "admin.logentry", - "pk": 689 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-09-21T09:15:20Z", - "change_message": "user_permissions geändert.", - "content_type": 4, - "object_id": "14", - "object_repr": "MKaiser", - "user": 12 - }, - "model": "admin.logentry", - "pk": 746 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-09-21T09:15:41Z", - "change_message": "user_permissions geändert.", - "content_type": 4, - "object_id": "16", - "object_repr": "ABernard", - "user": 12 - }, - "model": "admin.logentry", - "pk": 747 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-03T14:34:28Z", - "change_message": "Hinzugefügt.", - "content_type": 4, - "object_id": "19", - "object_repr": "DSchopper", - "user": 12 - }, - "model": "admin.logentry", - "pk": 777 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-03T14:34:40Z", - "change_message": "is_staff geändert.", - "content_type": 4, - "object_id": "19", - "object_repr": "DSchopper", - "user": 12 - }, - "model": "admin.logentry", - "pk": 778 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-03T14:34:56Z", - "change_message": "Hinzugefügt.", - "content_type": 3, - "object_id": "3", - "object_repr": "staribacher", - "user": 12 - }, - "model": "admin.logentry", - "pk": 779 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-03T14:39:11Z", - "change_message": "Keine Felder geändert.", - "content_type": 3, - "object_id": "3", - "object_repr": "staribacher", - "user": 12 - }, - "model": "admin.logentry", - "pk": 782 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-03T14:39:40Z", - "change_message": "Hinzugefügt.", - "content_type": 56, - "object_id": "20", - "object_repr": "Staribacher Personen", - "user": 12 - }, - "model": "admin.logentry", - "pk": 783 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-03T14:45:29Z", - "change_message": "Hinzugefügt.", - "content_type": 23, - "object_id": "5772", - "object_repr": "research dataset", - "user": 12 - }, - "model": "admin.logentry", - "pk": 784 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-03T14:45:47Z", - "change_message": "collection_type geändert.", - "content_type": 56, - "object_id": "20", - "object_repr": "Staribacher Personen", - "user": 12 - }, - "model": "admin.logentry", - "pk": 785 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-03T14:47:21Z", - "change_message": "Hinzugefügt.", - "content_type": 72, - "object_id": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", - "object_repr": "6123b6b38a53440ae12b990c4c89ac9d14df6b4f", - "user": 12 - }, - "model": "admin.logentry", - "pk": 786 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-06T06:56:20Z", - "change_message": "Hinzugefügt.", - "content_type": 4, - "object_id": "21", - "object_repr": "testuser", - "user": 12 - }, - "model": "admin.logentry", - "pk": 787 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-06T06:56:40Z", - "change_message": "user_permissions geändert.", - "content_type": 4, - "object_id": "21", - "object_repr": "testuser", - "user": 12 - }, - "model": "admin.logentry", - "pk": 788 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-06T06:58:12Z", - "change_message": "groups geändert.", - "content_type": 4, - "object_id": "21", - "object_repr": "testuser", - "user": 12 - }, - "model": "admin.logentry", - "pk": 789 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-06T06:58:30Z", - "change_message": "groups_allowed geändert.", - "content_type": 56, - "object_id": "17", - "object_repr": "Mittelalter 7.9.2016", - "user": 12 - }, - "model": "admin.logentry", - "pk": 790 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-06T07:00:34Z", - "change_message": "groups_allowed geändert.", - "content_type": 56, - "object_id": "16", - "object_repr": "ÖBL additional import missing XMLs 7.9.16", - "user": 12 - }, - "model": "admin.logentry", - "pk": 791 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-06T07:00:50Z", - "change_message": "groups_allowed geändert.", - "content_type": 56, - "object_id": "15", - "object_repr": "Künstlerhaus 6.9.2016", - "user": 12 - }, - "model": "admin.logentry", - "pk": 792 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-06T07:01:03Z", - "change_message": "groups_allowed geändert.", - "content_type": 56, - "object_id": "11", - "object_repr": "Presse 6.9.2016", - "user": 12 - }, - "model": "admin.logentry", - "pk": 793 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-06T07:01:25Z", - "change_message": "groups_allowed geändert.", - "content_type": 56, - "object_id": "7", - "object_repr": "ÖBL complete import test 30.8.16", - "user": 12 - }, - "model": "admin.logentry", - "pk": 794 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-06T07:01:46Z", - "change_message": "groups_allowed geändert.", - "content_type": 56, - "object_id": "8", - "object_repr": "ÖBL additional import 66lfg 2.9.16", - "user": 12 - }, - "model": "admin.logentry", - "pk": 795 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-06T07:01:55Z", - "change_message": "groups_allowed geändert.", - "content_type": 56, - "object_id": "9", - "object_repr": "ÖBL additional import 4online 2.9.16", - "user": 12 - }, - "model": "admin.logentry", - "pk": 796 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-06T07:31:41Z", - "change_message": "user_permissions geändert.", - "content_type": 4, - "object_id": "21", - "object_repr": "testuser", - "user": 12 - }, - "model": "admin.logentry", - "pk": 797 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-06T07:32:15Z", - "change_message": "user_permissions geändert.", - "content_type": 4, - "object_id": "21", - "object_repr": "testuser", - "user": 12 - }, - "model": "admin.logentry", - "pk": 798 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-07T16:13:36Z", - "change_message": "groups und user_permissions geändert.", - "content_type": 4, - "object_id": "19", - "object_repr": "DSchopper", - "user": 12 - }, - "model": "admin.logentry", - "pk": 799 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-07T16:13:56Z", - "change_message": "Hinzugefügt.", - "content_type": 4, - "object_id": "22", - "object_repr": "KrautgartnerB", - "user": 12 - }, - "model": "admin.logentry", - "pk": 800 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-07T16:14:12Z", - "change_message": "is_staff, groups und user_permissions geändert.", - "content_type": 4, - "object_id": "22", - "object_repr": "KrautgartnerB", - "user": 12 - }, - "model": "admin.logentry", - "pk": 801 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-07T16:14:34Z", - "change_message": "username geändert.", - "content_type": 4, - "object_id": "22", - "object_repr": "BKrautgartner", - "user": 12 - }, - "model": "admin.logentry", - "pk": 802 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-12T12:25:02Z", - "change_message": "Hinzugefügt.", - "content_type": 4, - "object_id": "23", - "object_repr": "staribacher_rest", - "user": 12 - }, - "model": "admin.logentry", - "pk": 803 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-12T12:25:40Z", - "change_message": "is_staff, groups und user_permissions geändert.", - "content_type": 4, - "object_id": "23", - "object_repr": "staribacher_rest", - "user": 12 - }, - "model": "admin.logentry", - "pk": 804 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-12T12:27:20Z", - "change_message": "Hinzugefügt.", - "content_type": 72, - "object_id": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", - "object_repr": "232fe9a78cfbbc8607aebf5fc5c71992343380ee", - "user": 12 - }, - "model": "admin.logentry", - "pk": 805 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-14T11:10:59Z", - "change_message": "Hinzugefügt.", - "content_type": 64, - "object_id": "3", - "object_repr": "Person Person", - "user": 12 - }, - "model": "admin.logentry", - "pk": 806 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-14T11:12:53Z", - "change_message": "Hinzugefügt.", - "content_type": 65, - "object_id": "3", - "object_repr": "Person Person Relation", - "user": 12 - }, - "model": "admin.logentry", - "pk": 807 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-14T11:13:18Z", - "change_message": "name geändert.", - "content_type": 64, - "object_id": "1", - "object_repr": "Person Place Form", - "user": 12 - }, - "model": "admin.logentry", - "pk": 808 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-14T11:13:24Z", - "change_message": "name geändert.", - "content_type": 64, - "object_id": "3", - "object_repr": "Person Person Form", - "user": 12 - }, - "model": "admin.logentry", - "pk": 809 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-24T09:04:11Z", - "change_message": "Hinzugefügt.", - "content_type": 4, - "object_id": "24", - "object_repr": "PRumpolt", - "user": 12 - }, - "model": "admin.logentry", - "pk": 810 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-10-24T09:04:27Z", - "change_message": "is_staff und groups geändert.", - "content_type": 4, - "object_id": "24", - "object_repr": "PRumpolt", - "user": 12 - }, - "model": "admin.logentry", - "pk": 811 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-10-25T10:05:10Z", - "change_message": "Hinzugefügt.", - "content_type": 71, - "object_id": "1", - "object_repr": "Default", - "user": 12 - }, - "model": "admin.logentry", - "pk": 812 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2016-12-02T15:27:02Z", - "change_message": "password geändert.", - "content_type": 4, - "object_id": "17", - "object_repr": "MDurco", - "user": 12 - }, - "model": "admin.logentry", - "pk": 823 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-12-20T11:31:20Z", - "change_message": "", - "content_type": 4, - "object_id": "4", - "object_repr": "ggaenser", - "user": 11 - }, - "model": "admin.logentry", - "pk": 830 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-12-20T11:31:20Z", - "change_message": "", - "content_type": 4, - "object_id": "2", - "object_repr": "ghoffmann", - "user": 11 - }, - "model": "admin.logentry", - "pk": 831 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-12-20T11:31:20Z", - "change_message": "", - "content_type": 4, - "object_id": "7", - "object_repr": "imarkova", - "user": 11 - }, - "model": "admin.logentry", - "pk": 832 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-12-20T11:31:20Z", - "change_message": "", - "content_type": 4, - "object_id": "10", - "object_repr": "jfeichtinger", - "user": 11 - }, - "model": "admin.logentry", - "pk": 833 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-12-20T11:31:20Z", - "change_message": "", - "content_type": 4, - "object_id": "3", - "object_repr": "ngoll", - "user": 11 - }, - "model": "admin.logentry", - "pk": 834 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-12-20T11:31:20Z", - "change_message": "", - "content_type": 4, - "object_id": "6", - "object_repr": "rburgstaller", - "user": 11 - }, - "model": "admin.logentry", - "pk": 835 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2016-12-20T11:31:20Z", - "change_message": "", - "content_type": 4, - "object_id": "5", - "object_repr": "sgoellner", - "user": 11 - }, - "model": "admin.logentry", - "pk": 836 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2016-12-21T12:04:36Z", - "change_message": "Hinzugefügt.", - "content_type": 56, - "object_id": "22", - "object_repr": "testcollection", - "user": 12 - }, - "model": "admin.logentry", - "pk": 837 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2017-01-03T09:37:26Z", - "change_message": "name_reverse geändert.", - "content_type": 29, - "object_id": "424", - "object_repr": "author", - "user": 12 - }, - "model": "admin.logentry", - "pk": 838 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2017-01-03T09:50:11Z", - "change_message": "Hinzugefügt.", - "content_type": 34, - "object_id": "5773", - "object_repr": "had event", - "user": 12 - }, - "model": "admin.logentry", - "pk": 839 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2017-01-03T12:53:35Z", - "change_message": "Hinzugefügt.", - "content_type": 30, - "object_id": "5774", - "object_repr": "veranstaltete", - "user": 12 - }, - "model": "admin.logentry", - "pk": 840 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2017-01-03T12:57:24Z", - "change_message": "Hinzugefügt.", - "content_type": 20, - "object_id": "5775", - "object_repr": "testtype", - "user": 12 - }, - "model": "admin.logentry", - "pk": 841 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2017-01-04T08:53:33Z", - "change_message": "Hinzugefügt.", - "content_type": 75, - "object_id": "5776", - "object_repr": "test relation", - "user": 12 - }, - "model": "admin.logentry", - "pk": 842 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2017-01-04T10:10:26Z", - "change_message": "name_reverse geändert.", - "content_type": 29, - "object_id": "424", - "object_repr": "author", - "user": 12 - }, - "model": "admin.logentry", - "pk": 843 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2017-01-04T10:10:54Z", - "change_message": "name_reverse geändert.", - "content_type": 29, - "object_id": "424", - "object_repr": "author", - "user": 12 - }, - "model": "admin.logentry", - "pk": 844 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2017-01-04T10:12:35Z", - "change_message": "Hinzugefügt.", - "content_type": 35, - "object_id": "5777", - "object_repr": "testrelation", - "user": 12 - }, - "model": "admin.logentry", - "pk": 845 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2017-01-04T10:13:24Z", - "change_message": "Hinzugefügt.", - "content_type": 37, - "object_id": "5778", - "object_repr": "testrelation", - "user": 12 - }, - "model": "admin.logentry", - "pk": 846 - }, - { - "fields": { - "action_flag": 3, - "action_time": "2017-01-04T11:32:32Z", - "change_message": "", - "content_type": 4, - "object_id": "13", - "object_repr": "AnonymousUser", - "user": 12 - }, - "model": "admin.logentry", - "pk": 847 - }, - { - "fields": { - "action_flag": 1, - "action_time": "2017-01-04T11:33:08Z", - "change_message": "Hinzugefügt.", - "content_type": 4, - "object_id": "14", - "object_repr": "testuser", - "user": 12 - }, - "model": "admin.logentry", - "pk": 848 - }, - { - "fields": { - "action_flag": 2, - "action_time": "2017-01-04T11:33:55Z", - "change_message": "is_staff und user_permissions geändert.", - "content_type": 4, - "object_id": "14", - "object_repr": "testuser", - "user": 12 - }, - "model": "admin.logentry", - "pk": 849 - } -] \ No newline at end of file diff --git a/apis_core/apis_entities/fixtures/fixtures_3_5_17.json b/apis_core/apis_entities/fixtures/fixtures_3_5_17.json deleted file mode 100644 index 4397125..0000000 --- a/apis_core/apis_entities/fixtures/fixtures_3_5_17.json +++ /dev/null @@ -1 +0,0 @@ -[{"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/forms.py b/apis_core/apis_entities/forms.py index 24146e0..282f881 100644 --- a/apis_core/apis_entities/forms.py +++ b/apis_core/apis_entities/forms.py @@ -7,7 +7,6 @@ from django import forms from django.conf import settings from django.contrib.contenttypes.models import ContentType -from django.core.validators import URLValidator from django.db.models.fields import BLANK_CHOICE_DASH from django.forms import ModelMultipleChoiceField, ModelChoiceField from django.urls import reverse @@ -15,13 +14,9 @@ from apis_core.apis_metainfo.models import Text, Uri, Collection from apis_core.apis_vocabularies.models import TextType from apis_core.helper_functions import DateParser -from apis_core.helper_functions.RDFParser import RDFParser from .fields import ListSelect2, Select2Multiple from .models import AbstractEntity -if "apis_highlighter" in settings.INSTALLED_APPS: - from apis_highlighter.models import AnnotationProject - class SearchForm(forms.Form): search = forms.CharField(label="Search") @@ -37,7 +32,6 @@ def helper(self): def get_entities_form(entity): - # TODO __sresch__ : consider moving this class outside of the function call to avoid redundant class definitions class GenericEntitiesForm(forms.ModelForm): class Meta: @@ -172,7 +166,6 @@ def sort_fields_list(list_unsorted, entity_label): # Make a check if all items of sort_preferences were used. If not, this indicates an out of sync setting # if len(sort_preferences) > 0: if len(sort_preferences_used) != len(sort_preferences): - differences = [] for p in sort_preferences_used: if p not in sort_preferences: @@ -205,7 +198,6 @@ def sort_fields_list(list_unsorted, entity_label): instance = getattr(self, "instance", None) if instance != None: - if instance.start_date_written: self.fields[ "start_date_written" @@ -247,50 +239,6 @@ def save(self, *args, **kwargs): return GenericEntitiesForm -class GenericEntitiesStanbolForm(forms.Form): - def save(self, *args, **kwargs): - cd = self.cleaned_data - entity = RDFParser(cd["entity"], self.entity.title()).get_or_create() - return entity - - def __init__(self, entity, *args, **kwargs): - - attrs = { - "data-placeholder": "Type to get suggestions", - "data-minimum-input-length": getattr(settings, "APIS_MIN_CHAR", 3), - "data-html": True, - "style": "width: auto", - } - ent_merge_pk = kwargs.pop("ent_merge_pk", False) - super(GenericEntitiesStanbolForm, self).__init__(*args, **kwargs) - self.entity = entity - self.helper = FormHelper() - form_kwargs = {"entity": entity} - url = reverse( - "apis:apis_entities:generic_entities_autocomplete", - args=[entity.title(), "remove"], - ) - label = "Create {} from reference resources".format(entity.title()) - button_label = "Create" - if ent_merge_pk: - form_kwargs["ent_merge_pk"] = ent_merge_pk - url = reverse( - "apis:apis_entities:generic_entities_autocomplete", - args=[entity.title(), ent_merge_pk], - ) - label = "Search for {0} in reference resources or db".format(entity.title()) - button_label = "Merge" - self.helper.form_action = reverse( - "apis:apis_entities:generic_entities_stanbol_create", kwargs=form_kwargs - ) - self.helper.add_input(Submit("submit", button_label)) - self.fields["entity"] = autocomplete.Select2ListCreateChoiceField( - label=label, - widget=ListSelect2(url=url, attrs=attrs), - validators=[URLValidator], - ) - - class FullTextForm(forms.Form): def save(self, entity): cd = self.cleaned_data diff --git a/apis_core/apis_entities/list_view_event.py b/apis_core/apis_entities/list_view_event.py index 37c2b9e..912979e 100644 --- a/apis_core/apis_entities/list_view_event.py +++ b/apis_core/apis_entities/list_view_event.py @@ -186,7 +186,7 @@ class EventListView(GenericListView): init_columns = ["id", "name", "start_date", "kind", "placeevent_set"] exclude_columns = excluded_cols enable_merge = False - template_name = "apis_entities/list_views/list.html" + template_name = "apis_entities/list_view.html" verbose_name = "Ereignisse" help_text = "Ereignisse help text" icon = "bi bi-calendar3 apis-event big-icons" diff --git a/apis_core/apis_entities/list_view_institution.py b/apis_core/apis_entities/list_view_institution.py index 1e71d04..81d1667 100644 --- a/apis_core/apis_entities/list_view_institution.py +++ b/apis_core/apis_entities/list_view_institution.py @@ -212,7 +212,7 @@ class InstitutionListView(GenericListView): ] exclude_columns = excluded_cols enable_merge = False - template_name = "apis_entities/list_views/list.html" + template_name = "apis_entities/list_view.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/list_view_person.py b/apis_core/apis_entities/list_view_person.py index 30c299a..421af99 100644 --- a/apis_core/apis_entities/list_view_person.py +++ b/apis_core/apis_entities/list_view_person.py @@ -225,4 +225,4 @@ class PersonListView(GenericListView): ] exclude_columns = excluded_cols enable_merge = False - template_name = "apis_entities/list_views/list.html" + template_name = "apis_entities/list_view.html" diff --git a/apis_core/apis_entities/list_view_place.py b/apis_core/apis_entities/list_view_place.py index e0af0b2..f58c87f 100644 --- a/apis_core/apis_entities/list_view_place.py +++ b/apis_core/apis_entities/list_view_place.py @@ -149,7 +149,7 @@ class PlaceListView(GenericListView): ] exclude_columns = excluded_cols enable_merge = False - template_name = "apis_entities/list_views/list.html" + template_name = "apis_entities/list_view.html" verbose_name = "Orte" help_text = "Orte help text" icon = "bi bi-map apis-place big-icons" diff --git a/apis_core/apis_entities/list_view_uris.py b/apis_core/apis_entities/list_view_uris.py index 96287c7..f23389b 100644 --- a/apis_core/apis_entities/list_view_uris.py +++ b/apis_core/apis_entities/list_view_uris.py @@ -75,7 +75,7 @@ class UriListView(GenericListView): init_columns = ["id", "uri", "domain", "entity"] exclude_columns = ["loaded", "loaded_time", "rdf_link"] enable_merge = False - template_name = "apis_entities/list_views/list.html" + template_name = "apis_entities/list_view.html" verbose_name = "Uris" help_text = "Uris help text" icon = "bi bi-link-45deg apis-uri big-icons" diff --git a/apis_core/apis_entities/list_view_work.py b/apis_core/apis_entities/list_view_work.py index 6c3dd18..60509ce 100644 --- a/apis_core/apis_entities/list_view_work.py +++ b/apis_core/apis_entities/list_view_work.py @@ -168,7 +168,7 @@ class WorkListView(GenericListView): ] exclude_columns = excluded_cols enable_merge = False - template_name = "apis_entities/list_views/list.html" + template_name = "apis_entities/list_view.html" verbose_name = "Werke" help_text = "Werke help text" icon = "bi bi-book apis-work big-icons" diff --git a/apis_core/apis_entities/management/commands/normalize_uris.py b/apis_core/apis_entities/management/commands/normalize_uris.py deleted file mode 100644 index bb16949..0000000 --- a/apis_core/apis_entities/management/commands/normalize_uris.py +++ /dev/null @@ -1,31 +0,0 @@ -import os - -import yaml -from django.conf import settings -from django.core.management.base import BaseCommand -from django.db import IntegrityError - -from apis_core.apis_metainfo.models import Uri -from apis_core.helper_functions.RDFParser import clean_uri - -uri_settings_file = os.path.join( - settings.BASE_DIR, "apis_core", "default_settings", "URI_replace_settings.yml" -) - -sett = yaml.load(open(uri_settings_file, "r")) - - -class Command(BaseCommand): - # Show this when the user types help - help = "normalizes Uris" - - def handle(self, *args, **options): - for x in Uri.objects.all(): - old_uri = x.uri - new_uri = clean_uri(sett, old_uri) - try: - x.uri = new_uri - x.save() - except IntegrityError: - print(x) - return "all done" diff --git a/apis_core/apis_entities/management/commands/resolve_abbreviations.py b/apis_core/apis_entities/management/commands/resolve_abbreviations.py deleted file mode 100644 index ec1b463..0000000 --- a/apis_core/apis_entities/management/commands/resolve_abbreviations.py +++ /dev/null @@ -1,126 +0,0 @@ -import ast -import logging - -import reversion -from django.contrib.auth.models import User -from django.core.management.base import BaseCommand, CommandError -from entities.models import Person -from helper_functions.abbreviation_solver import ResolveAbbreviations -from metainfo.models import Text -from vocabularies.models import TextType - - -class Command(BaseCommand): - help = "Command to resolve abbreviations in APIS biographies." - - def add_arguments(self, parser): - parser.add_argument( - "--person", - action="store", - dest="person", - default=False, - help="Give a dictionary of query arguments for the persons.", - ) - - parser.add_argument( - "--includeall", - action="store_true", - dest="includeall", - default=False, - help='Use "includeaall" to include all persons (overides the person argument).', - ) - - parser.add_argument( - "--texts", - action="append", - dest="texts", - default=[], - help="Use to give texttypes to resolve.", - ) - - parser.add_argument( - "--alltexts", - action="store_true", - dest="alltexts", - default=False, - help="Use to give process all texts associated with the specified person (overrides texts attribute).", - ) - - parser.add_argument( - "--appendtexttype", - action="store", - dest="appendtexttype", - default=False, - help="Term to append to the actual texttype\ - to store the resolved text. Original texttypes are used if not given.", - ) - - parser.add_argument( - "--username", - action="store", - dest="username", - default=False, - help="Sketch engine username.", - ) - - parser.add_argument( - "--password", - action="store", - dest="password", - default=False, - help="Sketch engine password.", - ) - - def handle(self, *args, **options): - # print(options) - user = User.objects.get(username="management_bot") - user_sketch = options["username"] - password_sketch = options["password"] - txt_type_new = False - if options["includeall"]: - pq = Person.objects.all() - else: - if options["person"]: - q_dict = ast.literal_eval(options["person"].strip()) - pq = Person.objects.filter(**q_dict) - else: - raise CommandError( - "You need to specify either a queryset for Persons or use --includeall" - ) - if options["alltexts"]: - tq = Text.objects.filter(tempentityclass__in=pq) - else: - if options["texts"]: - t_type = TextType.objects.filter(name__in=options["texts"]) - tq = Text.objects.filter(tempentityclass__in=pq, kind=t_type) - else: - tq = Text.objects.filter(tempentityclass__in=pq) - with reversion.create_revision(): - for txt in tq[:2]: - if options["appendtexttype"]: - txt_type_new, created = TextType.objects.get_or_create( - name="{}_{}".format(options["text"], options["appendtexttype"]) - ) - if not txt_type_new: - txt_type_new, created = TextType.objects.get_or_create( - name="default type resolved text" - ) - pers = txt.tempentityclass_set.all().values_list("pk", flat=True) - pers = Person.objects.filter(pk__in=pers) - if len(pers) != 1: - logging.warning( - "Could not identify a persons name. Resolving without person names." - ) - pers_name = None - else: - pers_name = [pers[0].first_name, pers[0].name] - res = ResolveAbbreviations( - text=txt.text, - person=pers_name, - user=user_sketch, - password=password_sketch, - ) - txt_resolved = res.resolve() - t1 = Text.objects.create(text=txt_resolved, kind=txt_type_new) - for pers2 in pers: - pers2.text.add(t1) diff --git a/apis_core/apis_entities/management/commands/serialize_to_cidoc.py b/apis_core/apis_entities/management/commands/serialize_to_cidoc.py deleted file mode 100644 index dd91d60..0000000 --- a/apis_core/apis_entities/management/commands/serialize_to_cidoc.py +++ /dev/null @@ -1,421 +0,0 @@ -import json -import pickle -from rdflib.term import URIRef - -import requests -from SPARQLWrapper import SPARQLWrapper, POST, BASIC, JSON -from django.conf import settings -from django.contrib.contenttypes.models import ContentType -from django.core.management.base import BaseCommand -from rdflib import Graph -from rdflib.plugins.memory import IOMemory - -from apis_core.apis_entities.api_renderers import EntityToCIDOC -from apis_core.apis_entities.models import AbstractEntity -from apis_core.apis_entities.serializers_generic import EntitySerializer -from apis_core.apis_vocabularies.api_renderers import VocabToSkos -from apis_core.apis_vocabularies.serializers import GenericVocabsSerializer - -map_ct = { - "trig": ("application/x-trig", "trig"), - "trix": ("application/trix", "trix"), - "xml": ("application/rdf+xml", "xml"), - "turtle": ("application/x-turtle", "ttl"), - "n3": ("text/rdf+n3", "n3"), -} - -base_uri = getattr(settings, "APIS_BASE_URI", "http://apis.info") -if base_uri.endswith("/"): - base_uri = base_uri[:-1] - - -class Command(BaseCommand): - help = "Command to serialize APIS data to cidoc and update a triple store." - - def add_arguments(self, parser): - parser.add_argument( - "--filter", - action="store", - dest="filter", - default="{}", - help="Specify a dictionary of filter arguments for the Entity queryset.", - ) - - parser.add_argument( - "--entity", - action="store", - dest="entity", - default="Person", - help="Specify the named entity to serialize.", - ) - - parser.add_argument( - "--update", - action="store_true", - dest="update", - default=False, - help="Use to update triple store (needs credentials).", - ) - - parser.add_argument( - "--triple-store", - action="store", - dest="triplestore", - default=False, - help="Specify a tuple of URL, username, password to access triple-store.", - ) - - parser.add_argument( - "--delete", - action="store_true", - dest="delete", - default=True, - help="Use to delete the named graph before inserting (defaults to True).", - ) - - parser.add_argument( - "--named-graph", - action="store", - dest="namedgraph", - default=False, - help="Uri of named graph to use.", - ) - - parser.add_argument( - "--named-graph-vocabs", - action="store", - dest="namedgraph-vocabs", - default=False, - help='Uri of named graph to use for serialization of Vovcabs. If this is not set "/vocabs#" is appended to the main named graph', - ) - - parser.add_argument( - "--output", - action="store", - dest="output", - default=False, - help="Path of file to store RDF in.", - ) - - parser.add_argument( - "--update-vocabs", - action="store_true", - dest="update-vocabs", - default=False, - help="Specify whether to update skosmos vocabularies (needs settings in place).", - ) - - parser.add_argument( - "--format", - action="store", - dest="format", - default="xml", - help="Format to use (xml, trig, n3, turtle, nquads, trix).", - ) - - parser.add_argument( - "--provenance", - action="store_true", - dest="provenance", - default=True, - help="Specify whether to add void provenance graph (Boolean, Default: True).", - ) - - parser.add_argument( - "--use-cache", - action="store_true", - dest="use-cache", - default=False, - help="Set if you want to use the cached files instead of serializing them egain (Boolean, Default: False).", - ) - - parser.add_argument( - "--include-vocabs", - action="store_true", - dest="include-vocabs", - default=False, - help="Set if you want to include the vocabs in the entities graph (Boolean, Default: False).", - ) - - parser.add_argument( - "--only-published", - action="store_true", - dest="only-published", - default=False, - help="Set if you want to include published relations only. (Boolean, Default: False).", - ) - - def handle(self, *args, **options): - if options["namedgraph"]: - named_graph = options["namedgraph"] - else: - named_graph = f"{base_uri}/entities#" - if options["namedgraph-vocabs"]: - named_graph_vocabs = options["namedgraph-vocabs"] - else: - if named_graph[-1] == "#": - named_graph_vocabs = "/".join(named_graph.split("/")[:-1]) + "/vocabs#" - else: - named_graph_vocabs = named_graph + "/vocabs#" - ent = AbstractEntity.get_entity_class_of_name(options["entity"]) - res = [] - objcts = ent.objects.filter(**json.loads(options["filter"])) - if objcts.filter(uri__uri__icontains=" ").count() > 0: - self.stdout.write(self.style.ERROR("URIs found that contain whitespaces")) - return - if objcts.count() > 1000 and not options["use-cache"]: - self.stdout.write(self.style.NOTICE("More than 1000 objects, caching")) - cnt = 0 - while (cnt * 1000) < objcts.count(): - r = [] - for e in objcts[1000 * cnt : (1000 * cnt + 1000)]: - r.append( - EntitySerializer( - e, only_published=options["only-published"] - ).data - ) - with open(f"serializer_cache/{cnt}.pkl", "wb") as out: - pickle.dump(r, out) - self.stdout.write( - self.style.NOTICE( - f"Pickle written to: serializer_cache/{cnt}.pkl" - ) - ) - cnt += 1 - res = "serializer_cache" - elif not options["use-cache"]: - for e in objcts: - res.append( - EntitySerializer(e, only_published=options["only-published"]).data - ) - elif options["use-cache"]: - self.stdout.write(self.style.NOTICE("using cache for serializing")) - res = "serializer_cache" - self.stdout.write(self.style.SUCCESS(f"serialized {len(res)} objects")) - self.stdout.write(self.style.NOTICE("Starting to create the graph")) - store = IOMemory() - self.stdout.write(self.style.NOTICE("Starting to create the SKOS vocabs.")) - graph2 = Graph(store, identifier=URIRef(named_graph_vocabs)) - v_res_ser = [] - for v in ContentType.objects.filter(app_label="apis_vocabularies").exclude( - model__in=["vocabnames"] - ): - v_res = v.model_class().objects.all() - if v_res.count() > 0: - v_res_ser.extend(GenericVocabsSerializer(v_res, many=True).data) - graph2, store = VocabToSkos().render(v_res_ser, g=graph2, store=store) - fin_vocab = graph2 - fin, store = EntityToCIDOC().render( - res, - format_1=options["format"], - store=store, - binary=True, - named_graph=named_graph, - provenance=options["provenance"], - ) - if options["output"]: - with open(options["output"], "wb") as out: - out.write(fin.serialize(format=options["format"])) - if fin_vocab: - with open( - f"{options['output'].split('.')[0]+'_vocabs.'+options['output'].split('.')[1]}", - "wb", - ) as out2: - out2.write(fin_vocab.serialize(format=options["format"])) - self.stdout.write(self.style.SUCCESS(f'Wrote file to {options["output"]}')) - if options["update-vocabs"]: - vocabs_settings = getattr(settings, "APIS_SKOSMOS", None) - if isinstance(vocabs_settings, dict): - if "triplestore" in vocabs_settings.keys(): - vocabs_ts_url = vocabs_settings["triplestore"]["url"] - vocabs_ts_user = vocabs_settings["triplestore"]["user"] - vocabs_ts_password = vocabs_settings["triplestore"]["password"] - sparql_serv_skosmos = SPARQLWrapper(f"{vocabs_ts_url}/sparql") - sparql_serv_skosmos.setHTTPAuth(BASIC) - sparql_serv_skosmos.setCredentials( - vocabs_ts_user, vocabs_ts_password - ) - sparql_serv_skosmos.setMethod(POST) - sparql_serv_skosmos.setReturnFormat(JSON) - if options["delete"]: - sp_count = f""" - SELECT (COUNT(*) AS ?triples) - FROM <{named_graph_vocabs}> - WHERE {{ ?s ?p ?o }} - """ - sparql_serv_skosmos.setQuery(sp_count) - res_count_1 = sparql_serv_skosmos.query().convert() - count = int( - res_count_1["results"]["bindings"][0]["triples"]["value"] - ) - if count > 0: - self.stdout.write( - self.style.NOTICE( - f"Found {count} triples in skosmos named graph >> deleting" - ) - ) - params = {"graph": f"<{named_graph_vocabs}>"} - res3 = requests.delete( - f"{vocabs_ts_url}/graph", - auth=(vocabs_ts_user, vocabs_ts_password), - headers={"Accept": "application/xml"}, - params=params, - ) - self.stdout.write( - self.style.NOTICE( - f"Deleted the graph: {res3.text} {res3.status_code}" - ) - ) - header = {"Content-Type": map_ct[options["format"]][0]} - res2 = requests.post( - f"{vocabs_ts_url}/graph", - headers=header, - data=fin_vocab.serialize(format=options["format"]), - auth=(vocabs_ts_user, vocabs_ts_password), - ) - sparql_serv_skosmos.setQuery(sp_count) - res_count_1 = sparql_serv_skosmos.query().convert() - count = int( - res_count_1["results"]["bindings"][0]["triples"]["value"] - ) - if count > 0: - self.stdout.write( - self.style.NOTICE( - f"Found {count} triples after update in store" - ) - ) - if res2.status_code != 200: - self.stdout.write( - self.style.ERROR( - f"Something went wrong when updating: {res2.text}" - ) - ) - else: - self.stdout.write( - self.style.SUCCESS("Updated the triplestore.") - ) - else: - self.stdout.write( - self.style.ERROR( - "You need to specify settings for the SKOSMOS triplestore" - ) - ) - - if options["update"]: - print(options["triplestore"]) - if not options["triplestore"]: - url, username, password = getattr( - settings, "APIS_BLAZEGRAPH", (False, False, False) - ) - if not url: - self.stdout.write( - self.style.ERROR( - "When asking for update you need to either specify settings in APIS_BLAZEGRAPH or in the management command (--triple-store)" - ) - ) - return - else: - url, username, password = options["triplestore"].split(",") - if not url or not username or not password: - self.stdout.write( - self.style.ERROR("Missing some settings for Triplestore update") - ) - return - sparql_serv = SPARQLWrapper(url) - sparql_serv.setHTTPAuth(BASIC) - sparql_serv.setCredentials(username, password) - sparql_serv.setMethod(POST) - sparql_serv.setReturnFormat(JSON) - sp_count = f""" - SELECT (COUNT(*) AS ?triples) - FROM <{named_graph}> - WHERE {{ ?s ?p ?o }} - """ - if options["delete"]: - sparql_serv.setQuery(sp_count) - res_count_1 = sparql_serv.query().convert() - count = int(res_count_1["results"]["bindings"][0]["triples"]["value"]) - if count > 0: - self.stdout.write( - self.style.NOTICE( - f"Found {count} triples in named graph >> deleting" - ) - ) - params = {"c": f"<{named_graph}>"} - res3 = requests.delete( - url, - auth=(username, password), - headers={"Accept": "application/xml"}, - params=params, - ) - self.stdout.write( - self.style.NOTICE( - f"Deleted the graph: {res3.text} {res3.status_code}" - ) - ) - if named_graph_vocabs: - params = {"c": f"<{named_graph_vocabs}>"} - res4 = requests.delete( - url, - auth=(username, password), - headers={"Accept": "application/xml"}, - params=params, - ) - self.stdout.write( - self.style.NOTICE( - f"Deleted the vocabs graph: {res4.text} {res4.status_code}" - ) - ) - for f in ["class", "property"]: - sparql_serv.setQuery( - f""" - PREFIX rdf: - PREFIX rdfs: - PREFIX void: - - - DELETE WHERE {{ - GRAPH {{ - <{named_graph}> void:{f}Partition ?o. - ?o ?p ?s - }} - }} - """ - ) - res4 = sparql_serv.query().convert() - sparql_serv.setQuery( - f""" - PREFIX rdf: - PREFIX rdfs: - PREFIX void: - - - DELETE WHERE {{ - GRAPH {{ - <{named_graph}> ?p ?o. - - }} - }} - """ - ) - res4 = sparql_serv.query() - header = {"Content-Type": map_ct[options["format"]][0]} - res2 = requests.post( - url, - headers=header, - data=fin.serialize(format=options["format"]), - auth=(username, password), - ) - sparql_serv.setQuery(sp_count) - res_count_1 = sparql_serv.query().convert() - count = int(res_count_1["results"]["bindings"][0]["triples"]["value"]) - if count > 0: - self.stdout.write( - self.style.NOTICE(f"Found {count} triples after update in store") - ) - if res2.status_code != 200: - self.stdout.write( - self.style.ERROR(f"Something went wrong when updating: {res2.text}") - ) - else: - self.stdout.write(self.style.SUCCESS("Updated the triplestore.")) diff --git a/apis_core/apis_entities/management/commands/serialize_to_json.py b/apis_core/apis_entities/management/commands/serialize_to_json.py deleted file mode 100644 index 4d84166..0000000 --- a/apis_core/apis_entities/management/commands/serialize_to_json.py +++ /dev/null @@ -1,116 +0,0 @@ -import json -import os -import pickle - -from django.core.management.base import BaseCommand -from django.core.serializers.json import DjangoJSONEncoder - -from apis_core.apis_entities.models import AbstractEntity -from apis_core.apis_entities.serializers_generic import EntitySerializer - - -class Command(BaseCommand): - help = "Command to serialize APIS data to json and store the data." - - def add_arguments(self, parser): - parser.add_argument( - "--entity", - action="store", - dest="entity", - default="Person", - help="Specify the named entity to serialize.", - ) - - parser.add_argument( - "--output", - action="store", - dest="output", - default=False, - help="Path of file to store JSON in.", - ) - - parser.add_argument( - "--only-published", - action="store_true", - dest="only-published", - default=False, - help="Set if you want to include published relations only. (Boolean, Default: False).", - ) - - parser.add_argument( - "--filter", - action="store", - dest="filter", - default="{}", - help="Specify a dictionary of filter arguments for the Entity queryset.", - ) - - parser.add_argument( - "--use-cache", - action="store_true", - dest="use-cache", - default=False, - help="Set if you want to use the cached files instead of serializing them egain (Boolean, Default: False).", - ) - - parser.add_argument( - "--add-texts", - action="store_true", - dest="add-texts", - default=False, - help="Set if you want to add the texts attached to the entities (Boolean, Default: False).", - ) - - def handle(self, *args, **options): - ent = AbstractEntity.get_entity_class_of_name(options["entity"]) - res = [] - objcts = ent.objects.filter(**json.loads(options["filter"])) - if objcts.filter(uri__uri__icontains=" ").count() > 0: - self.stdout.write(self.style.ERROR("URIs found that contain whitespaces")) - return - if objcts.count() > 1000 and not options["use-cache"]: - self.stdout.write(self.style.NOTICE("More than 1000 objects, caching")) - cnt = 0 - while (cnt * 1000) < objcts.count(): - r = [] - for e in objcts[1000 * cnt : (1000 * cnt + 1000)]: - r.append( - EntitySerializer( - e, - only_published=options["only-published"], - add_texts=options["add-texts"], - ).data - ) - with open(f"serializer_cache/{cnt}.pkl", "wb") as out: - pickle.dump(r, out) - self.stdout.write( - self.style.NOTICE( - f"Pickle written to: serializer_cache/{cnt}.pkl" - ) - ) - cnt += 1 - res = "/home/sennierer/projects/apis-webpage-base/serializer_cache" - elif not options["use-cache"]: - for e in objcts: - res.append( - EntitySerializer( - e, - only_published=options["only-published"], - add_texts=options["add-texts"], - ).data - ) - elif options["use-cache"]: - self.stdout.write(self.style.NOTICE("using cache for serializing")) - res = "/home/sennierer/projects/apis-webpage-base/serializer_cache" - self.stdout.write(self.style.SUCCESS(f"serialized {len(res)} objects")) - self.stdout.write(self.style.NOTICE("Starting to create the json file")) - with open(options["output"], "w+") as outp: - if isinstance(res, str): - directory = os.fsencode(res) - data_lst = [] - for fn in os.listdir(directory): - with open(os.path.join(directory, fn), "rb") as inf: - data_lst.extend(pickle.load(inf)) - json.dump(data_lst, outp, cls=DjangoJSONEncoder) - elif isinstance(res, list): - json.dump(res, out, pcls=DjangoJSONEncoder) diff --git a/apis_core/apis_entities/migrations/0001_initial.py b/apis_core/apis_entities/migrations/0001_initial.py index 226e23e..9d83242 100644 --- a/apis_core/apis_entities/migrations/0001_initial.py +++ b/apis_core/apis_entities/migrations/0001_initial.py @@ -1,11 +1,10 @@ -# Generated by Django 2.1.12 on 2020-01-21 12:27 +# Generated by Django 5.0 on 2023-12-19 07:19 import django.db.models.deletion from django.db import migrations, models class Migration(migrations.Migration): - initial = True dependencies = [ @@ -24,12 +23,12 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ - "abstract": False, + "ordering": ["id"], }, bases=("apis_metainfo.tempentityclass",), ), @@ -44,12 +43,12 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ - "abstract": False, + "ordering": ["id"], }, bases=("apis_metainfo.tempentityclass",), ), @@ -64,7 +63,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ( @@ -80,13 +79,18 @@ class Migration(migrations.Migration): "gender", models.CharField( blank=True, - choices=[("female", "female"), ("male", "male")], + choices=[ + ("female", "female"), + ("male", "male"), + ("third gender", "third gender"), + ], max_length=15, + null=True, ), ), ], options={ - "abstract": False, + "ordering": ["id"], }, bases=("apis_metainfo.tempentityclass",), ), @@ -101,7 +105,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ( @@ -114,7 +118,7 @@ class Migration(migrations.Migration): ), ], options={ - "abstract": False, + "ordering": ["id"], }, bases=("apis_metainfo.tempentityclass",), ), @@ -129,12 +133,12 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ - "abstract": False, + "ordering": ["id"], }, bases=("apis_metainfo.tempentityclass",), ), diff --git a/apis_core/apis_entities/migrations/0002_auto_20200121_1227.py b/apis_core/apis_entities/migrations/0002_initial.py similarity index 80% rename from apis_core/apis_entities/migrations/0002_auto_20200121_1227.py rename to apis_core/apis_entities/migrations/0002_initial.py index 979c7ec..cb30958 100644 --- a/apis_core/apis_entities/migrations/0002_auto_20200121_1227.py +++ b/apis_core/apis_entities/migrations/0002_initial.py @@ -1,178 +1,167 @@ -# Generated by Django 2.1.12 on 2020-01-21 12:27 +# Generated by Django 5.0 on 2023-12-19 07:19 import django.db.models.deletion from django.db import migrations, models class Migration(migrations.Migration): - initial = True dependencies = [ - ("apis_vocabularies", "0001_initial"), ("apis_entities", "0001_initial"), ("apis_relations", "0001_initial"), + ("apis_vocabularies", "0001_initial"), ] operations = [ migrations.AddField( - model_name="work", - name="event_relationtype_set", + model_name="event", + name="eventb_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="work_set", - through="apis_relations.EventWork", - to="apis_vocabularies.EventWorkRelation", + related_name="eventa_set", + through="apis_relations.EventEvent", + to="apis_vocabularies.eventeventrelation", ), ), migrations.AddField( - model_name="work", + model_name="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", name="institution_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="work_set", - through="apis_relations.InstitutionWork", - to="apis_vocabularies.InstitutionWorkRelation", + related_name="event_set", + through="apis_relations.InstitutionEvent", + to="apis_vocabularies.institutioneventrelation", ), ), migrations.AddField( - model_name="work", + model_name="event", name="kind", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, - to="apis_vocabularies.WorkType", + to="apis_vocabularies.eventtype", ), ), migrations.AddField( - model_name="work", + model_name="event", name="person_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="work_set", - through="apis_relations.PersonWork", - to="apis_vocabularies.PersonWorkRelation", + related_name="event_set", + through="apis_relations.PersonEvent", + to="apis_vocabularies.personeventrelation", ), ), migrations.AddField( - model_name="work", + model_name="event", name="place_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="work_set", - through="apis_relations.PlaceWork", - to="apis_vocabularies.PlaceWorkRelation", + related_name="event_set", + through="apis_relations.PlaceEvent", + to="apis_vocabularies.placeeventrelation", ), ), migrations.AddField( - model_name="work", - name="workB_relationtype_set", + model_name="event", + name="work_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="workA_set", - through="apis_relations.WorkWork", - to="apis_vocabularies.WorkWorkRelation", + related_name="event_set", + through="apis_relations.EventWork", + to="apis_vocabularies.eventworkrelation", ), ), migrations.AddField( - model_name="work", - name="workB_set", + model_name="institution", + name="event_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="workA_set", - through="apis_relations.WorkWork", - to="apis_entities.Work", + related_name="institution_set", + through="apis_relations.InstitutionEvent", + to="apis_vocabularies.institutioneventrelation", ), ), migrations.AddField( - model_name="place", - name="event_relationtype_set", + model_name="institution", + name="event_set", field=models.ManyToManyField( blank=True, - related_name="place_set", - through="apis_relations.PlaceEvent", - to="apis_vocabularies.PlaceEventRelation", + related_name="institution_set", + through="apis_relations.InstitutionEvent", + to="apis_entities.event", ), ), migrations.AddField( - model_name="place", - name="event_set", + model_name="institution", + name="institutionb_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="place_set", - through="apis_relations.PlaceEvent", - to="apis_entities.Event", + related_name="institutiona_set", + through="apis_relations.InstitutionInstitution", + to="apis_vocabularies.institutioninstitutionrelation", ), ), migrations.AddField( - model_name="place", - name="institution_relationtype_set", + model_name="institution", + name="institutionb_set", field=models.ManyToManyField( blank=True, - related_name="place_set", - through="apis_relations.InstitutionPlace", - to="apis_vocabularies.InstitutionPlaceRelation", + related_name="institutiona_set", + through="apis_relations.InstitutionInstitution", + to="apis_entities.institution", ), ), migrations.AddField( - model_name="place", + model_name="institution", name="kind", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, - to="apis_vocabularies.PlaceType", + to="apis_vocabularies.institutiontype", ), ), migrations.AddField( - model_name="place", + model_name="institution", name="person_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="place_set", - through="apis_relations.PersonPlace", - to="apis_vocabularies.PersonPlaceRelation", - ), - ), - migrations.AddField( - model_name="place", - name="placeB_relationtype_set", - field=models.ManyToManyField( - blank=True, - related_name="placeA_set", - through="apis_relations.PlacePlace", - to="apis_vocabularies.PlacePlaceRelation", + related_name="institution_set", + through="apis_relations.PersonInstitution", + to="apis_vocabularies.personinstitutionrelation", ), ), migrations.AddField( - model_name="place", - name="placeB_set", + model_name="institution", + name="place_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="placeA_set", - through="apis_relations.PlacePlace", - to="apis_entities.Place", + related_name="institution_set", + through="apis_relations.InstitutionPlace", + to="apis_vocabularies.institutionplacerelation", ), ), migrations.AddField( - model_name="place", + model_name="institution", name="work_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="place_set", - through="apis_relations.PlaceWork", - to="apis_vocabularies.PlaceWorkRelation", - ), - ), - migrations.AddField( - model_name="place", - name="work_set", - field=models.ManyToManyField( - blank=True, - related_name="place_set", - through="apis_relations.PlaceWork", - to="apis_entities.Work", + related_name="institution_set", + through="apis_relations.InstitutionWork", + to="apis_vocabularies.institutionworkrelation", ), ), migrations.AddField( @@ -182,7 +171,7 @@ class Migration(migrations.Migration): blank=True, related_name="person_set", through="apis_relations.PersonEvent", - to="apis_vocabularies.PersonEventRelation", + to="apis_vocabularies.personeventrelation", ), ), migrations.AddField( @@ -192,7 +181,7 @@ class Migration(migrations.Migration): blank=True, related_name="person_set", through="apis_relations.PersonEvent", - to="apis_entities.Event", + to="apis_entities.event", ), ), migrations.AddField( @@ -202,7 +191,7 @@ class Migration(migrations.Migration): blank=True, related_name="person_set", through="apis_relations.PersonInstitution", - to="apis_vocabularies.PersonInstitutionRelation", + to="apis_vocabularies.personinstitutionrelation", ), ), migrations.AddField( @@ -212,27 +201,27 @@ class Migration(migrations.Migration): blank=True, related_name="person_set", through="apis_relations.PersonInstitution", - to="apis_entities.Institution", + to="apis_entities.institution", ), ), migrations.AddField( model_name="person", - name="personB_relationtype_set", + name="personb_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="personA_set", + related_name="persona_set", through="apis_relations.PersonPerson", - to="apis_vocabularies.PersonPersonRelation", + to="apis_vocabularies.personpersonrelation", ), ), migrations.AddField( model_name="person", - name="personB_set", + name="personb_set", field=models.ManyToManyField( blank=True, - related_name="personA_set", + related_name="persona_set", through="apis_relations.PersonPerson", - to="apis_entities.Person", + to="apis_entities.person", ), ), migrations.AddField( @@ -242,30 +231,20 @@ class Migration(migrations.Migration): blank=True, related_name="person_set", through="apis_relations.PersonPlace", - to="apis_vocabularies.PersonPlaceRelation", - ), - ), - migrations.AddField( - model_name="person", - name="place_set", - field=models.ManyToManyField( - blank=True, - related_name="person_set", - through="apis_relations.PersonPlace", - to="apis_entities.Place", + to="apis_vocabularies.personplacerelation", ), ), migrations.AddField( model_name="person", name="profession", field=models.ManyToManyField( - blank=True, to="apis_vocabularies.ProfessionType" + blank=True, to="apis_vocabularies.professiontype" ), ), migrations.AddField( model_name="person", name="title", - field=models.ManyToManyField(blank=True, to="apis_vocabularies.Title"), + field=models.ManyToManyField(blank=True, to="apis_vocabularies.title"), ), migrations.AddField( model_name="person", @@ -274,187 +253,207 @@ class Migration(migrations.Migration): blank=True, related_name="person_set", through="apis_relations.PersonWork", - to="apis_vocabularies.PersonWorkRelation", - ), - ), - migrations.AddField( - model_name="person", - name="work_set", - field=models.ManyToManyField( - blank=True, - related_name="person_set", - through="apis_relations.PersonWork", - to="apis_entities.Work", + to="apis_vocabularies.personworkrelation", ), ), migrations.AddField( - model_name="institution", + model_name="place", name="event_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="institution_set", - through="apis_relations.InstitutionEvent", - to="apis_vocabularies.InstitutionEventRelation", + related_name="place_set", + through="apis_relations.PlaceEvent", + to="apis_vocabularies.placeeventrelation", ), ), migrations.AddField( - model_name="institution", + model_name="place", name="event_set", field=models.ManyToManyField( blank=True, - related_name="institution_set", - through="apis_relations.InstitutionEvent", - to="apis_entities.Event", - ), - ), - migrations.AddField( - model_name="institution", - name="institutionB_relationtype_set", - field=models.ManyToManyField( - blank=True, - related_name="institutionA_set", - through="apis_relations.InstitutionInstitution", - to="apis_vocabularies.InstitutionInstitutionRelation", + related_name="place_set", + through="apis_relations.PlaceEvent", + to="apis_entities.event", ), ), migrations.AddField( - model_name="institution", - name="institutionB_set", + model_name="place", + name="institution_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="institutionA_set", - through="apis_relations.InstitutionInstitution", - to="apis_entities.Institution", + related_name="place_set", + through="apis_relations.InstitutionPlace", + to="apis_vocabularies.institutionplacerelation", ), ), migrations.AddField( - model_name="institution", + model_name="place", name="kind", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, - to="apis_vocabularies.InstitutionType", + to="apis_vocabularies.placetype", ), ), migrations.AddField( - model_name="institution", + model_name="place", name="person_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="institution_set", - through="apis_relations.PersonInstitution", - to="apis_vocabularies.PersonInstitutionRelation", + related_name="place_set", + through="apis_relations.PersonPlace", + to="apis_vocabularies.personplacerelation", ), ), migrations.AddField( - model_name="institution", - name="place_relationtype_set", + model_name="place", + name="placeb_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="institution_set", - through="apis_relations.InstitutionPlace", - to="apis_vocabularies.InstitutionPlaceRelation", + related_name="placea_set", + through="apis_relations.PlacePlace", + to="apis_vocabularies.placeplacerelation", ), ), migrations.AddField( - model_name="institution", - name="place_set", + model_name="place", + name="placeb_set", field=models.ManyToManyField( blank=True, - related_name="institution_set", - through="apis_relations.InstitutionPlace", - to="apis_entities.Place", + related_name="placea_set", + through="apis_relations.PlacePlace", + to="apis_entities.place", ), ), migrations.AddField( - model_name="institution", + model_name="place", name="work_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="institution_set", - through="apis_relations.InstitutionWork", - to="apis_vocabularies.InstitutionWorkRelation", + related_name="place_set", + through="apis_relations.PlaceWork", + to="apis_vocabularies.placeworkrelation", ), ), migrations.AddField( - model_name="institution", - name="work_set", + model_name="person", + name="place_set", field=models.ManyToManyField( blank=True, - related_name="institution_set", - through="apis_relations.InstitutionWork", - to="apis_entities.Work", + related_name="person_set", + through="apis_relations.PersonPlace", + to="apis_entities.place", ), ), migrations.AddField( - model_name="event", - name="eventb_relationtype_set", + model_name="institution", + name="place_set", field=models.ManyToManyField( blank=True, - related_name="eventa_set", - through="apis_relations.EventEvent", - to="apis_vocabularies.EventEventRelation", + related_name="institution_set", + through="apis_relations.InstitutionPlace", + to="apis_entities.place", ), ), migrations.AddField( - model_name="event", - name="eventb_set", + model_name="work", + name="event_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="eventa_set", - through="apis_relations.EventEvent", - to="apis_entities.Event", + related_name="work_set", + through="apis_relations.EventWork", + to="apis_vocabularies.eventworkrelation", ), ), migrations.AddField( - model_name="event", + model_name="work", name="institution_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="event_set", - through="apis_relations.InstitutionEvent", - to="apis_vocabularies.InstitutionEventRelation", + related_name="work_set", + through="apis_relations.InstitutionWork", + to="apis_vocabularies.institutionworkrelation", ), ), migrations.AddField( - model_name="event", + model_name="work", name="kind", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, - to="apis_vocabularies.EventType", + to="apis_vocabularies.worktype", ), ), migrations.AddField( - model_name="event", + model_name="work", name="person_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="event_set", - through="apis_relations.PersonEvent", - to="apis_vocabularies.PersonEventRelation", + related_name="work_set", + through="apis_relations.PersonWork", + to="apis_vocabularies.personworkrelation", ), ), migrations.AddField( - model_name="event", + model_name="work", name="place_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="event_set", - through="apis_relations.PlaceEvent", - to="apis_vocabularies.PlaceEventRelation", + related_name="work_set", + through="apis_relations.PlaceWork", + to="apis_vocabularies.placeworkrelation", ), ), migrations.AddField( - model_name="event", - name="work_relationtype_set", + model_name="work", + name="workb_relationtype_set", field=models.ManyToManyField( blank=True, - related_name="event_set", - through="apis_relations.EventWork", - to="apis_vocabularies.EventWorkRelation", + related_name="worka_set", + through="apis_relations.WorkWork", + to="apis_vocabularies.workworkrelation", + ), + ), + migrations.AddField( + model_name="work", + name="workb_set", + field=models.ManyToManyField( + blank=True, + related_name="worka_set", + through="apis_relations.WorkWork", + to="apis_entities.work", + ), + ), + migrations.AddField( + model_name="place", + name="work_set", + field=models.ManyToManyField( + blank=True, + related_name="place_set", + through="apis_relations.PlaceWork", + to="apis_entities.work", + ), + ), + migrations.AddField( + model_name="person", + name="work_set", + field=models.ManyToManyField( + blank=True, + related_name="person_set", + through="apis_relations.PersonWork", + to="apis_entities.work", + ), + ), + migrations.AddField( + model_name="institution", + name="work_set", + field=models.ManyToManyField( + blank=True, + related_name="institution_set", + through="apis_relations.InstitutionWork", + to="apis_entities.work", ), ), migrations.AddField( @@ -464,7 +463,7 @@ class Migration(migrations.Migration): blank=True, related_name="event_set", through="apis_relations.EventWork", - to="apis_entities.Work", + to="apis_entities.work", ), ), ] diff --git a/apis_core/apis_entities/migrations/0003_auto_20200216_1152.py b/apis_core/apis_entities/migrations/0003_auto_20200216_1152.py deleted file mode 100644 index d31e5b2..0000000 --- a/apis_core/apis_entities/migrations/0003_auto_20200216_1152.py +++ /dev/null @@ -1,26 +0,0 @@ -# Generated by Django 2.1.2 on 2020-02-16 11:52 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ("apis_entities", "0002_auto_20200121_1227"), - ] - - operations = [ - migrations.AlterField( - model_name="person", - name="gender", - field=models.CharField( - blank=True, - choices=[ - ("female", "female"), - ("male", "male"), - ("third gender", "third gender"), - ], - max_length=15, - ), - ), - ] diff --git a/apis_core/apis_entities/migrations/0004_auto_20200722_1231.py b/apis_core/apis_entities/migrations/0004_auto_20200722_1231.py deleted file mode 100644 index 7d144e9..0000000 --- a/apis_core/apis_entities/migrations/0004_auto_20200722_1231.py +++ /dev/null @@ -1,27 +0,0 @@ -# Generated by Django 2.2.13 on 2020-07-22 12:31 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ("apis_entities", "0003_auto_20200216_1152"), - ] - - operations = [ - migrations.AlterField( - model_name="person", - name="gender", - field=models.CharField( - blank=True, - choices=[ - ("female", "female"), - ("male", "male"), - ("third gender", "third gender"), - ], - max_length=15, - null=True, - ), - ), - ] diff --git a/apis_core/apis_entities/models.py b/apis_core/apis_entities/models.py index d3f286d..8cb447f 100644 --- a/apis_core/apis_entities/models.py +++ b/apis_core/apis_entities/models.py @@ -8,7 +8,6 @@ from django.db.models import Q from django.db.models.signals import post_save from django.dispatch import receiver -from django.urls import reverse from apis_core.apis_metainfo.models import TempEntityClass, Uri from apis_core.apis_vocabularies.models import ( @@ -41,7 +40,6 @@ class Meta: abstract = True def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) self.__class__.create_relation_methods_from_manytomany_fields() @@ -49,7 +47,6 @@ def __init__(self, *args, **kwargs): #################################################################################################################### def __str__(self): - if self.__class__ == Person: def valid(name): @@ -65,7 +62,6 @@ def valid(name): return "no name provided" else: - if self.name != "": return self.name else: @@ -80,8 +76,9 @@ def get_or_create_uri(cls, uri): else: p = cls.objects.get(uri__uri=uri) return p - except: - print("Found no object corresponding to given uri.") + except Exception as e: + print(f"Error: {e}") + print(f"Found no object corresponding to given uri: {uri}.") return False @classmethod @@ -160,7 +157,6 @@ def create_function_from_manytomany_field_to_self_entity( related_entity_function_name = "get_related_" + entity_name + "_instances" if not hasattr(cls, related_entity_function_name): - if cls.__name__.lower() == entity_name: # If the related entity is the same as this current one, then set the names of the related functions # to A and B and also combine them into one function where both A and B are returned. @@ -224,20 +220,17 @@ def get_all_entity_classes(cls): """ if cls._all_entity_classes == None: - entity_classes = [] entity_names = [] for entity_name, entity_class in inspect.getmembers( sys.modules[__name__], inspect.isclass ): - if ( entity_class.__module__ == "apis_core.apis_entities.models" and entity_name != "ent_class" and entity_name != "AbstractEntity" ): - entity_classes.append(entity_class) entity_names.append(entity_name.lower()) @@ -266,7 +259,6 @@ def get_all_entity_names(cls): """ if cls._all_entity_names == None: - cls.get_all_entity_classes() return cls._all_entity_names @@ -318,7 +310,6 @@ def get_related_entity_instances(self): queryset_list = [] for entity_name in self.get_all_entity_names(): - queryset = getattr(self, "get_related_" + entity_name + "_instances")() if len(queryset) > 0: queryset_list.append(queryset) @@ -363,7 +354,6 @@ def get_related_relation_instances(self): queryset_list = [] for relation_class in self.get_related_relation_classes(): - q_args = Q() if relation_class.get_related_entity_classa() == self.__class__: @@ -394,7 +384,6 @@ def get_related_relationtype_classes(cls): """ if cls._related_relationtype_classes == None: - relationtype_classes = [] relationtype_names = [] @@ -404,11 +393,9 @@ def get_related_relationtype_classes(cls): for ( relationtype_class ) in AbstractRelationType.get_all_relationtype_classes(): - relationtype_name = relationtype_class.__name__.lower() if cls.__name__.lower() in relationtype_name: - relationtype_classes.append(relationtype_class) relationtype_names.append(relationtype_name) @@ -427,7 +414,6 @@ def get_related_relationtype_names(cls): """ if cls._related_relationtype_names == None: - cls.get_related_relationtype_classes() return cls._related_relationtype_names @@ -479,13 +465,11 @@ def get_related_relationtype_instances(self): queryset = None if entity_name != self.__class__.__name__.lower(): - queryset = ( getattr(self, entity_name + "_relationtype_set").all().distinct() ) else: - querysetA = ( getattr(self, entity_name + "A_relationtype_set").all().distinct() ) @@ -501,7 +485,6 @@ def get_related_relationtype_instances(self): class Person(AbstractEntity): - GENDER_CHOICES = ( ("female", "female"), ("male", "male"), @@ -534,7 +517,6 @@ class Meta: class Place(AbstractEntity): - kind = models.ForeignKey( PlaceType, blank=True, null=True, on_delete=models.SET_NULL ) @@ -554,7 +536,6 @@ class Meta: class Institution(AbstractEntity): - kind = models.ForeignKey( InstitutionType, blank=True, null=True, on_delete=models.SET_NULL ) @@ -566,7 +547,6 @@ class Meta: class Event(AbstractEntity): - kind = models.ForeignKey( EventType, blank=True, null=True, on_delete=models.SET_NULL ) @@ -578,7 +558,6 @@ class Meta: class Work(AbstractEntity): - kind = models.ForeignKey(WorkType, blank=True, null=True, on_delete=models.SET_NULL) class Meta: @@ -616,10 +595,7 @@ def create_default_uri(sender, instance, **kwargs): base1 = BASE_URI[:-1] else: base1 = BASE_URI - uri_c = "{}{}".format( - base1, - reverse("GetEntityGenericRoot", kwargs={"pk": instance.pk}), - ) + uri_c = f"{base1}/entity/{instance.pk}/" uri2 = Uri(uri=uri_c, domain=DOMAIN_DEFAULT, entity=instance) uri2.save() diff --git a/apis_core/apis_entities/serializers.py b/apis_core/apis_entities/serializers.py deleted file mode 100644 index e09afa1..0000000 --- a/apis_core/apis_entities/serializers.py +++ /dev/null @@ -1,378 +0,0 @@ -import re - -from django.conf import settings -from django.urls import reverse_lazy -from rest_framework import serializers - -from .models import Institution, Person, Place, Event, Work -from ..apis_relations.models import PersonInstitution, InstitutionPlace, PersonPlace -from ..apis_vocabularies.models import RelationBaseClass, InstitutionPlaceRelation - - -class BaseEntitySerializer(serializers.HyperlinkedModelSerializer): - uri_set = serializers.HyperlinkedRelatedField( - view_name="apis:apis_api:uri-detail", - lookup_field="pk", - many=True, - read_only=True, - ) - collection = serializers.HyperlinkedRelatedField( - view_name="apis:apis_api:collection-detail", - lookup_field="pk", - many=True, - read_only=True, - ) - text = serializers.HyperlinkedRelatedField( - view_name="apis:apis_api:text-detail", - lookup_field="pk", - many=True, - read_only=True, - ) - - -class InstitutionSerializer(BaseEntitySerializer): - url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:institution-detail", lookup_field="pk" - ) - - kind = serializers.HyperlinkedRelatedField( - view_name="apis:apis_api:institutiontype-detail", read_only=True - ) - - class Meta: - model = Institution - fields = ("url", "id", "name", "uri_set", "kind", "collection", "text") - - -class PersonSerializer(BaseEntitySerializer): - - url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:person-detail", lookup_field="pk" - ) - profession = serializers.HyperlinkedRelatedField( - view_name="apis:apis_api:professiontype-detail", - lookup_field="pk", - many=True, - read_only=True, - ) - - class Meta: - model = Person - fields = ( - "url", - "id", - "name", - "first_name", - "uri_set", - "profession", - "collection", - "text", - ) - - -class PlaceSerializer(BaseEntitySerializer): - - url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:place-detail", lookup_field="pk" - ) - - kind = serializers.HyperlinkedRelatedField( - view_name="apis:apis_api:placetype-detail", lookup_field="pk", read_only=True - ) - - class Meta: - model = Place - fields = ( - "url", - "id", - "name", - "uri_set", - "collection", - "text", - "kind", - "lng", - "lat", - ) - - -class EventSerializer(BaseEntitySerializer): - - url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:event-detail", lookup_field="pk" - ) - - kind = serializers.HyperlinkedRelatedField( - view_name="apis:apis_api:eventtype-detail", lookup_field="pk", read_only=True - ) - - class Meta: - model = Event - fields = ("url", "id", "name", "uri_set", "collection", "text", "kind") - - -class WorkSerializer(BaseEntitySerializer): - - url = serializers.HyperlinkedIdentityField( - view_name="apis:apis_api:work-detail", lookup_field="pk" - ) - - kind = serializers.HyperlinkedRelatedField( - view_name="apis:apis_api:worktype-detail", lookup_field="pk", read_only=True - ) - - class Meta: - model = Work - fields = ("url", "id", "name", "uri_set", "collection", "text", "kind") - - -class GeoJsonSerializer(serializers.BaseSerializer): - def to_representation(self, obj): - p_pk = self.context.get("p_pk") - short = False - url_r = reverse_lazy( - "apis:apis_entities:resolve_ambigue_place", - kwargs={"pk": str(p_pk), "uri": obj["id"][7:]}, - ) - long = False - if "http://www.w3.org/2003/01/geo/wgs84_pos#long" in obj.keys(): - long = float( - obj["http://www.w3.org/2003/01/geo/wgs84_pos#long"][0]["value"] - ) - lat = float(obj["http://www.w3.org/2003/01/geo/wgs84_pos#lat"][0]["value"]) - elif "long" in obj.keys(): - long = float(obj["long"][0]["value"]) - lat = float(obj["lat"][0]["value"]) - short = True - if long: - popup = "" - for k in obj.keys(): - if k == "id" or k == "long" or k == "lat": - continue - if not short or k.startswith("http"): - title = k.split("#")[-1] - else: - title = k - popup += "{}: {}
".format(title, obj[k][0]["value"]) - r = { - "geometry": {"type": "Point", "coordinates": [long, lat]}, - "type": "Feature", - "properties": { - "popupContent": """{} - Geonames: Select this URI""".format( - popup, url_r - ) - }, - "id": url_r, - } - return r - else: - return "" - - -class GeoJsonSerializerTheme(serializers.BaseSerializer): - def to_representation(self, obj): - if obj[0] is None: - return "" - url_r = reverse_lazy( - "apis:apis_core:place-detail", kwargs={"pk": str(obj[0].pk)} - ) - if obj[0].lng: - relations = [] - for rel2 in obj[1]: - if rel2[1] is not None: - res_str = f"{rel2[1].name} / {rel2[0].name}" - else: - res_str = f"{rel2[0].name}" - if rel2[2] is not None: - res_str += f" ({rel2[2]}-" - if rel2[3] is not None: - if res_str.endswith("-"): - res_str += f"{rel2[3]})" - else: - res_str += f" (-{rel2[3]})" - if "(" in res_str and not res_str.endswith(")"): - res_str += ")" - # relations.append((res_str, rel2[2], rel2[3])) - relations.append( - { - "id": rel2[-1].pk, - "relation": res_str, - "start_date": rel2[2], - "end_date": rel2[3], - } - ) - r = { - "geometry": {"type": "Point", "coordinates": [obj[0].lng, obj[0].lat]}, - "type": "Feature", - "properties": { - "name": obj[0].name, - "uris": [x.uri for x in obj[0].uri_set.all()], - "kind": obj[0].kind.name - if obj[0].kind is not None - else "undefined", - "url": url_r, - # "relation_kind": ", ".join([x[0].name for x in obj[1]]) - "relations": relations, - }, - "id": url_r, - } - return r - else: - return "" - - -class NetJsonEdgeSerializer(serializers.BaseSerializer): - def to_representation(self, obj): - ent_obj = obj.__class__.__name__ - ob_match = re.match(r"([A-Z][a-z]+)([A-Z][a-z]+)$", ent_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" - r = { - "source": getattr(obj, rel_a).pk, - "target": getattr(obj, rel_b).pk, - "id": obj.pk, - "type": "arrow", - "data": dict(), - } - r["data"]["start_date"] = obj.start_date_written - r["data"]["end_date"] = obj.end_date_written - r["data"]["relation_type"] = obj.relation_type.name - - return r - - -class NetJsonNodeSerializer(serializers.BaseSerializer): - def to_representation(self, obj): - ent_obj = obj.__class__.__name__ - ent_url = reverse_lazy( - "apis:apis_entities:generic_entities_edit_view", - kwargs={"pk": str(obj.pk), "entity": ent_obj.lower()}, - ) - tt = """
-
{}
-
- - - -
Type {}
Entity Link
- -
""".format( - str(obj), ent_obj, ent_url, ent_obj, obj.pk - ) - r = { - "type": ent_obj.lower(), - "label": str(obj), - "id": obj.pk, - "tooltip": tt, - "data": dict(), - } - r["data"]["uri"] = [x.uri for x in obj.uri_set.all()] - r["data"]["collections"] = [x.name for x in obj.collection.all()] - r["data"]["notes"] = obj.notes - r["data"]["references"] = obj.references - r["data"]["start_date"] = obj.start_date_written - r["data"]["end_date"] = obj.end_date_written - if ent_obj.lower() != "person": - if obj.kind: - r["data"]["kind"] = obj.kind.name - if ent_obj.lower() == "place": - r["data"]["lat"] = obj.lat - r["data"]["lon"] = obj.lng - if ent_obj.lower() == "person": - r["data"]["profession"] = [x.name for x in obj.profession.all()] - if obj.gender: - r["data"]["gender"] = obj.gender - return r - - -class LifePathPlaceSerializer(serializers.ModelSerializer): - id = serializers.ReadOnlyField() - name = serializers.CharField() - lat = serializers.FloatField() - long = serializers.FloatField(source="lng") - - class Meta: - fields = ["id", "name", "lat", "long"] - model = Place - - -class LifePathSerializer(serializers.BaseSerializer): - place = serializers.SerializerMethodField(method_name="get_place") - year = serializers.SerializerMethodField(method_name="get_year") - relation_type = serializers.CharField(source="relation_type__name") - - def get_place(self, obj): - if isinstance(obj, PersonInstitution): - inst = obj.related_institution - rel_type = getattr( - settings, - "APIS_LOCATED_IN_ATTR", - [ - "situated in", - ], - ) - rel_type_inst = getattr(settings, "APIS_INSTITUTION_PRECEEDING", [160, 161]) - ipl_rel = InstitutionPlaceRelation.objects.filter( - name__in=rel_type - ).values_list("pk", flat=True) - plc = InstitutionPlace.objects.filter( - relation_type_id__in=ipl_rel, related_institution=inst - ) - if plc.count() == 0: - inst_lst1 = [ - x.related_institutionA - for x in inst.related_institutionA.filter( - relation_type_id__in=rel_type_inst - ) - ] - inst_lst1.extend( - [ - x.related_institutionB - for x in inst.related_institutionB.filter( - relation_type_id__in=rel_type_inst - ) - ] - ) - for i2 in inst_lst1: - plc = InstitutionPlace.objects.filter( - relation_type_id__in=ipl_rel, related_institution=i2 - ) - if plc.count() == 1: - if plc[0].related_place.lat: - break - if plc.count() == 1: - plc = plc.first().related_place - if plc.lng and plc.lat: - return LifePathPlaceSerializer(plc).data - elif isinstance(obj, PersonPlace): - plc = obj.related_place - if plc.lat and plc.lng: - return LifePathPlaceSerializer(plc).data - - def get_year(self, obj): - if not obj.start_date and not obj.end_date: - return None - if obj.start_date and obj.end_date: - start = int(obj.start_date.strftime("%Y")) - end = int(obj.end_date.strftime("%Y")) - return int((start + end) / 2) - elif obj.start_date: - return int(obj.start_date.strftime("%Y")) - elif obj.end_date: - return int(obj.end_date.strftime("%Y")) - - def to_representation(self, instance): - p = self.get_place(instance) - if p is None: - return None - res = { - "id": instance.pk, - "coords": [p["lat"], p["long"]], - "name": p["name"], - "year": self.get_year(instance), - "relation_type": str(instance.relation_type), - } - return res diff --git a/apis_core/apis_entities/serializers_generic.py b/apis_core/apis_entities/serializers_generic.py deleted file mode 100644 index 0c19e12..0000000 --- a/apis_core/apis_entities/serializers_generic.py +++ /dev/null @@ -1,193 +0,0 @@ -import re - -from django.conf import settings -from django.contrib.contenttypes.models import ContentType -from django.db.models.query import QuerySet -from django.urls import reverse -from rest_framework import serializers - -from apis_core.apis_labels.serializers import LabelSerializerLegacy as LabelSerializer - -base_uri = getattr(settings, "APIS_BASE_URI", "http://apis.info") -if base_uri.endswith("/"): - base_uri = base_uri[:-1] - - -class CollectionSerializer(serializers.Serializer): - id = serializers.IntegerField() - name = serializers.CharField() - - -class VocabsSerializer(serializers.Serializer): - id = serializers.IntegerField() - name = serializers.CharField() - label = serializers.CharField() - - -class EntityUriSerializer(serializers.Serializer): - id = serializers.IntegerField() - uri = serializers.URLField() - - -class TextSerializer(serializers.Serializer): - id = serializers.IntegerField() - kind = VocabsSerializer() - text = serializers.CharField() - - -class EntitySerializer(serializers.Serializer): - id = serializers.IntegerField() - url = serializers.SerializerMethodField(method_name="add_url") - name = serializers.CharField() - start_date = serializers.DateField() - end_date = serializers.DateField() - uris = EntityUriSerializer(source="uri_set", many=True) - labels = LabelSerializer(source="label_set", many=True) - - def add_relations(self, obj): - res = {} - mk = obj.__class__.__name__ - for rel in ContentType.objects.filter( - app_label="apis_relations", model__icontains=mk.lower() - ): - mk2 = re.match(r"{}([A-Za-z]+)".format(mk.lower()), rel.model) - reverse = False - if not mk2: - mk2 = re.match(r"([A-Za-z]+){}".format(mk.lower()), rel.model) - reverse = True - res["{}s".format(mk2.group(1))] = [] - if mk2.group(1).lower() != mk.lower(): - if self._only_published: - rel_qs = ( - getattr(obj, "{}_set".format(rel.model)).all().filter_for_user() - ) - else: - rel_qs = getattr(obj, "{}_set".format(rel.model)).all() - for rel2 in rel_qs: - res["{}s".format(mk2.group(1))].append( - RelationEntitySerializer( - rel2, - own_class=mk, - read_only=True, - context=self.context, - reverse=reverse, - ).data - ) - else: - for t in ["a", "b"]: - for rel2 in ( - getattr(obj, "related_{}{}".format(mk.lower(), t)) - .all() - .filter_for_user() - ): - if t == "a": - ok = "{}B".format(mk.lower()) - reverse = True - else: - ok = "{}A".format(mk.lower()) - reverse = False - res["{}s".format(mk2.group(1))].append( - RelationEntitySerializer( - rel2, - own_class=ok, - read_only=True, - context=self.context, - reverse=reverse, - ).data - ) - return res - - def add_entity_type(self, obj): - return str(obj.__class__.__name__) - - def add_url(self, obj): - url = f"{base_uri}{reverse('GetEntityGenericRoot', kwargs={'pk': obj.pk})}" - return url - - def __init__( - self, *args, depth_ent=1, only_published=True, add_texts=False, **kwargs - ): - super(EntitySerializer, self).__init__(*args, **kwargs) - self._only_published = only_published - if type(self.instance) == QuerySet: - inst = self.instance[0] - else: - inst = self.instance - if inst is None: - return - for f in inst._meta.fields: - field_name = re.search(r"([A-Za-z]+)\'>", str(f.__class__)).group(1) - if field_name in [ - "CharField", - "DateField", - "DateTimeField", - "IntegerField", - "FloatField", - ]: - self.fields[f.name] = getattr(serializers, field_name)() - elif field_name in ["ForeignKey", "ManyToMany"]: - if str(f.related_model.__module__).endswith("apis_vocabularies.models"): - many = False - if f.many_to_many or f.one_to_many: - many = True - self.fields[f.name] = VocabsSerializer(many=many) - for f in inst._meta.many_to_many: - if f.name.endswith("relationtype_set"): - continue - elif f.name == "collection": - self.fields["collection"] = CollectionSerializer(many=True) - elif str(f.related_model.__module__).endswith("apis_vocabularies.models"): - self.fields[f.name] = VocabsSerializer(many=True) - self.fields["entity_type"] = serializers.SerializerMethodField( - method_name="add_entity_type" - ) - if depth_ent == 1: - self.fields["relations"] = serializers.SerializerMethodField( - method_name="add_relations" - ) - if add_texts: - self.fields["text"] = TextSerializer(many=True) - - -class RelationEntitySerializer(serializers.Serializer): - id = serializers.IntegerField() - start_date = serializers.DateField() - end_date = serializers.DateField() - start_date_written = serializers.DateField() - end_date_written = serializers.DateField() - relation_type = serializers.SerializerMethodField(method_name="add_relation_label") - - def add_entity(self, obj): - return EntitySerializer( - getattr(obj, "related_{}".format(self.entity_type)), depth_ent=0 - ).data - - def add_relation_label(self, obj): - cm = obj.__class__.__name__ - res_1 = dict() - res_1["id"] = obj.relation_type.pk - res_1[ - "url" - ] = f"{base_uri}{reverse('apis_core:apis_api:{}relation-detail'.format(cm).lower(), kwargs={'pk': obj.relation_type.pk},)}" - if self.reverse and len(obj.relation_type.label_reverse) > 0: - res_1["label"] = obj.relation_type.label_reverse - elif self.reverse: - res_1["label"] = "({})".format(obj.relation_type.label) - else: - res_1["label"] = obj.relation_type.label - return res_1 - - def __init__(self, *args, own_class=None, reverse=False, **kwargs): - super(RelationEntitySerializer, self).__init__(*args, **kwargs) - self.own_class = own_class - self.reverse = reverse - if self.instance is not None: - for f in self.instance._meta.fields: - if f.name.startswith("related_"): - mk2 = f.name.replace("related_", "") - - if mk2.lower() != own_class.lower(): - self.entity_type = mk2 - self.fields["target"] = serializers.SerializerMethodField( - method_name="add_entity" - ) diff --git a/apis_core/apis_entities/static/apis_entities/libraries/bower.json b/apis_core/apis_entities/static/apis_entities/libraries/bower.json deleted file mode 100644 index 47201b6..0000000 --- a/apis_core/apis_entities/static/apis_entities/libraries/bower.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "libraries", - "description": "libraries for apis-core package", - "main": "libraries", - "license": "MIT", - "homepage": "", - "private": true, - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ], - "dependencies": { - "jquery": "^3.2.1", - "bootstrap": "^3.3.7", - "bootstrap-multiselect": "^0.9.13", - "bootstrap-datepicker": "^1.7.0", - "jquery-tablesort": "^0.0.11", - "leaflet": "^1.1.0", - "tooltipster": "^4.2.5", - "leaflet.markercluster": "Leaflet.markercluster#^1.0.6", - "linkurious.js": "sennierer/linkurious.js#^1.5.4", - "CETEI": "https://github.com/TEIC/CETEIcean/releases/download/v0.4.0/CETEI.js", - "components-font-awesome": "^4.7.0" - }, - "resolutions": { - "jquery": "1.9.1 - 3" - } -} diff --git a/apis_core/apis_entities/templates/apis_entities/create_view.html b/apis_core/apis_entities/templates/apis_entities/create_view.html new file mode 100644 index 0000000..8a37666 --- /dev/null +++ b/apis_core/apis_entities/templates/apis_entities/create_view.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} +{% load static %} +{% block title %}Neue(r/s) {{ entity_type|title }} {% endblock %} + +{% block content %} +{% include "partials/entity_styles.html" %} +
+

+ neues Objekt {{ entity_type }} anlegen +

+ +
+ {% load crispy_forms_tags %} + {% crispy form %} + +
+
+ +{% endblock %} \ No newline at end of file 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 7fab182..8f95c60 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 @@ -3,25 +3,8 @@ {% load django_tables2 %} {% block title %} {{ object }} {% endblock %} {% block content %} -
diff --git a/apis_core/apis_entities/templates/apis_entities/entity_edit_generic.html b/apis_core/apis_entities/templates/apis_entities/edit_view.html similarity index 82% rename from apis_core/apis_entities/templates/apis_entities/entity_edit_generic.html rename to apis_core/apis_entities/templates/apis_entities/edit_view.html index 2b1bcdb..353383d 100644 --- a/apis_core/apis_entities/templates/apis_entities/entity_edit_generic.html +++ b/apis_core/apis_entities/templates/apis_entities/edit_view.html @@ -1,30 +1,13 @@ {% extends "base.html" %} {% load static %} -{% block titel %}Create a {{ entity_type|title }}{% endblock %} +{% block title %} Bearbeiten von {{ instance }} {% endblock %} {% block content %} {% load django_tables2 %} {% load crispy_forms_tags %} -

diff --git a/apis_core/apis_entities/templates/apis_entities/list_views/list.html b/apis_core/apis_entities/templates/apis_entities/list_view.html similarity index 88% rename from apis_core/apis_entities/templates/apis_entities/list_views/list.html rename to apis_core/apis_entities/templates/apis_entities/list_view.html index 3fbf878..f1d534b 100644 --- a/apis_core/apis_entities/templates/apis_entities/list_views/list.html +++ b/apis_core/apis_entities/templates/apis_entities/list_view.html @@ -6,21 +6,8 @@ {% load crispy_forms_tags %} {% block content %} -

{{ verbose_name }} @@ -68,15 +55,6 @@

{{ total }} Result(s)

{% endif %}
- - - - - - - - - {% endblock %} {% block scripts2 %} diff --git a/apis_core/apis_entities/test_api.py b/apis_core/apis_entities/test_api.py deleted file mode 100644 index 302a8b8..0000000 --- a/apis_core/apis_entities/test_api.py +++ /dev/null @@ -1,73 +0,0 @@ -from django.contrib.auth.models import User -from django.test import TestCase -from django.urls import reverse -from rest_framework.authtoken.models import Token -from rest_framework.test import APIClient -from django.contrib.contenttypes.models import ContentType -from rest_framework import status - -from .models import Place, Person - - -class PersonModelTestCase(TestCase): - name = "test name" - first_name = "test first name" - place_name = "test place name" - start_date = "1.3.1930" - end_date = "4.6.1960" - - @classmethod - def setUpTestData(cls): - # Set up data for the whole TestCase - cls.person = Person.objects.create(name=cls.name, first_name=cls.first_name) - cls.place = Place.objects.create(name=cls.place_name) - user = User.objects.create_user(username="lauren", password="pas_1234$") - token = Token.objects.create(user=user) - client = APIClient() - client.credentials(HTTP_AUTHORIZATION="Token " + token.key) - cls.c = client - - def test_apiget(self): - token = Token.objects.get(user__username="lauren") - client = APIClient() - client.credentials(HTTP_AUTHORIZATION="Token " + token.key) - res = client.get( - reverse("apis:apis_core:person-detail", kwargs={"pk": self.person.pk}) - ) - print(res) - - -class GetTestCase(TestCase): - @classmethod - def setUpTestData(cls): - # Set up data for the whole TestCase - user = User.objects.create_user(username="lauren", password="pas_1234$") - token = Token.objects.create(user=user) - client = APIClient() - client.credentials(HTTP_AUTHORIZATION="Token " + token.key) - cls.c = client - - def test_get(self): - # client = APIClient() - for ent in ContentType.objects.filter( - app_label__in=[ - "apis_entities", - "apis_relations", - "apis_metainfo", - "apis_vocabularies", - ] - ).exclude(model__in=["tempentityclass", "relationbaseclass"]): - print(f"Testing GET for: {ent.model.lower().replace(' ', '')}") - url = ( - reverse(f'apis:apis_core:{ent.model.lower().replace(" ", "")}-list') - + "?format=json" - ) - res = self.c.get(url) - self.assertEqual(res.status_code, status.HTTP_200_OK) - d = res.json() - if len(d["results"]) > 0: - print( - f"Result of {ent.model.lower().replace(' ', '')} > 0, testing get of first element" - ) - res2 = self.c.get(d["results"][0]["url"]) - self.assertEqual(res2.status_code, status.HTTP_200_OK) diff --git a/apis_core/apis_entities/test_models.py b/apis_core/apis_entities/test_models.py deleted file mode 100644 index e7d1185..0000000 --- a/apis_core/apis_entities/test_models.py +++ /dev/null @@ -1,218 +0,0 @@ -from django.test import TestCase -from django.contrib.auth.models import User, Group -from django.urls import reverse - -from .models import Person, Event -from apis_core.apis_metainfo.models import Text, Collection -from apis_core.apis_vocabularies.models import ProfessionType -from reversion import revisions as reversion - -from datetime import datetime -from rest_framework.authtoken.models import Token -from rest_framework.test import APIClient -from django.contrib.auth.models import Permission - - -class PersonModelTestCase(TestCase): - name = "test name" - first_name = "test first name" - text = "kjhkjsdhaslkdhadh lasdjalsk alsjdhaksjdh" - col_name = "Test collection" - col_name2 = "Test collection2" - start_date = "1.3.1930" - end_date = "4.6.1960" - prof1 = "Lehrer" - prof2 = "Politiker" - - @classmethod - def setUpTestData(cls): - # Set up data for the whole TestCase - cls.txt = Text.objects.create(text=cls.text) - cls.col = Collection.objects.create(name=cls.col_name) - cls.col2 = Collection.objects.create(name=cls.col_name2) - cls.prof1 = ProfessionType.objects.create(name=cls.prof1) - cls.prof2 = ProfessionType.objects.create(name=cls.prof2) - cls.pers1 = Person.objects.create( - name=cls.name, - first_name=cls.first_name, - start_date_written="1880<1880-02-01>", - end_date_written="1890<1890-05-01>", - ) - - def test_init(self): - Person() - - def test_create_object(self): - p = Person.objects.create( - name=self.name, - first_name=self.first_name, - start_date_written=self.start_date, - end_date_written=self.end_date, - ) - - def test_object_connections(self): - p = Person.objects.create( - name=self.name, - first_name=self.first_name, - start_date_written=self.start_date, - end_date_written=self.end_date, - ) - p.collection.add(self.col) - p.text.add(self.txt) - - def test_object_validity(self): - p = Person.objects.create( - name=self.name, - first_name=self.first_name, - start_date_written=self.start_date, - end_date_written=self.end_date, - ) - p.collection.add(self.col) - p.text.add(self.txt) - self.assertEqual(p.name, self.name) - self.assertEqual(p.first_name, self.first_name) - self.assertEqual(p.start_date_written, self.start_date) - self.assertEqual(p.start_date, datetime.strptime(self.start_date, "%d.%m.%Y")) - - def test_date_parsing_year(self): - p = Person.objects.create( - name=self.name, - first_name=self.first_name, - start_date_written="1880", - end_date_written="1890", - ) - self.assertEqual(p.start_start_date, datetime.strptime("1.1.1880", "%d.%m.%Y")) - self.assertEqual(p.start_end_date, datetime.strptime("31.12.1880", "%d.%m.%Y")) - self.assertEqual(p.end_start_date, datetime.strptime("1.1.1890", "%d.%m.%Y")) - self.assertEqual(p.end_end_date, datetime.strptime("31.12.1890", "%d.%m.%Y")) - self.assertEqual(p.start_date, datetime.strptime("1.7.1880", "%d.%m.%Y")) - - def test_date_parsing_override(self): - p = Person.objects.create( - name=self.name, - first_name=self.first_name, - start_date_written="1880<1880-02-01>", - end_date_written="1890<1890-05-01>", - ) - self.assertEqual(p.start_date, datetime.strptime("1.2.1880", "%d.%m.%Y")) - self.assertEqual(p.end_date, datetime.strptime("1.5.1890", "%d.%m.%Y")) - - def test_date_parsing_override_range(self): - p = Person.objects.create( - name=self.name, - first_name=self.first_name, - start_date_written="1880<1880-05-01,1880-01-01,1880-12-31>", - end_date_written="1890<1890-05-01>", - ) - self.assertEqual(p.start_start_date, datetime.strptime("1.1.1880", "%d.%m.%Y")) - self.assertEqual(p.start_date, datetime.strptime("1.5.1880", "%d.%m.%Y")) - self.assertEqual(p.start_end_date, datetime.strptime("31.12.1880", "%d.%m.%Y")) - - def test_merge_entities(self): - p1 = Person.objects.create(name="person1") - p2 = Person.objects.create(name="person2") - p1.collection.add(self.col) - p1.profession.add(self.prof1) - p2.collection.add(self.col2) - p2.profession.add(self.prof2) - p1.merge_with(p2) - self.assertEqual(p1.collection.all().count(), 2) - self.assertEqual(p1.profession.all().count(), 2) - - def test_merge_entities_no_selfself(self): - p1 = Person.objects.first() - self.assertRaises( - ValueError, - p1.merge_with, - [ - p1, - ], - ) - - -""" - def test_object_reversion(self): - with reversion.create_revision(): - p = Person.objects.create( - name=self.name, - first_name=self.first_name, - start_date_written=self.start_date, - end_date_written=self.end_date) - p.collection.add(self.col) - p.text.add(self.txt) - with reversion.create_revision(): - p2 = Person.objects.get(name=self.name) - p2.name = 'testname 2' - p2.save() - self.assertEqual(p2.name, 'testname 2') - versions = Version.objects.get_for_object(p2) - self.assertEqual(len(versions), 2) - self.assertEqual(versions[0].field_dict['name'], 'testname 2') - self.assertEqual(versions[1].field_dict['name'], self.name) -""" # TODO: solve the reversion datetime error - - -class PermissionsModelTestCase(TestCase): - name = "test name" - first_name = "test first name" - text = "kjhkjsdhaslkdhadh lasdjalsk alsjdhaksjdh" - col_name = "Test collection" - start_date = "1.3.1930" - end_date = "4.6.1960" - - @classmethod - def setUpTestData(cls): - # Set up data for the whole TestCase - cls.txt = Text.objects.create(text=cls.text) - cls.col = Collection.objects.create(name=cls.col_name) - cls.pers = Person.objects.create( - name=cls.name, - first_name=cls.first_name, - # start_date_written=cls.start_date, TODO: serializer throwing error on date - # end_date_written=cls.end_date - ) - cls.user = User.objects.create_user("testuser", "apisdev16") - pe = Permission.objects.get(name="Can change person") - cls.user.user_permissions.add(pe) - cls.token = Token.objects.create(user=cls.user).key - cls.group = Group.objects.create(name="testgroup") - cls.col.groups_allowed.add(cls.group) - cls.user.groups.add(cls.group) - cls.c = APIClient() - cls.c.credentials(HTTP_AUTHORIZATION="Token " + cls.token) - - def test_no_perm(self): - res = self.c.patch( - reverse("apis:apis_core:person-detail", kwargs={"pk": self.pers.pk}), - data={"name": "changed name"}, - # format='json' - ) - print(f"no permissions, patch: {res.status_code}") - self.assertEqual(res.status_code, 403) - - def test_no_perm_view(self): - res = self.c.get( - reverse("apis:apis_core:person-detail", kwargs={"pk": self.pers.pk}), - ) - print(f"no permissions, get: {res.status_code}") - self.assertEqual(res.status_code, 200) - - def test_perm(self): - self.pers.collection.add(self.col) - res = self.c.patch( - reverse("apis:apis_core:person-detail", kwargs={"pk": self.pers.pk}), - data={"name": "changed name"}, - # format='json' - ) - print(f"permissions granted, patch: {res.status_code}") - self.assertEqual(res.status_code, 200) - - def test_perm_removed(self): - self.pers.collection.remove(self.col) - res = self.c.patch( - reverse("apis:apis_core:person-detail", kwargs={"pk": self.pers.pk}), - data={"name": "changed name"}, - # format='json' - ) - print(f"permissions revoked, patch: {res.status_code}") - self.assertEqual(res.status_code, 403) diff --git a/apis_core/apis_entities/test_parsers.py b/apis_core/apis_entities/test_parsers.py deleted file mode 100644 index de13a4b..0000000 --- a/apis_core/apis_entities/test_parsers.py +++ /dev/null @@ -1,131 +0,0 @@ -import time - -from django.test import TestCase - -from apis_core.apis_relations.models import PersonPlace, InstitutionPlace -from apis_core.helper_functions.RDFParser import RDFParser - - -class RDFPlaceParserNewTestCase(TestCase): - def test_parse_place(self): - plc = [ - ( - "https://www.geonames.org/6951114/bad-zell.html", - "Bad Zell", - 48.34906, - "https://sws.geonames.org/2782113/", - "https://www.geonames.org/ontology#P.PPL", - ), - ( - "https://sws.geonames.org/2779275/", - "Freistadt", - 48.51103, - "https://sws.geonames.org/2782113/", - "https://www.geonames.org/ontology#P.PPL", - ), - ( - "https://sws.geonames.org/2761369", - "Vienna", - 48.20849, - "https://sws.geonames.org/2782113/", - "https://www.geonames.org/ontology#P.PPLC", - ), - ] - for p in plc: - print(p) - o = RDFParser(p[0], "Place") - o.create_objct() - o2 = o.save() - print(type(o2.lat)) - self.assertEqual(o2.lat, float(p[2])) - self.assertEqual(o2.name, p[1]) - self.assertEqual(o2.kind.name, p[4]) - - # def test_parse_person(self): - # o = RDFParser('http://d-nb.info/gnd/118650130', 'Person', uri_check=False) - # o.create_objct() - # print(o._foreign_keys) - # print(o.objct) - # print(o._attributes) - # print(o.objct.name) - # print(o._foreign_keys) - # self.assertEqual(o.objct.name, 'Aristoteles') - # o2 = o.save() - # print(o2) - # o3 = RDFParser('http://d-nb.info/gnd/118566512', 'Person', uri_check=False) - # o3.create_objct() - # print(o3._foreign_keys) - # print(o3.objct) - # print(o3._attributes) - # print(f"name: {o3.objct.name}, {o3.objct.first_name}") - # print(o3._foreign_keys) - # self.assertEqual(o3.objct.name, 'Kreisky') - # self.assertEqual(o3.objct.start_date_written, '1911-01-22') - # o4 = o3.save() - # print(o4) - # print(o4.profession.all()) - # print(o4.start_date) - - def test_merge(self): - o = RDFParser("https://d-nb.info/gnd/118566512", "Person", uri_check=False) - o.create_objct() - o.save() - o2 = RDFParser( - "https://d-nb.info/gnd/170686299", "Person", uri_check=False - ).get_or_create() - o.merge(o2) - print(o.objct.uri_set.all()) - - def test_place_of_birth(self): - o = RDFParser("https://d-nb.info/gnd/118566512", "Person", uri_check=False) - o.create_objct() - o.save() - for p in PersonPlace.objects.all(): - print( - p.related_place.name, p.related_place.uri_set.all(), p.related_place.lat - ) - - def test_institution(self): - o = RDFParser("https://d-nb.info/gnd/1001454-8", "Institution", uri_check=False) - o.create_objct() - o2 = o.save() - print(o2.pk, o2.start_date, o2.start_date_written) - print(InstitutionPlace.objects.filter(related_institution_id=o2.pk)) - print(o2.label_set.all().values_list("label")) - - def test_use_uri_twice(self): - self.assertRaises( - ValueError, - RDFParser, - "https://www.geonames.org/6951114/bad-zell.html", - "Place", - ) - - def test_uri_twice_later(self): - o = RDFParser( - "https://sws.geonames.org/2778843", "Place", preserve_uri_minutes=0.5 - ) - self.assertRaises( - ValueError, - RDFParser, - "https://sws.geonames.org/2778843", - "Place", - preserve_uri_minutes=0.5, - ) - time.sleep(35) - o2 = RDFParser( - "https://sws.geonames.org/2778843", "Place", preserve_uri_minutes=0.5 - ).get_or_create() - - def test_institution_government(self): - o = RDFParser("https://d-nb.info/gnd/2029534-0", "Institution").get_or_create() - self.assertEqual(o.name, "Österreich. Bundesregierung") - # self.assertEqual(o.start_date_written, '1945') - - def test_uni_koeln(self): - o = RDFParser("https://d-nb.info/gnd/2024231-1", "Institution") - o.create_objct() - print(o._foreign_keys) - o2 = o.save() - for p in InstitutionPlace.objects.filter(related_institution_id=o2.pk): - print(p.related_place, p.related_place.kind) diff --git a/apis_core/apis_entities/tests.py b/apis_core/apis_entities/tests.py index a39b155..b870579 100644 --- a/apis_core/apis_entities/tests.py +++ b/apis_core/apis_entities/tests.py @@ -1 +1,81 @@ -# Create your tests here. +from django.apps import apps +from django.test import TestCase, Client +from django.contrib.auth.models import User + +from apis_core.apis_entities.models import Person + + +client = Client() +USER = {"username": "testuser", "password": "somepassword"} +BAHR = {"name": "Bahr", "first_name": "Hermann", "start_date_written": "1900"} + +MODELS = list(apps.all_models["apis_entities"].values()) + + +class EntitiesTestCase(TestCase): + fixtures = [ + "db.json", + ] + + def setUp(self): + # Create two users + User.objects.create_user(**USER) + + def test_001_list_view(self): + for x in MODELS: + try: + url = x.get_listview_url() + except AttributeError: + url = False + if url: + response = client.get(url) + self.assertEqual(response.status_code, 200) + + def test_002_detailviews(self): + for x in MODELS: + item = x.objects.first() + try: + url = item.get_absolute_url() + except AttributeError: + url = False + if url: + response = client.get(url, {"pk": item.id}) + self.assertEqual(response.status_code, 200) + + def test_003_editviews(self): + client.login(**USER) + for x in MODELS: + item = x.objects.first() + try: + url = item.get_edit_url() + except AttributeError: + url = False + if url: + response = client.get(url, {"pk": item.id}) + self.assertEqual(response.status_code, 200) + + def test_004_createviews_logged_in(self): + client.login(**USER) + for x in MODELS: + item = x.objects.first() + try: + url = item.get_createview_url() + except AttributeError: + url = False + if url: + response = client.get(url, {"pk": item.id}) + self.assertEqual(response.status_code, 200) + + def test_004_check_fixtures(self): + items = Person.objects.all().count() + self.assertEqual(items, 2) + + def test_005_create_person(self): + item, created = Person.objects.get_or_create(**BAHR) + self.assertTrue(created) + self.assertEqual(item.name, "Bahr") + + def test_006_delete_person(self): + item, _ = Person.objects.get_or_create(**BAHR) + self.assertEqual(item.name, "Bahr") + item.delete() diff --git a/apis_core/apis_entities/urls.py b/apis_core/apis_entities/urls.py index 5eb45a7..244a91f 100644 --- a/apis_core/apis_entities/urls.py +++ b/apis_core/apis_entities/urls.py @@ -1,12 +1,10 @@ from django.urls import path -from . import views, views2, detail_views, merge_views +from . import views, detail_views, merge_views from .autocomplete3 import ( GenericEntitiesAutocomplete, - GenericNetworkEntitiesAutocomplete, ) -from .views2 import GenericEntitiesCreateStanbolView from .list_view_person import PersonListView from .list_view_work import WorkListView from .list_view_place import PlaceListView @@ -19,7 +17,7 @@ urlpatterns = [ path( "entity///edit", - views2.GenericEntitiesEditView.as_view(), + views.GenericEntitiesEditView.as_view(), name="generic_entities_edit_view", ), path( @@ -29,12 +27,12 @@ ), path( "entity//create", - views2.GenericEntitiesCreateView.as_view(), + views.GenericEntitiesCreateView.as_view(), name="generic_entities_create_view", ), path( "entity///delete", - views2.GenericEntitiesDeleteView.as_view(), + views.GenericEntitiesDeleteView.as_view(), name="generic_entities_delete_view", ), path( @@ -62,16 +60,6 @@ EventListView.as_view(), name="event_list_view", ), - path( - "autocomplete/createstanbol//", - GenericEntitiesCreateStanbolView.as_view(), - name="generic_entities_stanbol_create", - ), - path( - "autocomplete/createstanbol///", - GenericEntitiesCreateStanbolView.as_view(), - name="generic_entities_stanbol_create", - ), path( "autocomplete///", GenericEntitiesAutocomplete.as_view(), @@ -87,28 +75,5 @@ GenericEntitiesAutocomplete.as_view(), name="generic_entities_autocomplete", ), - path( - "autocomplete-network//", - GenericNetworkEntitiesAutocomplete.as_view(), - name="generic_network_entities_autocomplete", - ), - # TODO __sresch__ : This seems unused. Remove it once sure - # url(r'^detail/work/', - # detail_views.WorkDetailView.as_view(), name='work_detail'), - path("place/geojson/", views.getGeoJson, name="getGeoJson"), - path("place/geojson/list/", views.getGeoJsonList, name="getGeoJsonList"), - path("place/network/list/", views.getNetJsonList, name="getNetJsonList"), - path( - "resolve/place//", - views.resolve_ambigue_place, - name="resolve_ambigue_place", - ), - path("maps/birthdeath/", views.birth_death_map, name="birth_death_map"), - path("networks/relation_place/", views.pers_place_netw, name="pers_place_netw"), - path("networks/relation_institution/", views.pers_inst_netw, name="pers_inst_netw"), - path("networks/generic/", views.generic_network_viz, name="generic_network_viz"), - # url( - # r'^compare/(?P[a-z_]+)/(?P[a-z]+)/(?P\d+)', ReversionCompareView.as_view() - # ), path("merge-objects/", merge_views.merge_objects, name="merge_objects"), ] diff --git a/apis_core/apis_entities/views.py b/apis_core/apis_entities/views.py index 9d3b28f..ce434f7 100644 --- a/apis_core/apis_entities/views.py +++ b/apis_core/apis_entities/views.py @@ -1,400 +1,188 @@ -# -*- coding: utf-8 -*- -import json - from django.conf import settings -from django.contrib.auth.decorators import login_required, user_passes_test +from django.contrib.auth.decorators import login_required +from django.db.models import Q from django.http import HttpResponse -from django.http import HttpResponseRedirect -from django.shortcuts import render, redirect, get_object_or_404 +from django.shortcuts import redirect, get_object_or_404 +from django.template.loader import select_template +from django.template.response import TemplateResponse from django.urls import reverse -from django.urls import reverse_lazy -from apis_core.apis_metainfo.models import Uri, UriCandidate, Text +from django.utils.decorators import method_decorator +from django.views import View +from django.views.generic import DeleteView +from django_tables2 import RequestConfig +import importlib + +from apis_core.apis_entities.models import AbstractEntity +from apis_core.apis_labels.models import Label from apis_core.apis_relations.models import AbstractRelation -from apis_core.helper_functions.RDFParser import RDFParser -from apis_core.helper_functions.stanbolQueries import retrieve_obj -from apis_core.helper_functions.utils import ( - access_for_all_function, -) - -from .forms import ( - NetworkVizFilterForm, - PersonResolveUriForm, -) -from .models import Place - - -########################################################################### -############################################################################ -# -# Helper Functions -# -############################################################################ -############################################################################ - - -@user_passes_test(access_for_all_function) -def set_session_variables(request): - ann_proj_pk = request.GET.get("project", None) - types = request.GET.getlist("types", None) - users_show = request.GET.getlist("users_show", None) - edit_views = request.GET.get("edit_views", False) - if types: - request.session["entity_types_highlighter"] = types - if users_show: - request.session["users_show_highlighter"] = users_show - if ann_proj_pk: - request.session["annotation_project"] = ann_proj_pk - if edit_views: - if edit_views != "false": - request.session["edit_views"] = True - return request - - -@user_passes_test(access_for_all_function) -def get_highlighted_texts(request, instance): - if "apis_highlighter" in settings.INSTALLED_APPS: - set_ann_proj = request.session.get("annotation_project", 1) - entity_types_highlighter = request.session.get("entity_types_highlighter", None) - users_show = request.session.get("users_show_highlighter", None) - object_texts = [ - { - "text": highlight_text_new( - x, - set_ann_proj=set_ann_proj, - types=entity_types_highlighter, - users_show=users_show, - )[0].strip(), - "id": x.pk, - "kind": x.kind, - } - for x in Text.objects.filter(tempentityclass=instance) - ] - ann_proj_form = SelectAnnotationProject( - set_ann_proj=set_ann_proj, - entity_types_highlighter=entity_types_highlighter, - users_show_highlighter=users_show, +from apis_core.apis_relations.tables import get_generic_relations_table, LabelTableEdit +from .forms import get_entities_form, FullTextForm + + +@method_decorator(login_required, name="dispatch") +class GenericEntitiesEditView(View): + def get(self, request, *args, **kwargs): + entity = kwargs["entity"] + pk = kwargs["pk"] + entity_model = AbstractEntity.get_entity_class_of_name(entity) + instance = get_object_or_404(entity_model, pk=pk) + relations = AbstractRelation.get_relation_classes_of_entity_name( + entity_name=entity ) - return object_texts, ann_proj_form - else: - object_texts = [ - {"text": x.text, "id": x.pk, "kind": x.kind} - for x in Text.objects.filter(tempentityclass=instance) - ] - return object_texts, False - - -############################################################################ -############################################################################ -# -# OtherViews -# -############################################################################ -############################################################################ - - -@user_passes_test(access_for_all_function) -def getGeoJson(request): - """Used to retrieve GeoJsons for single objects""" - # if request.is_ajax(): - pk_obj = request.GET.get("object_id") - instance = get_object_or_404(Place, pk=pk_obj) - uria = Uri.objects.filter(entity=instance) - urib = UriCandidate.objects.filter(entity=instance) - if urib.count() > 0: - uric = urib - elif uria.count() > 0: - uric = uria - add_info = "" - lst_json = [] - if uric.count() > 0 and not instance.status.startswith("distinct"): - for x in uric: - o = retrieve_obj(x.uri) - if o: - url_r = reverse_lazy( - "apis:apis_entities:resolve_ambigue_place", - kwargs={ - "pk": str(instance.pk), - "uri": o["representation"]["id"][7:], - }, + side_bar = [] + for rel in relations: + match = [ + 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( + relation_class=rel, entity_instance=instance, detail=False + ) + 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} + objects = rel.objects.filter(Q(**dict_1) | Q(**dict_2)) + else: + if match[0].lower() == entity.lower(): + title_card = match[1].title() + else: + title_card = match[0].title() + dict_1 = {"related_" + entity.lower(): instance} + objects = rel.objects.filter(**dict_1) + tb_object = table(data=objects, prefix=prefix) + 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, ) - select_text = "
Select this URI".format(url_r) - try: - add_info = "Confidence: {}
Feature: {}".format( - x.confidence, x.uri, x.uri - ) - except: - add_info = "Confidence:no value provided
Feature: {}".format( - x.uri, x.uri - ) - r = { - "geometry": { - "type": "Point", - "coordinates": [ - float( - o["representation"][ - "http://www.w3.org/2003/01/geo/wgs84_pos#long" - ][0]["value"] - ), - float( - o["representation"][ - "http://www.w3.org/2003/01/geo/wgs84_pos#lat" - ][0]["value"] - ), - ], - }, - "type": "Feature", - "properties": { - "popupContent": "ÖBL name: %s
Geonames: %s
%s
%s" - % ( - instance.name, - o["representation"][ - "http://www.geonames.org/ontology#name" - ][0]["value"], - select_text, - add_info, - ) - }, - "id": x.pk, - } - lst_json.append(r) - elif instance.lat is not None and instance.lng is not None: - r = { - "geometry": {"type": "Point", "coordinates": [instance.lng, instance.lat]}, - "type": "Feature", - "properties": {"popupContent": "Name: %s
" % (instance.name)}, - "id": instance.pk, + ) + form = get_entities_form(entity.title()) + form = form(instance=instance) + object_labels = Label.objects.filter(temp_entity=instance) + tb_label = LabelTableEdit(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/edit_view.html", + ] + ) + context = { + "entity_type": entity, + "form": form, + "instance": instance, + "right_card": side_bar, } - lst_json.append(r) - - return HttpResponse(json.dumps(lst_json), content_type="application/json") - - -@user_passes_test(access_for_all_function) -def getGeoJsonList(request): - """Used to retrieve a list of GeoJsons. To generate the list the kind of connection - and the connected entity is needed""" - relation = AbstractRelation.get_relation_class_of_name(request.GET.get("relation")) - # relation_type = request.GET.get("relation_type") - objects = relation.objects.filter(related_place__status="distinct").select_related( - "related_person", "related_place", "relation_type" - ) - lst_json = [] - for x in objects: - pers_url = x.related_person.get_absolute_url() - place_url = x.related_place.get_absolute_url() - r = { - "geometry": { - "type": "Point", - "coordinates": [x.related_place.lng, x.related_place.lat], - }, - "type": "Feature", - "relation_type": x.relation_type.name, - "properties": { - "popupContent": "Person: %s
Connection: %s
Place: %s" - % ( - pers_url, - x.related_person, - x.relation_type, - place_url, - x.related_place, + return HttpResponse(template.render(request=request, context=context)) + + def post(self, request, *args, **kwargs): + entity = kwargs["entity"] + pk = kwargs["pk"] + entity_model = AbstractEntity.get_entity_class_of_name(entity) + instance = get_object_or_404(entity_model, pk=pk) + form = get_entities_form(entity.title()) + form = form(request.POST, instance=instance) + form_text = FullTextForm(request.POST, entity=entity.title()) + if form.is_valid() and form_text.is_valid(): + entity_2 = form.save() + form_text.save(entity_2) + return redirect( + reverse( + "apis:apis_entities:generic_entities_edit_view", + kwargs={"pk": pk, "entity": entity}, ) - }, - "id": x.pk, - } - lst_json.append(r) - return HttpResponse(json.dumps(lst_json), content_type="application/json") - - -@user_passes_test(access_for_all_function) -def getNetJsonList(request): - """Used to retrieve a Json to draw a network""" - relation = AbstractRelation.get_relation_class_of_name("PersonPlace") - objects = relation.objects.filter(related_place__status="distinct") - nodes = dict() - edges = [] - - for x in objects: - if x.related_place.pk not in nodes.keys(): - place_url = reverse_lazy( - "apis:apis_entities:place_edit", kwargs={"pk": str(x.related_place.pk)} ) - tt = ( - "
\ -
%s
\ -
\ - \ - \ - \ -
Type %s
Entity Link
\ -
" - % (x.related_place.name, "place", place_url) + else: + template = select_template( + [ + "apis_entities/{}_create_generic.html".format(entity), + "apis_entities/create_view.html", + ] ) - nodes[x.related_place.pk] = { - "type": "place", - "label": x.related_place.name, - "id": str(x.related_place.pk), - "tooltip": tt, + context = { + "form": form, + "entity_type": entity, + "form_text": form_text, + "instance": instance, } - if x.related_person.pk not in nodes.keys(): - pers_url = reverse_lazy( - "apis:apis_entities:person_edit", - kwargs={"pk": str(x.related_person.pk)}, - ) - tt = ( - "
\ -
%s
\ -
\ - \ - \ - \ -
Type %s
Entity Link
\ -
" - % (str(x.related_person), "person", pers_url) + if entity.lower() != "place": + return TemplateResponse(request, template, context=context) + return HttpResponse(template.render(request=request, context=context)) + + +@method_decorator(login_required, name="dispatch") +class GenericEntitiesCreateView(View): + def get(self, request, *args, **kwargs): + entity = kwargs["entity"] + form = get_entities_form(entity.title()) + form = form() + template = select_template( + [ + "apis_entities/{}_create_generic.html".format(entity), + "apis_entities/create_view.html", + ] + ) + return HttpResponse( + template.render( + request=request, + context={ + "entity_type": entity, + "form": form, + }, ) - nodes[x.related_person.pk] = { - "type": "person", - "label": str(x.related_person), - "id": str(x.related_person.pk), - "tooltip": tt, - } - edges.append( - { - "source": x.related_person.pk, - "target": x.related_place.pk, - "kind": x.relation_type.name, - "id": str(x.pk), - } ) - lst_json = {"edges": edges, "nodes": [nodes[x] for x in nodes.keys()]} - - return HttpResponse(json.dumps(lst_json), content_type="application/json") - -@user_passes_test(access_for_all_function) -def getNetJsonListInstitution(request): - """Used to retrieve a Json to draw a network""" - relation = AbstractRelation.get_relation_class_of_name("PersonInstitution") - objects = relation.objects.all() - nodes = dict() - edges = [] - - for x in objects: - if x.related_institution.pk not in nodes.keys(): - inst_url = reverse_lazy( - "apis:apis_entities:institution_edit", - kwargs={"pk": str(x.related_institution.pk)}, - ) - tt = ( - "
\ -
%s
\ -
\ - \ - \ - \ -
Type %s
Entity Link
\ -
" - % (x.related_institution.name, "institution", inst_url) + def post(self, request, *args, **kwargs): + entity = kwargs["entity"] + form = get_entities_form(entity.title()) + form = form(request.POST) + if form.is_valid(): + entity_2 = form.save() + return redirect( + reverse( + "apis:apis_entities:generic_entities_detail_view", + kwargs={"pk": entity_2.pk, "entity": entity}, + ) ) - nodes[x.related_institution.pk] = { - "type": "institution", - "label": x.related_institution.name, - "id": str(x.related_institution.pk), - "tooltip": tt, + else: + permissions = { + "create": request.user.has_perm("apis_entities.add_{}".format(entity)) } - if x.related_person.pk not in nodes.keys(): - pers_url = reverse_lazy( - "apis:apis_entities:person_edit", - kwargs={"pk": str(x.related_person.pk)}, + template = select_template( + [ + "apis_entities/{}_create_generic.html".format(entity), + "apis_entities/create_view.html", + ] ) - tt = ( - "
\ -
%s
\ -
\ - \ - \ - \ -
Type %s
Entity Link
\ -
" - % (str(x.related_person), "person", pers_url) + return HttpResponse( + template.render( + request=request, + context={ + "permissions": permissions, + "form": form, + }, + ) ) - nodes[x.related_person.pk] = { - "type": "person", - "label": str(x.related_person), - "id": str(x.related_person.pk), - "tooltip": tt, - } - edges.append( - { - "source": x.related_person.pk, - "target": x.related_institution.pk, - "kind": x.relation_type.name, - "id": str(x.pk), - } - ) - lst_json = {"edges": edges, "nodes": [nodes[x] for x in nodes.keys()]} - - return HttpResponse(json.dumps(lst_json), content_type="application/json") -@login_required -def resolve_ambigue_place(request, pk, uri): - """Only used to resolve place names.""" - uri = "http://" + uri - entity = Place.objects.get(pk=pk) - pl_n = RDFParser(uri, kind="Place") - pl_n.create_objct() - pl_n_1 = pl_n.save() - pl_n_1 = pl_n.merge(entity) - url = pl_n_1.get_absolute_url() - if pl_n.created: - pl_n_1.status = "distinct (manually resolved)" - pl_n_1.save() - UriCandidate.objects.filter(entity=entity).delete() - - return HttpResponseRedirect(url) - - -@login_required -def resolve_ambigue_person(request): - if request.method == "POST": - form = PersonResolveUriForm(request.POST) - if form.is_valid(): - pers = form.save() - return redirect( - reverse("apis:apis_entities:person_edit", kwargs={"pk": pers.pk}) - ) - - -############################################################################ -############################################################################ -# -# VisualizationViews -# -############################################################################ -############################################################################ - - -@user_passes_test(access_for_all_function) -def birth_death_map(request): - return render(request, "apis:apis_entities/map_list.html") - - -@user_passes_test(access_for_all_function) -def pers_place_netw(request): - return render(request, "apis:apis_entities/network.html") - - -@user_passes_test(access_for_all_function) -def pers_inst_netw(request): - return render(request, "apis:apis_entities/network_institution.html") - +@method_decorator(login_required, name="dispatch") +class GenericEntitiesDeleteView(DeleteView): + model = importlib.import_module("apis_core.apis_metainfo.models").TempEntityClass + template_name = getattr( + settings, "APIS_DELETE_VIEW_TEMPLATE", "apis_entities/confirm_delete.html" + ) -@user_passes_test(access_for_all_function) -def generic_network_viz(request): - if request.method == "GET": - form = NetworkVizFilterForm() - return render( - request, - "apis:apis_entities/generic_network_visualization.html", - {"form": form}, + def dispatch(self, request, *args, **kwargs): + entity = kwargs["entity"] + self.success_url = reverse( + "apis_core:apis_entities:generic_entities_list", kwargs={"entity": entity} ) + return super(GenericEntitiesDeleteView, self).dispatch(request, *args, **kwargs) diff --git a/apis_core/apis_entities/views2.py b/apis_core/apis_entities/views2.py deleted file mode 100644 index 95fc53f..0000000 --- a/apis_core/apis_entities/views2.py +++ /dev/null @@ -1,240 +0,0 @@ -from django.conf import settings -from django.contrib.auth.decorators import login_required -from django.db.models import Q -from django.http import HttpResponse -from django.shortcuts import redirect, get_object_or_404 -from django.template.loader import select_template -from django.template.response import TemplateResponse -from django.urls import reverse -from django.utils.decorators import method_decorator -from django.views import View -from django.views.generic import DeleteView -from django_tables2 import RequestConfig -import importlib - -from apis_core.apis_entities.models import AbstractEntity -from apis_core.apis_labels.models import Label -from apis_core.apis_relations.models import AbstractRelation -from apis_core.apis_relations.tables import get_generic_relations_table, LabelTableEdit -from .forms import get_entities_form, FullTextForm, GenericEntitiesStanbolForm - - -@method_decorator(login_required, name="dispatch") -class GenericEntitiesEditView(View): - def get(self, request, *args, **kwargs): - entity = kwargs["entity"] - pk = kwargs["pk"] - entity_model = AbstractEntity.get_entity_class_of_name(entity) - instance = get_object_or_404(entity_model, pk=pk) - 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(), - ] - prefix = "{}{}-".format(match[0].title()[:2], match[1].title()[:2]) - table = get_generic_relations_table( - relation_class=rel, entity_instance=instance, detail=False - ) - 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} - objects = rel.objects.filter(Q(**dict_1) | Q(**dict_2)) - else: - if match[0].lower() == entity.lower(): - title_card = match[1].title() - else: - title_card = match[0].title() - dict_1 = {"related_" + entity.lower(): instance} - objects = rel.objects.filter(**dict_1) - tb_object = table(data=objects, prefix=prefix) - 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, - ) - ) - form = get_entities_form(entity.title()) - form = form(instance=instance) - object_labels = Label.objects.filter(temp_entity=instance) - tb_label = LabelTableEdit(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/entity_edit_generic.html", - ] - ) - context = { - "entity_type": entity, - "form": form, - "instance": instance, - "right_card": side_bar, - } - # form_merge_with = GenericEntitiesStanbolForm(entity, ent_merge_pk=pk) - # context["form_merge_with"] = form_merge_with - return HttpResponse(template.render(request=request, context=context)) - - def post(self, request, *args, **kwargs): - entity = kwargs["entity"] - pk = kwargs["pk"] - entity_model = AbstractEntity.get_entity_class_of_name(entity) - instance = get_object_or_404(entity_model, pk=pk) - form = get_entities_form(entity.title()) - form = form(request.POST, instance=instance) - form_text = FullTextForm(request.POST, entity=entity.title()) - if form.is_valid() and form_text.is_valid(): - entity_2 = form.save() - form_text.save(entity_2) - return redirect( - reverse( - "apis:apis_entities:generic_entities_edit_view", - kwargs={"pk": pk, "entity": entity}, - ) - ) - else: - template = select_template( - [ - "apis_entities/{}_create_generic.html".format(entity), - "apis_entities/entity_create_generic.html", - ] - ) - context = { - "form": form, - "entity_type": entity, - "form_text": form_text, - "instance": instance, - } - if entity.lower() != "place": - form_merge_with = GenericEntitiesStanbolForm(entity, ent_merge_pk=pk) - context["form_merge_with"] = form_merge_with - return TemplateResponse(request, template, context=context) - return HttpResponse(template.render(request=request, context=context)) - - -@method_decorator(login_required, name="dispatch") -class GenericEntitiesCreateView(View): - def get(self, request, *args, **kwargs): - entity = kwargs["entity"] - form = get_entities_form(entity.title()) - form = form() - form_text = FullTextForm(entity=entity.title()) - permissions = { - "create": request.user.has_perm("entities.add_{}".format(entity)) - } - template = select_template( - [ - "apis_entities/{}_create_generic.html".format(entity), - "apis_entities/entity_create_generic.html", - ] - ) - return HttpResponse( - template.render( - request=request, - context={ - "entity_type": entity, - "permissions": permissions, - "form": form, - "form_text": form_text, - }, - ) - ) - - def post(self, request, *args, **kwargs): - entity = kwargs["entity"] - form = get_entities_form(entity.title()) - form = form(request.POST) - form_text = FullTextForm(request.POST, entity=entity.title()) - if form.is_valid() and form_text.is_valid(): - entity_2 = form.save() - form_text.save(entity_2) - return redirect( - reverse( - "apis:apis_entities:generic_entities_detail_view", - kwargs={"pk": entity_2.pk, "entity": entity}, - ) - ) - else: - permissions = { - "create": request.user.has_perm("apis_entities.add_{}".format(entity)) - } - template = select_template( - [ - "apis_entities/{}_create_generic.html".format(entity), - "apis_entities/entity_create_generic.html", - ] - ) - return HttpResponse( - template.render( - request=request, - context={ - "permissions": permissions, - "form": form, - "form_text": form_text, - }, - ) - ) - - -@method_decorator(login_required, name="dispatch") -class GenericEntitiesCreateStanbolView(View): - def post(self, request, *args, **kwargs): - entity = kwargs["entity"] - ent_merge_pk = kwargs.get("ent_merge_pk", False) - if ent_merge_pk: - form = GenericEntitiesStanbolForm( - entity, request.POST, ent_merge_pk=ent_merge_pk - ) - else: - form = GenericEntitiesStanbolForm(entity, request.POST) - # form = form(request.POST) - if form.is_valid(): - entity_2 = form.save() - if ent_merge_pk: - entity_2.merge_with(int(ent_merge_pk)) - return redirect( - reverse( - "apis:apis_entities:generic_entities_edit_view", - kwargs={"pk": entity_2.pk, "entity": entity}, - ) - ) - else: - permissions = { - "create": request.user.has_perm("apis_entities.add_{}".format(entity)) - } - template = select_template( - [ - "apis_entities/{}_create_generic.html".format(entity), - "apis_entities/entity_create_generic.html", - ] - ) - return HttpResponse( - template.render( - request=request, context={"permissions": permissions, "form": form} - ) - ) - - -@method_decorator(login_required, name="dispatch") -class GenericEntitiesDeleteView(DeleteView): - model = importlib.import_module("apis_core.apis_metainfo.models").TempEntityClass - template_name = getattr( - settings, "APIS_DELETE_VIEW_TEMPLATE", "apis_entities/confirm_delete.html" - ) - - def dispatch(self, request, *args, **kwargs): - entity = kwargs["entity"] - self.success_url = reverse( - "apis_core:apis_entities:generic_entities_list", kwargs={"entity": entity} - ) - return super(GenericEntitiesDeleteView, self).dispatch(request, *args, **kwargs) diff --git a/apis_core/apis_labels/admin.py b/apis_core/apis_labels/admin.py index 919eb16..9901b47 100644 --- a/apis_core/apis_labels/admin.py +++ b/apis_core/apis_labels/admin.py @@ -7,7 +7,6 @@ # Register your models here. class BaseAdmin(admin.ModelAdmin): - search_fields = ("label",) list_filter = ( "isocode_639_3", diff --git a/apis_core/apis_labels/migrations/0001_initial.py b/apis_core/apis_labels/migrations/0001_initial.py index fcd4feb..02dfbc2 100644 --- a/apis_core/apis_labels/migrations/0001_initial.py +++ b/apis_core/apis_labels/migrations/0001_initial.py @@ -1,10 +1,9 @@ -# Generated by Django 2.1.12 on 2020-01-21 12:27 +# Generated by Django 5.0 on 2023-12-19 07:19 from django.db import migrations, models class Migration(migrations.Migration): - initial = True dependencies = [] @@ -15,7 +14,7 @@ class Migration(migrations.Migration): fields=[ ( "id", - models.AutoField( + models.BigAutoField( auto_created=True, primary_key=True, serialize=False, @@ -41,6 +40,24 @@ class Migration(migrations.Migration): verbose_name="ISO Code", ), ), + ("start_date", models.DateField(blank=True, null=True)), + ("start_start_date", models.DateField(blank=True, null=True)), + ("start_end_date", models.DateField(blank=True, null=True)), + ("end_date", models.DateField(blank=True, null=True)), + ("end_start_date", models.DateField(blank=True, null=True)), + ("end_end_date", models.DateField(blank=True, null=True)), + ( + "start_date_written", + models.CharField( + blank=True, max_length=255, null=True, verbose_name="Start" + ), + ), + ( + "end_date_written", + models.CharField( + blank=True, max_length=255, null=True, verbose_name="End" + ), + ), ], ), ] diff --git a/apis_core/apis_labels/migrations/0002_auto_20200121_1227.py b/apis_core/apis_labels/migrations/0002_initial.py similarity index 84% rename from apis_core/apis_labels/migrations/0002_auto_20200121_1227.py rename to apis_core/apis_labels/migrations/0002_initial.py index c52ab60..3b2f249 100644 --- a/apis_core/apis_labels/migrations/0002_auto_20200121_1227.py +++ b/apis_core/apis_labels/migrations/0002_initial.py @@ -1,17 +1,16 @@ -# Generated by Django 2.1.12 on 2020-01-21 12:27 +# Generated by Django 5.0 on 2023-12-19 07:19 import django.db.models.deletion from django.db import migrations, models class Migration(migrations.Migration): - initial = True dependencies = [ - ("apis_vocabularies", "0001_initial"), ("apis_labels", "0001_initial"), ("apis_metainfo", "0001_initial"), + ("apis_vocabularies", "0001_initial"), ] operations = [ @@ -22,7 +21,7 @@ class Migration(migrations.Migration): blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, - to="apis_vocabularies.LabelType", + to="apis_vocabularies.labeltype", ), ), migrations.AddField( @@ -30,7 +29,7 @@ class Migration(migrations.Migration): name="temp_entity", field=models.ForeignKey( on_delete=django.db.models.deletion.CASCADE, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ] diff --git a/apis_core/apis_labels/migrations/0003_auto_20200221_1731.py b/apis_core/apis_labels/migrations/0003_auto_20200221_1731.py deleted file mode 100644 index 90073ac..0000000 --- a/apis_core/apis_labels/migrations/0003_auto_20200221_1731.py +++ /dev/null @@ -1,57 +0,0 @@ -# Generated by Django 2.1.2 on 2020-02-21 17:31 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ("apis_labels", "0002_auto_20200121_1227"), - ] - - operations = [ - migrations.AddField( - model_name="label", - name="end_date", - field=models.DateField(blank=True, null=True), - ), - migrations.AddField( - model_name="label", - name="end_date_written", - field=models.CharField( - blank=True, max_length=255, null=True, verbose_name="End" - ), - ), - migrations.AddField( - model_name="label", - name="end_end_date", - field=models.DateField(blank=True, null=True), - ), - migrations.AddField( - model_name="label", - name="end_start_date", - field=models.DateField(blank=True, null=True), - ), - migrations.AddField( - model_name="label", - name="start_date", - field=models.DateField(blank=True, null=True), - ), - migrations.AddField( - model_name="label", - name="start_date_written", - field=models.CharField( - blank=True, max_length=255, null=True, verbose_name="Start" - ), - ), - migrations.AddField( - model_name="label", - name="start_end_date", - field=models.DateField(blank=True, null=True), - ), - migrations.AddField( - model_name="label", - name="start_start_date", - field=models.DateField(blank=True, null=True), - ), - ] diff --git a/apis_core/apis_labels/models.py b/apis_core/apis_labels/models.py index 6fb0ebe..4ddff8e 100644 --- a/apis_core/apis_labels/models.py +++ b/apis_core/apis_labels/models.py @@ -64,7 +64,6 @@ def save(self, *args, **kwargs): self.label = unicodedata.normalize("NFC", self.label) def parse_dates(): - # overwrite every field with None as default start_date = None start_start_date = None diff --git a/apis_core/apis_labels/views.py b/apis_core/apis_labels/views.py index 39d14f1..7e65352 100644 --- a/apis_core/apis_labels/views.py +++ b/apis_core/apis_labels/views.py @@ -10,4 +10,4 @@ def delete_label(request, label_id): instance = Label.objects.get(id=label_id) label = f"{instance}" instance.delete() - return HttpResponse(f"gelöschtes Label: {label} ") \ No newline at end of file + return HttpResponse(f"gelöschtes Label: {label} ") diff --git a/apis_core/apis_metainfo/migrations/0001_initial.py b/apis_core/apis_metainfo/migrations/0001_initial.py index 436f268..50bdde6 100644 --- a/apis_core/apis_metainfo/migrations/0001_initial.py +++ b/apis_core/apis_metainfo/migrations/0001_initial.py @@ -1,11 +1,9 @@ -# Generated by Django 2.1.12 on 2020-01-21 12:27 +# Generated by Django 5.0 on 2023-12-19 07:19 -import django.db.models.deletion from django.db import migrations, models class Migration(migrations.Migration): - initial = True dependencies = [] @@ -16,7 +14,7 @@ class Migration(migrations.Migration): fields=[ ( "id", - models.AutoField( + models.BigAutoField( auto_created=True, primary_key=True, serialize=False, @@ -25,6 +23,7 @@ class Migration(migrations.Migration): ), ("name", models.CharField(max_length=255)), ("description", models.TextField(blank=True)), + ("published", models.BooleanField(default=False)), ], ), migrations.CreateModel( @@ -32,7 +31,7 @@ class Migration(migrations.Migration): fields=[ ( "id", - models.AutoField( + models.BigAutoField( auto_created=True, primary_key=True, serialize=False, @@ -51,7 +50,7 @@ class Migration(migrations.Migration): fields=[ ( "id", - models.AutoField( + models.BigAutoField( auto_created=True, primary_key=True, serialize=False, @@ -87,6 +86,7 @@ class Migration(migrations.Migration): ("status", models.CharField(max_length=100)), ("references", models.TextField(blank=True, null=True)), ("notes", models.TextField(blank=True, null=True)), + ("published", models.BooleanField(default=False)), ], ), migrations.CreateModel( @@ -94,7 +94,7 @@ class Migration(migrations.Migration): fields=[ ( "id", - models.AutoField( + models.BigAutoField( auto_created=True, primary_key=True, serialize=False, @@ -109,7 +109,7 @@ class Migration(migrations.Migration): fields=[ ( "id", - models.AutoField( + models.BigAutoField( auto_created=True, primary_key=True, serialize=False, @@ -118,47 +118,27 @@ class Migration(migrations.Migration): ), ( "uri", - models.URLField(blank=True, max_length=255, null=True, unique=True), - ), - ("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)), - ( - "entity", - models.ForeignKey( + models.URLField( blank=True, + help_text="Eindeutiger Identifier", + max_length=255, null=True, - on_delete=django.db.models.deletion.CASCADE, - to="apis_metainfo.TempEntityClass", + unique=True, + verbose_name="URI", ), ), - ], - ), - migrations.CreateModel( - name="UriCandidate", - fields=[ ( - "id", - models.AutoField( - auto_created=True, - primary_key=True, - serialize=False, - verbose_name="ID", - ), - ), - ("uri", models.URLField()), - ("confidence", models.FloatField(blank=True, null=True)), - ("responsible", models.CharField(max_length=255)), - ( - "entity", - models.ForeignKey( + "domain", + models.CharField( blank=True, - null=True, - on_delete=django.db.models.deletion.CASCADE, - to="apis_metainfo.TempEntityClass", + help_text="Domain der Normdatenquelle, z.B. gnd, wikidata, geonames, ...", + max_length=255, + verbose_name="Domain", ), ), + ("rdf_link", models.URLField(blank=True)), + ("loaded", models.BooleanField(default=False)), + ("loaded_time", models.DateTimeField(blank=True, null=True)), ], ), ] diff --git a/apis_core/apis_metainfo/migrations/0002_auto_20200121_1227.py b/apis_core/apis_metainfo/migrations/0002_initial.py similarity index 69% rename from apis_core/apis_metainfo/migrations/0002_auto_20200121_1227.py rename to apis_core/apis_metainfo/migrations/0002_initial.py index b91dc40..ed55c06 100644 --- a/apis_core/apis_metainfo/migrations/0002_auto_20200121_1227.py +++ b/apis_core/apis_metainfo/migrations/0002_initial.py @@ -1,44 +1,48 @@ -# Generated by Django 2.1.12 on 2020-01-21 12:27 +# Generated by Django 5.0 on 2023-12-19 07:19 import django.db.models.deletion from django.db import migrations, models class Migration(migrations.Migration): - initial = True dependencies = [ - ("apis_vocabularies", "0001_initial"), - ("auth", "0009_alter_user_last_name_max_length"), ("apis_metainfo", "0001_initial"), + ("apis_vocabularies", "0001_initial"), + ("auth", "0012_alter_user_first_name_max_length"), ] operations = [ migrations.AddField( - model_name="text", - name="kind", + model_name="collection", + name="collection_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, - to="apis_vocabularies.TextType", + to="apis_vocabularies.collectiontype", ), ), migrations.AddField( - model_name="text", - name="source", + model_name="collection", + name="groups_allowed", + field=models.ManyToManyField(to="auth.group"), + ), + migrations.AddField( + model_name="collection", + name="parent_class", field=models.ForeignKey( blank=True, null=True, - on_delete=django.db.models.deletion.SET_NULL, - to="apis_metainfo.Source", + on_delete=django.db.models.deletion.CASCADE, + to="apis_metainfo.collection", ), ), migrations.AddField( model_name="tempentityclass", name="collection", - field=models.ManyToManyField(to="apis_metainfo.Collection"), + field=models.ManyToManyField(to="apis_metainfo.collection"), ), migrations.AddField( model_name="tempentityclass", @@ -47,37 +51,44 @@ class Migration(migrations.Migration): blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, - to="apis_metainfo.Source", + to="apis_metainfo.source", ), ), migrations.AddField( - model_name="tempentityclass", - name="text", - field=models.ManyToManyField(blank=True, to="apis_metainfo.Text"), + model_name="text", + name="kind", + field=models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + to="apis_vocabularies.texttype", + ), ), migrations.AddField( - model_name="collection", - name="collection_type", + model_name="text", + name="source", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, - to="apis_vocabularies.CollectionType", + to="apis_metainfo.source", ), ), migrations.AddField( - model_name="collection", - name="groups_allowed", - field=models.ManyToManyField(to="auth.Group"), + model_name="tempentityclass", + name="text", + field=models.ManyToManyField(blank=True, to="apis_metainfo.text"), ), migrations.AddField( - model_name="collection", - name="parent_class", + model_name="uri", + name="entity", field=models.ForeignKey( blank=True, + help_text="Entität die mit dieser URI verbunden ist", null=True, on_delete=django.db.models.deletion.CASCADE, - to="apis_metainfo.Collection", + to="apis_metainfo.tempentityclass", + verbose_name="Entität", ), ), ] diff --git a/apis_core/apis_metainfo/migrations/0003_tempentityclass_published.py b/apis_core/apis_metainfo/migrations/0003_tempentityclass_published.py deleted file mode 100644 index 9fd4716..0000000 --- a/apis_core/apis_metainfo/migrations/0003_tempentityclass_published.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.2.12 on 2020-05-29 14:27 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ("apis_metainfo", "0002_auto_20200121_1227"), - ] - - operations = [ - migrations.AddField( - model_name="tempentityclass", - name="published", - field=models.BooleanField(default=False), - ), - ] diff --git a/apis_core/apis_metainfo/migrations/0004_collection_published.py b/apis_core/apis_metainfo/migrations/0004_collection_published.py deleted file mode 100644 index f2c4539..0000000 --- a/apis_core/apis_metainfo/migrations/0004_collection_published.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.2.12 on 2020-05-29 14:31 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ("apis_metainfo", "0003_tempentityclass_published"), - ] - - operations = [ - migrations.AddField( - model_name="collection", - name="published", - field=models.BooleanField(default=False), - ), - ] diff --git a/apis_core/apis_metainfo/migrations/0005_text_lang.py b/apis_core/apis_metainfo/migrations/0005_text_lang.py deleted file mode 100644 index a8029b7..0000000 --- a/apis_core/apis_metainfo/migrations/0005_text_lang.py +++ /dev/null @@ -1,25 +0,0 @@ -# Generated by Django 2.2.12 on 2020-06-09 09:25 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ("apis_metainfo", "0004_collection_published"), - ] - - operations = [ - migrations.AddField( - model_name="text", - 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_metainfo/migrations/0006_remove_text_lang.py b/apis_core/apis_metainfo/migrations/0006_remove_text_lang.py deleted file mode 100644 index de89033..0000000 --- a/apis_core/apis_metainfo/migrations/0006_remove_text_lang.py +++ /dev/null @@ -1,17 +0,0 @@ -# Generated by Django 2.2.13 on 2020-07-22 12:47 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ("apis_metainfo", "0005_text_lang"), - ] - - operations = [ - migrations.RemoveField( - model_name="text", - name="lang", - ), - ] diff --git a/apis_core/apis_metainfo/models.py b/apis_core/apis_metainfo/models.py index 6d4bda5..2ab391e 100644 --- a/apis_core/apis_metainfo/models.py +++ b/apis_core/apis_metainfo/models.py @@ -1,6 +1,4 @@ -import re import unicodedata -import requests from django.apps import apps from django.conf import settings @@ -10,21 +8,13 @@ from django.db import models 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 apis_core.apis_entities.serializers_generic import EntitySerializer from apis_core.apis_labels.models import Label from apis_core.apis_vocabularies.models import CollectionType, LabelType, TextType -from django.contrib.contenttypes.fields import GenericRelation - -# from helper_functions.highlighter import highlight_text -from apis_core.default_settings.NER_settings import autocomp_settings from apis_core.helper_functions import DateParser -NEXT_PREV = getattr(settings, "APIS_NEXT_PREV", True) - class TempEntityClass(models.Model): """Base class to bind common attributes to many classes. @@ -185,10 +175,7 @@ def get_absolute_url(self): def get_prev_url(self): entity = self.__class__.__name__.lower() - if NEXT_PREV: - prev = self.__class__.objects.filter(id__lt=self.id).order_by("-id") - else: - return False + prev = self.__class__.objects.filter(id__lt=self.id).order_by("-id") if prev: if entity == "institution" or len(entity) < 10: return reverse( @@ -205,10 +192,7 @@ def get_prev_url(self): def get_next_url(self): entity = self.__class__.__name__.lower() - if NEXT_PREV: - next = self.__class__.objects.filter(id__gt=self.id) - else: - return False + next = self.__class__.objects.filter(id__gt=self.id) if next: if entity == "institution" or len(entity) < 10: return reverse( @@ -278,15 +262,15 @@ def merge_with(self, entities): for r in rels.filter(model__icontains=e_b): lst_ents_rel = str(r).split() if lst_ents_rel[-1] == lst_ents_rel[-2]: - q_d = {"related_{}A".format(e_b.lower()): ent} + q_d = {"related_{}a".format(e_b.lower()): ent} k = r.model_class().objects.filter(**q_d) for t in k: - setattr(t, "related_{}A".format(e_a.lower()), self) + setattr(t, "related_{}a".format(e_a.lower()), self) t.save() - q_d = {"related_{}B".format(e_b.lower()): ent} + q_d = {"related_{}b".format(e_b.lower()): ent} k = r.model_class().objects.filter(**q_d) for t in k: - setattr(t, "related_{}B".format(e_a.lower()), self) + setattr(t, "related_{}b".format(e_a.lower()), self) t.save() else: q_d = {"related_{}".format(e_b.lower()): ent} @@ -297,9 +281,6 @@ def merge_with(self, entities): ent.delete() - def get_serialization(self): - return EntitySerializer(self).data - class Source(models.Model): """Holds information about entities and their relations""" @@ -388,9 +369,7 @@ class Uri(models.Model): 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) - # Timestamp when file was loaded and parsed loaded_time = models.DateTimeField(blank=True, null=True) def __str__(self): @@ -423,36 +402,3 @@ def get_delete_url(self): def get_edit_url(self): return reverse("apis_core:apis_metainfo:uri_edit", kwargs={"pk": self.id}) - - -class UriCandidate(models.Model): - """Used to store the URI candidates for automatically generated entities.""" - - uri = models.URLField() - confidence = models.FloatField(blank=True, null=True) - responsible = models.CharField(max_length=255) - entity = models.ForeignKey( - TempEntityClass, blank=True, null=True, on_delete=models.CASCADE - ) - - @cached_property - def description(self): - headers = {"accept": "application/json"} - cn = TempEntityClass.objects_inheritance.get_subclass( - id=self.entity_id - ).__class__.__name__ - for endp in autocomp_settings[cn.title()]: - url = re.sub(r"/[a-z]+$", "/entity", endp["url"]) - params = {"id": self.uri} - res = requests.get(url, params=params, headers=headers) - if res.status_code == 200: - if endp["fields"]["descr"][0] in res.json()["representation"].keys(): - desc = res.json()["representation"][endp["fields"]["descr"][0]][0][ - "value" - ] - else: - desc = "undefined" - label = res.json()["representation"][endp["fields"]["name"][0]][0][ - "value" - ] - return (label, desc) diff --git a/apis_core/apis_metainfo/serializers.py b/apis_core/apis_metainfo/serializers.py index 60bb103..aebff3f 100644 --- a/apis_core/apis_metainfo/serializers.py +++ b/apis_core/apis_metainfo/serializers.py @@ -4,7 +4,6 @@ class CollectionSerializer(serializers.HyperlinkedModelSerializer): - url = serializers.HyperlinkedIdentityField( view_name="apis:apis_api:text-detail", lookup_field="pk" ) diff --git a/apis_core/apis_metainfo/tables.py b/apis_core/apis_metainfo/tables.py index 2c1befe..a86606a 100644 --- a/apis_core/apis_metainfo/tables.py +++ b/apis_core/apis_metainfo/tables.py @@ -61,15 +61,12 @@ def helper_render_date(value, var_date, var_start_date, var_end_date): # Various if-else branches checking which of the date fields are not None and should be used if var_start_date != None and var_end_date != None: - overlay_help_text = str(var_start_date) + " - " + str(var_end_date) elif var_date != None: - overlay_help_text = str(var_date) else: - return "—" return format_html("" + value + "") @@ -78,7 +75,6 @@ def helper_render_date(value, var_date, var_start_date, var_end_date): # Again this function serves a generic purpose and must be assigned as class method to django-tables2 tables.Table class # The whole logic is very similare to the generic_order_* functions above, so see their comments for more details. def generic_render_start_date_written(self, record, value): - return helper_render_date( value=value, var_date=record.start_date, @@ -88,7 +84,6 @@ def generic_render_start_date_written(self, record, value): def generic_render_end_date_written(self, record, value): - return helper_render_date( value=value, var_date=record.end_date, diff --git a/apis_core/apis_metainfo/views.py b/apis_core/apis_metainfo/views.py index 5cb5d3b..b1dae15 100644 --- a/apis_core/apis_metainfo/views.py +++ b/apis_core/apis_metainfo/views.py @@ -32,7 +32,6 @@ class UriDetailView(DetailView): class UriCreate(BaseCreateView): - model = Uri form_class = UriForm @@ -42,7 +41,6 @@ def dispatch(self, *args, **kwargs): class UriUpdate(BaseUpdateView): - model = Uri form_class = UriForm diff --git a/apis_core/apis_relations/admin.py b/apis_core/apis_relations/admin.py index b28b04f..8b13789 100644 --- a/apis_core/apis_relations/admin.py +++ b/apis_core/apis_relations/admin.py @@ -1,3 +1 @@ - - diff --git a/apis_core/apis_relations/api_views.py b/apis_core/apis_relations/api_views.py index b28b04f..8b13789 100644 --- a/apis_core/apis_relations/api_views.py +++ b/apis_core/apis_relations/api_views.py @@ -1,3 +1 @@ - - diff --git a/apis_core/apis_relations/forms.py b/apis_core/apis_relations/forms.py index f1899fd..45cb71c 100644 --- a/apis_core/apis_relations/forms.py +++ b/apis_core/apis_relations/forms.py @@ -7,7 +7,6 @@ from apis_core.apis_entities.models import Place from apis_core.apis_labels.models import Label from apis_core.helper_functions import DateParser -from apis_core.helper_functions.RDFParser import RDFParser ############################################## @@ -53,7 +52,6 @@ def __init__(self, siteID=None, *args, **kwargs): instance = getattr(self, "instance", None) if instance != None: - if instance.start_date_written: self.fields[ "start_date_written" @@ -117,20 +115,3 @@ class PlaceLabelForm(EntityLabelForm): class EventLabelForm(EntityLabelForm): pass - - -############################################## -# Entities Base Forms -############################################# - - -class PlaceEntityForm(forms.Form): - # place = forms.CharField(label='Place', widget=al.TextWidget('OrtAutocomplete')) - place_uri = forms.CharField(required=False, widget=forms.HiddenInput()) - - def save(self, *args, **kwargs): - cd = self.cleaned_data - pl = Place.get_or_create_uri(cd["place_uri"]) - if not pl: - pl = RDFParser(cd["place_uri"], "Place").get_or_create() - return pl diff --git a/apis_core/apis_relations/forms2.py b/apis_core/apis_relations/forms2.py index ba4e7dd..01d670c 100644 --- a/apis_core/apis_relations/forms2.py +++ b/apis_core/apis_relations/forms2.py @@ -1,7 +1,6 @@ import copy import re -import yaml from crispy_forms.bootstrap import Accordion, AccordionGroup from crispy_forms.helper import FormHelper from crispy_forms.layout import Layout @@ -16,10 +15,9 @@ from apis_core.apis_entities.models import AbstractEntity # from dal.autocomplete import ListSelect2 -from apis_core.apis_metainfo.models import TempEntityClass, Text, Uri +from apis_core.apis_metainfo.models import TempEntityClass, Uri from apis_core.apis_relations.models import AbstractRelation from apis_core.helper_functions import DateParser -from apis_core.helper_functions.RDFParser import RDFParser, APIS_RDF_URI_SETTINGS from .tables import get_generic_relations_table # from dal.autocomplete import ListSelect2 @@ -30,24 +28,7 @@ def validate_target_autocomplete(value): value = int(value) except ValueError: if value.startswith("http"): - test = False - sett = yaml.safe_load(open(APIS_RDF_URI_SETTINGS, "r")) - regx = [x["regex"] for x in sett["mappings"]] - regx.append("http.*oeaw\.ac\.at") - for k, v in getattr(settings, "APIS_AC_INSTANCES", {}).items(): - regx.append(v["url"].replace(".", "\.")) - for r in regx: - if re.match(r, value): - test = True - if not test: - if Uri.objects.filter(uri=value).count() != 1: - raise ValidationError( - _( - "Invalid value: %(value)s, the url you are using is not configured" - ), - code="invalid", - params={"value": value}, - ) + pass else: raise ValidationError( _("Invalid value: %(value)s, use either URLs or select a value"), @@ -90,8 +71,6 @@ def save(self, site_instance, instance=None, commit=True): setattr(x, self.rel_accessor[3], site_instance) target = AbstractEntity.get_entity_class_of_name(self.rel_accessor[0]) t1 = target.get_or_create_uri(cd["target"]) - if not t1: - t1 = RDFParser(cd["target"], self.rel_accessor[0]).get_or_create() setattr(x, self.rel_accessor[2], t1) if commit: x.save() @@ -105,7 +84,6 @@ def get_text_id(self): return self.cleaned_data["HL_text_id"][5:] def get_html_table(self, entity_type, request, site_instance, form_match): - table = get_generic_relations_table( relation_class=self.relation_form, entity_instance=site_instance, @@ -368,7 +346,6 @@ def __init__(self, siteID=None, highlighter=False, *args, **kwargs): ) if instance != None: - if instance.start_date_written: self.fields[ "start_date_written" diff --git a/apis_core/apis_relations/migrations/0001_initial.py b/apis_core/apis_relations/migrations/0001_initial.py index e366d1a..5ee2f63 100644 --- a/apis_core/apis_relations/migrations/0001_initial.py +++ b/apis_core/apis_relations/migrations/0001_initial.py @@ -1,11 +1,10 @@ -# Generated by Django 2.1.12 on 2020-01-21 12:27 +# Generated by Django 5.0 on 2023-12-19 07:19 -import django.db.models.manager +import django.db.models.deletion from django.db import migrations, models class Migration(migrations.Migration): - initial = True dependencies = [ @@ -15,7 +14,7 @@ class Migration(migrations.Migration): operations = [ migrations.CreateModel( - name="EventEvent", + name="EventWork", fields=[ ( "tempentityclass_ptr", @@ -25,20 +24,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="EventWork", + name="InstitutionEvent", fields=[ ( "tempentityclass_ptr", @@ -48,20 +45,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="InstitutionEvent", + name="InstitutionInstitution", fields=[ ( "tempentityclass_ptr", @@ -71,20 +66,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="InstitutionInstitution", + name="InstitutionPlace", fields=[ ( "tempentityclass_ptr", @@ -94,20 +87,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="InstitutionPlace", + name="InstitutionWork", fields=[ ( "tempentityclass_ptr", @@ -117,20 +108,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="InstitutionWork", + name="PersonEvent", fields=[ ( "tempentityclass_ptr", @@ -140,20 +129,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="PersonEvent", + name="PersonInstitution", fields=[ ( "tempentityclass_ptr", @@ -163,20 +150,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="PersonInstitution", + name="PersonPerson", fields=[ ( "tempentityclass_ptr", @@ -186,20 +171,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="PersonPerson", + name="PersonPlace", fields=[ ( "tempentityclass_ptr", @@ -209,20 +192,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="PersonPlace", + name="PersonWork", fields=[ ( "tempentityclass_ptr", @@ -232,20 +213,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="PersonWork", + name="PlaceEvent", fields=[ ( "tempentityclass_ptr", @@ -255,20 +234,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="PlaceEvent", + name="PlacePlace", fields=[ ( "tempentityclass_ptr", @@ -278,20 +255,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="PlacePlace", + name="PlaceWork", fields=[ ( "tempentityclass_ptr", @@ -301,20 +276,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="PlaceWork", + name="WorkWork", fields=[ ( "tempentityclass_ptr", @@ -324,20 +297,18 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), migrations.CreateModel( - name="WorkWork", + name="EventEvent", fields=[ ( "tempentityclass_ptr", @@ -347,36 +318,34 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_metainfo.TempEntityClass", + to="apis_metainfo.tempentityclass", ), ), ( - "related_workA", + "related_eventa", models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="related_workB", - to="apis_entities.Work", + related_name="related_eventb", + to="apis_entities.event", ), ), ( - "related_workB", + "related_eventb", models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="related_workA", - to="apis_entities.Work", + related_name="related_eventa", + to="apis_entities.event", ), ), ], options={ "abstract": False, + "default_manager_name": "objects", }, bases=("apis_metainfo.tempentityclass",), - managers=[ - ("annotation_links", django.db.models.manager.Manager()), - ], ), ] diff --git a/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py b/apis_core/apis_relations/migrations/0002_initial.py similarity index 84% rename from apis_core/apis_relations/migrations/0002_auto_20200121_1227.py rename to apis_core/apis_relations/migrations/0002_initial.py index dc9f6e8..87a58a5 100644 --- a/apis_core/apis_relations/migrations/0002_auto_20200121_1227.py +++ b/apis_core/apis_relations/migrations/0002_initial.py @@ -1,227 +1,226 @@ -# Generated by Django 2.1.12 on 2020-01-21 12:27 +# Generated by Django 5.0 on 2023-12-19 07:19 import django.db.models.deletion from django.db import migrations, models class Migration(migrations.Migration): - initial = True dependencies = [ - ("apis_vocabularies", "0001_initial"), + ("apis_entities", "0002_initial"), ("apis_relations", "0001_initial"), - ("apis_entities", "0002_auto_20200121_1227"), + ("apis_vocabularies", "0001_initial"), ] operations = [ migrations.AddField( - model_name="workwork", + model_name="eventevent", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="workwork_set", - to="apis_vocabularies.WorkWorkRelation", + related_name="eventevent_set", + to="apis_vocabularies.eventeventrelation", ), ), migrations.AddField( - model_name="placework", - name="related_place", + model_name="eventwork", + name="related_event", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="placework_set", - to="apis_entities.Place", + related_name="eventwork_set", + to="apis_entities.event", ), ), migrations.AddField( - model_name="placework", + model_name="eventwork", name="related_work", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="placework_set", - to="apis_entities.Work", + related_name="eventwork_set", + to="apis_entities.work", ), ), migrations.AddField( - model_name="placework", + model_name="eventwork", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="placework_set", - to="apis_vocabularies.PlaceWorkRelation", + related_name="eventwork_set", + to="apis_vocabularies.eventworkrelation", ), ), migrations.AddField( - model_name="placeplace", - name="related_placea", + model_name="institutionevent", + name="related_event", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="related_placeb", - to="apis_entities.Place", + related_name="institutionevent_set", + to="apis_entities.event", ), ), migrations.AddField( - model_name="placeplace", - name="related_placeb", + model_name="institutionevent", + name="related_institution", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="related_placea", - to="apis_entities.Place", + related_name="institutionevent_set", + to="apis_entities.institution", ), ), migrations.AddField( - model_name="placeplace", + model_name="institutionevent", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="placeplace_set", - to="apis_vocabularies.PlacePlaceRelation", + related_name="institutionevent_set", + to="apis_vocabularies.institutioneventrelation", ), ), migrations.AddField( - model_name="placeevent", - name="related_event", + model_name="institutioninstitution", + name="related_institutiona", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="placeevent_set", - to="apis_entities.Event", + related_name="related_institutionb", + to="apis_entities.institution", ), ), migrations.AddField( - model_name="placeevent", - name="related_place", + model_name="institutioninstitution", + name="related_institutionb", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="placeevent_set", - to="apis_entities.Place", + related_name="related_institutiona", + to="apis_entities.institution", ), ), migrations.AddField( - model_name="placeevent", + model_name="institutioninstitution", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="placeevent_set", - to="apis_vocabularies.PlaceEventRelation", + related_name="institutioninstitution_set", + to="apis_vocabularies.institutioninstitutionrelation", ), ), migrations.AddField( - model_name="personwork", - name="related_person", + model_name="institutionplace", + name="related_institution", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="personwork_set", - to="apis_entities.Person", + related_name="institutionplace_set", + to="apis_entities.institution", ), ), migrations.AddField( - model_name="personwork", - name="related_work", + model_name="institutionplace", + name="related_place", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="personwork_set", - to="apis_entities.Work", + related_name="institutionplace_set", + to="apis_entities.place", ), ), migrations.AddField( - model_name="personwork", + model_name="institutionplace", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="personwork_set", - to="apis_vocabularies.PersonWorkRelation", + related_name="institutionplace_set", + to="apis_vocabularies.institutionplacerelation", ), ), migrations.AddField( - model_name="personplace", - name="related_person", + model_name="institutionwork", + name="related_institution", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="personplace_set", - to="apis_entities.Person", + related_name="institutionwork_set", + to="apis_entities.institution", ), ), migrations.AddField( - model_name="personplace", - name="related_place", + model_name="institutionwork", + name="related_work", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="personplace_set", - to="apis_entities.Place", + related_name="institutionwork_set", + to="apis_entities.work", ), ), migrations.AddField( - model_name="personplace", + model_name="institutionwork", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="personplace_set", - to="apis_vocabularies.PersonPlaceRelation", + related_name="institutionwork_set", + to="apis_vocabularies.institutionworkrelation", ), ), migrations.AddField( - model_name="personperson", - name="related_persona", + model_name="personevent", + name="related_event", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="related_personb", - to="apis_entities.Person", + related_name="personevent_set", + to="apis_entities.event", ), ), migrations.AddField( - model_name="personperson", - name="related_personb", + model_name="personevent", + name="related_person", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="related_persona", - to="apis_entities.Person", + related_name="personevent_set", + to="apis_entities.person", ), ), migrations.AddField( - model_name="personperson", + model_name="personevent", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="personperson_set", - to="apis_vocabularies.PersonPersonRelation", + related_name="personevent_set", + to="apis_vocabularies.personeventrelation", ), ), migrations.AddField( @@ -232,7 +231,7 @@ class Migration(migrations.Migration): null=True, on_delete=django.db.models.deletion.CASCADE, related_name="personinstitution_set", - to="apis_entities.Institution", + to="apis_entities.institution", ), ), migrations.AddField( @@ -243,7 +242,7 @@ class Migration(migrations.Migration): null=True, on_delete=django.db.models.deletion.CASCADE, related_name="personinstitution_set", - to="apis_entities.Person", + to="apis_entities.person", ), ), migrations.AddField( @@ -254,238 +253,238 @@ class Migration(migrations.Migration): null=True, on_delete=django.db.models.deletion.CASCADE, related_name="personinstitution_set", - to="apis_vocabularies.PersonInstitutionRelation", + to="apis_vocabularies.personinstitutionrelation", ), ), migrations.AddField( - model_name="personevent", - name="related_event", + model_name="personperson", + name="related_persona", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="personevent_set", - to="apis_entities.Event", + related_name="related_personb", + to="apis_entities.person", ), ), migrations.AddField( - model_name="personevent", - name="related_person", + model_name="personperson", + name="related_personb", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="personevent_set", - to="apis_entities.Person", + related_name="related_persona", + to="apis_entities.person", ), ), migrations.AddField( - model_name="personevent", + model_name="personperson", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="personevent_set", - to="apis_vocabularies.PersonEventRelation", + related_name="personperson_set", + to="apis_vocabularies.personpersonrelation", ), ), migrations.AddField( - model_name="institutionwork", - name="related_institution", + model_name="personplace", + name="related_person", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="institutionwork_set", - to="apis_entities.Institution", + related_name="personplace_set", + to="apis_entities.person", ), ), migrations.AddField( - model_name="institutionwork", - name="related_work", + model_name="personplace", + name="related_place", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="institutionwork_set", - to="apis_entities.Work", + related_name="personplace_set", + to="apis_entities.place", ), ), migrations.AddField( - model_name="institutionwork", + model_name="personplace", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="institutionwork_set", - to="apis_vocabularies.InstitutionWorkRelation", + related_name="personplace_set", + to="apis_vocabularies.personplacerelation", ), ), migrations.AddField( - model_name="institutionplace", - name="related_institution", + model_name="personwork", + name="related_person", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="institutionplace_set", - to="apis_entities.Institution", + related_name="personwork_set", + to="apis_entities.person", ), ), migrations.AddField( - model_name="institutionplace", - name="related_place", + model_name="personwork", + name="related_work", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="institutionplace_set", - to="apis_entities.Place", + related_name="personwork_set", + to="apis_entities.work", ), ), migrations.AddField( - model_name="institutionplace", + model_name="personwork", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="institutionplace_set", - to="apis_vocabularies.InstitutionPlaceRelation", + related_name="personwork_set", + to="apis_vocabularies.personworkrelation", ), ), migrations.AddField( - model_name="institutioninstitution", - name="related_institutionA", + model_name="placeevent", + name="related_event", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="related_institutionB", - to="apis_entities.Institution", + related_name="placeevent_set", + to="apis_entities.event", ), ), migrations.AddField( - model_name="institutioninstitution", - name="related_institutionB", + model_name="placeevent", + name="related_place", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="related_institutionA", - to="apis_entities.Institution", + related_name="placeevent_set", + to="apis_entities.place", ), ), migrations.AddField( - model_name="institutioninstitution", + model_name="placeevent", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="institutioninstitution_set", - to="apis_vocabularies.InstitutionInstitutionRelation", + related_name="placeevent_set", + to="apis_vocabularies.placeeventrelation", ), ), migrations.AddField( - model_name="institutionevent", - name="related_event", + model_name="placeplace", + name="related_placea", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="institutionevent_set", - to="apis_entities.Event", + related_name="related_placeb", + to="apis_entities.place", ), ), migrations.AddField( - model_name="institutionevent", - name="related_institution", + model_name="placeplace", + name="related_placeb", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="institutionevent_set", - to="apis_entities.Institution", + related_name="related_placea", + to="apis_entities.place", ), ), migrations.AddField( - model_name="institutionevent", + model_name="placeplace", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="institutionevent_set", - to="apis_vocabularies.InstitutionEventRelation", + related_name="placeplace_set", + to="apis_vocabularies.placeplacerelation", ), ), migrations.AddField( - model_name="eventwork", - name="related_event", + model_name="placework", + name="related_place", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="eventwork_set", - to="apis_entities.Event", + related_name="placework_set", + to="apis_entities.place", ), ), migrations.AddField( - model_name="eventwork", + model_name="placework", name="related_work", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="eventwork_set", - to="apis_entities.Work", + related_name="placework_set", + to="apis_entities.work", ), ), migrations.AddField( - model_name="eventwork", + model_name="placework", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="eventwork_set", - to="apis_vocabularies.EventWorkRelation", + related_name="placework_set", + to="apis_vocabularies.placeworkrelation", ), ), migrations.AddField( - model_name="eventevent", - name="related_eventa", + model_name="workwork", + name="related_worka", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="related_eventb", - to="apis_entities.Event", + related_name="related_workb", + to="apis_entities.work", ), ), migrations.AddField( - model_name="eventevent", - name="related_eventb", + model_name="workwork", + name="related_workb", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="related_eventa", - to="apis_entities.Event", + related_name="related_worka", + to="apis_entities.work", ), ), migrations.AddField( - model_name="eventevent", + model_name="workwork", name="relation_type", field=models.ForeignKey( blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, - related_name="eventevent_set", - to="apis_vocabularies.EventEventRelation", + related_name="workwork_set", + to="apis_vocabularies.workworkrelation", ), ), ] diff --git a/apis_core/apis_relations/migrations/0003_auto_20200609_0925.py b/apis_core/apis_relations/migrations/0003_auto_20200609_0925.py deleted file mode 100644 index 4e76a17..0000000 --- a/apis_core/apis_relations/migrations/0003_auto_20200609_0925.py +++ /dev/null @@ -1,133 +0,0 @@ -# Generated by Django 2.2.12 on 2020-06-09 09:25 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ("apis_relations", "0002_auto_20200121_1227"), - ] - - operations = [ - migrations.AlterModelOptions( - name="eventevent", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="eventwork", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="institutionevent", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="institutioninstitution", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="institutionplace", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="institutionwork", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="personevent", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="personinstitution", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="personperson", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="personplace", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="personwork", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="placeevent", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="placeplace", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="placework", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelOptions( - name="workwork", - options={"default_manager_name": "objects"}, - ), - migrations.AlterModelManagers( - name="eventevent", - managers=[], - ), - migrations.AlterModelManagers( - name="eventwork", - managers=[], - ), - migrations.AlterModelManagers( - name="institutionevent", - managers=[], - ), - migrations.AlterModelManagers( - name="institutioninstitution", - managers=[], - ), - migrations.AlterModelManagers( - name="institutionplace", - managers=[], - ), - migrations.AlterModelManagers( - name="institutionwork", - managers=[], - ), - migrations.AlterModelManagers( - name="personevent", - managers=[], - ), - migrations.AlterModelManagers( - name="personinstitution", - managers=[], - ), - migrations.AlterModelManagers( - name="personperson", - managers=[], - ), - migrations.AlterModelManagers( - name="personplace", - managers=[], - ), - migrations.AlterModelManagers( - name="personwork", - managers=[], - ), - migrations.AlterModelManagers( - name="placeevent", - managers=[], - ), - migrations.AlterModelManagers( - name="placeplace", - managers=[], - ), - migrations.AlterModelManagers( - name="placework", - managers=[], - ), - migrations.AlterModelManagers( - name="workwork", - managers=[], - ), - ] diff --git a/apis_core/apis_relations/models.py b/apis_core/apis_relations/models.py index 2ebb053..e98411e 100644 --- a/apis_core/apis_relations/models.py +++ b/apis_core/apis_relations/models.py @@ -29,7 +29,6 @@ class Meta: default_manager_name = "objects" 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 @@ -50,7 +49,6 @@ def __str__(self): ) def get_web_object(self): - namea = self.get_related_entity_instancea().name nameb = self.get_related_entity_instanceb().name @@ -146,7 +144,6 @@ def get_all_relation_classes(cls): and relation_class.__name__ != "AbstractRelation" and relation_name != "ent_class" ): - relation_classes.append(relation_class) relation_names.append(relation_name.lower()) @@ -175,7 +172,6 @@ def get_all_relation_names(cls): """ if cls._all_relation_classes == None: - # The instantion logic of relation_names list is coupled to the instantiation logic of the relation_classes # list done in the method 'get_all_relation_classes'; hence just calling that is sufficient. cls.get_all_relation_classes() @@ -344,27 +340,22 @@ def get_related_entity_field_nameb(cls): class PersonPerson(AbstractRelation): - pass class PersonPlace(AbstractRelation): - pass class PersonInstitution(AbstractRelation): - pass class PersonEvent(AbstractRelation): - pass class PersonWork(AbstractRelation): - pass @@ -376,22 +367,18 @@ class PersonWork(AbstractRelation): class InstitutionInstitution(AbstractRelation): - pass class InstitutionPlace(AbstractRelation): - pass class InstitutionEvent(AbstractRelation): - pass class InstitutionWork(AbstractRelation): - pass @@ -403,17 +390,14 @@ class InstitutionWork(AbstractRelation): class PlacePlace(AbstractRelation): - pass class PlaceEvent(AbstractRelation): - pass class PlaceWork(AbstractRelation): - pass @@ -425,12 +409,10 @@ class PlaceWork(AbstractRelation): class EventEvent(AbstractRelation): - pass class EventWork(AbstractRelation): - pass @@ -442,5 +424,4 @@ class EventWork(AbstractRelation): class WorkWork(AbstractRelation): - pass diff --git a/apis_core/apis_relations/serializers.py b/apis_core/apis_relations/serializers.py index 243201d..beedd01 100644 --- a/apis_core/apis_relations/serializers.py +++ b/apis_core/apis_relations/serializers.py @@ -36,7 +36,6 @@ class Meta: class PersonPlaceSerializer(serializers.HyperlinkedModelSerializer): - # url = serializers.HyperlinkedIdentityField( # view_name="apis:apis_api:personplace-detail", # lookup_field="pk" diff --git a/apis_core/apis_relations/tables.py b/apis_core/apis_relations/tables.py index 463168a..e0d1a3f 100644 --- a/apis_core/apis_relations/tables.py +++ b/apis_core/apis_relations/tables.py @@ -36,7 +36,6 @@ def get_generic_relation_listview_table(relation_name): related_entity_field_name_b = relation_class.get_related_entity_field_nameb() class GenericRelationListViewTable(tables.Table): - # reuse the logic for ordering and rendering *_date_written # Important: The names of these class variables must correspond to the column field name, # e.g. for start_date_written, the methods must be named order_start_date_written and render_start_date_written @@ -63,7 +62,6 @@ class Meta: attrs = {"class": "table table-hover table-striped table-condensed"} def __init__(self, *args, **kwargs): - # LinkColumn objects provied hyperlinking to the related entities self.base_columns[related_entity_field_name_a] = tables.LinkColumn( # which url to use: @@ -192,7 +190,6 @@ def render_other_related_entity(self, record, value): ) def __init__(self, data, *args, **kwargs): - # annotations for displaying data about the 'other side' of the relation. # Both of them ('other_related_entity' and 'other_relation_type') are necessary for displaying relations # in context to what entity we are calling this from. @@ -262,7 +259,6 @@ class RelationTableDetail(RelationTableBase): """ def __init__(self, data, *args, **kwargs): - # Only addition with respect to parent class is which main url is to be used when clicking on a # related entity column. self.base_columns["other_related_entity"] = tables.LinkColumn( @@ -294,7 +290,6 @@ class Meta(RelationTableBase.Meta): sequence = tuple(fields) def __init__(self, *args, **kwargs): - # Clicking on a related entity will lead also the edit view of the related entity instance self.base_columns["other_related_entity"] = tables.LinkColumn( "apis:apis_entities:generic_entities_edit_view", @@ -326,7 +321,6 @@ def __init__(self, *args, **kwargs): class EntityUriTable(tables.Table): - delete = tables.TemplateColumn( template_name="apis_relations/delete_button_Uri_ajax_form.html" ) @@ -344,7 +338,6 @@ class Meta: class LabelTableBase(tables.Table): - label = tables.TemplateColumn(template_name="apis_relations/labels_label.html") # reuse the logic for ordering and rendering *_date_written @@ -356,7 +349,6 @@ class LabelTableBase(tables.Table): render_end_date_written = generic_render_end_date_written class Meta: - empty_text = empty_text_default model = Label diff --git a/apis_core/apis_relations/views.py b/apis_core/apis_relations/views.py index 4c72911..4318984 100644 --- a/apis_core/apis_relations/views.py +++ b/apis_core/apis_relations/views.py @@ -38,7 +38,6 @@ EventEvent, ) -# from .forms import PersonLabelForm, InstitutionLabelForm, PlaceLabelForm, EventLabelForm from .tables import LabelTableEdit form_module_list = [relation_form_module] 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 6361653..aa9603e 100644 --- a/apis_core/apis_tei/management/commands/orgs_to_tei.py +++ b/apis_core/apis_tei/management/commands/orgs_to_tei.py @@ -28,7 +28,6 @@ def add_arguments(self, parser): ) def handle(self, *args, **kwargs): - tei_doc = tei_header(title="ListOrg", ent_type="") entity_list = tei_doc.xpath("//*[local-name() = 'listOrg']")[0] 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 1a9a893..2523500 100644 --- a/apis_core/apis_tei/management/commands/persons_to_tei.py +++ b/apis_core/apis_tei/management/commands/persons_to_tei.py @@ -28,7 +28,6 @@ def add_arguments(self, parser): ) def handle(self, *args, **kwargs): - tei_doc = tei_header() listperson = tei_doc.xpath("//*[local-name() = 'listPerson']")[0] 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 74a601e..a32f99e 100644 --- a/apis_core/apis_tei/management/commands/places_to_tei.py +++ b/apis_core/apis_tei/management/commands/places_to_tei.py @@ -28,7 +28,6 @@ def add_arguments(self, parser): ) def handle(self, *args, **kwargs): - tei_doc = tei_header(title="ListPlace", ent_type="") listplace = tei_doc.xpath("//*[local-name() = 'listPlace']")[0] 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 55ebf31..3bdc0a4 100644 --- a/apis_core/apis_tei/management/commands/works_to_tei.py +++ b/apis_core/apis_tei/management/commands/works_to_tei.py @@ -28,7 +28,6 @@ def add_arguments(self, parser): ) def handle(self, *args, **kwargs): - tei_doc = tei_header(title="ListBibl", ent_type="") entity_list = tei_doc.xpath("//*[local-name() = 'listBibl']")[0] diff --git a/apis_core/apis_tei/tei.py b/apis_core/apis_tei/tei.py index f65c3f4..91d251e 100644 --- a/apis_core/apis_tei/tei.py +++ b/apis_core/apis_tei/tei.py @@ -371,7 +371,6 @@ def build_annotated_texts_objects(self): # This loop here iterates texts from self.ent_dict annotations and embeds # annotations as TEI tags for text_id, anns in annotations_by_text_id.items(): - # Get the text object from database via its ID ### (in future, this should be embedded in ent_dict to avoid further query??) text_obj = Text.objects.get(pk=text_id) @@ -443,9 +442,7 @@ def group_annotations_by_text(ent_dict): annotations_by_text = defaultdict(list) for rel_type_name, rel_type_list in ent_dict.get("relations").items(): - for rel in rel_type_list: - if rel.get("annotation"): for ann in rel.get("annotation", []): text_id = ann["text_url"].split("/")[ diff --git a/apis_core/apis_tei/tei_utils.py b/apis_core/apis_tei/tei_utils.py index 7833618..8f33130 100644 --- a/apis_core/apis_tei/tei_utils.py +++ b/apis_core/apis_tei/tei_utils.py @@ -30,10 +30,12 @@ author_rels = settings.AUTHOR_RELS except AttributeError: author_rels = False - -if author_rels: - author_rels = get_child_classes(author_rels, PersonWorkRelation, labels=False) -else: +try: + if author_rels: + author_rels = get_child_classes(author_rels, PersonWorkRelation, labels=False) + else: + author_rels = False +except Exception: author_rels = False @@ -51,7 +53,6 @@ def get_part_of_relation(res): def get_context(res): - context = {} context["object"] = res context["org_located_in"] = [] diff --git a/apis_core/apis_vis/views.py b/apis_core/apis_vis/views.py index c2f5602..408feba 100644 --- a/apis_core/apis_vis/views.py +++ b/apis_core/apis_vis/views.py @@ -153,7 +153,6 @@ def get_average_age_data(request): def get_heatmap_data(request): - rel_type = request.GET.get("rel-type") places = [ ( diff --git a/apis_core/apis_vocabularies/admin.py b/apis_core/apis_vocabularies/admin.py index 9842c17..bfa027b 100644 --- a/apis_core/apis_vocabularies/admin.py +++ b/apis_core/apis_vocabularies/admin.py @@ -68,7 +68,6 @@ class VocabsRelationAdmin(BaseAdminVocabularies): for model_name, model in app.models.items(): - if model_name.endswith("relation"): admin.site.register(model, VocabsRelationAdmin) else: diff --git a/apis_core/apis_vocabularies/api_renderers.py b/apis_core/apis_vocabularies/api_renderers.py index 36df595..18393bd 100644 --- a/apis_core/apis_vocabularies/api_renderers.py +++ b/apis_core/apis_vocabularies/api_renderers.py @@ -17,7 +17,6 @@ class VocabToSkos(renderers.BaseRenderer): - media_type = "text/rdf" def render( diff --git a/apis_core/apis_vocabularies/fixtures/vocabs.json b/apis_core/apis_vocabularies/fixtures/vocabs.json new file mode 100644 index 0000000..3cefbe3 --- /dev/null +++ b/apis_core/apis_vocabularies/fixtures/vocabs.json @@ -0,0 +1 @@ +[{"model": "apis_vocabularies.vocabnames", "pk": 1, "fields": {"name": "PlacePlaceRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 2, "fields": {"name": "PlaceType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 3, "fields": {"name": "LabelType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 4, "fields": {"name": "PersonPlaceRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 5, "fields": {"name": "ProfessionType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 6, "fields": {"name": "InstitutionPlaceRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 7, "fields": {"name": "InstitutionType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 8, "fields": {"name": "PersonWorkRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 9, "fields": {"name": "WorkType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 10, "fields": {"name": "PersonPersonRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 11, "fields": {"name": "WorkWorkRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 12, "fields": {"name": "InstitutionWorkRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 13, "fields": {"name": "PersonInstitutionRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 14, "fields": {"name": "InstitutionInstitutionRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 15, "fields": {"name": "PlaceWorkRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 16, "fields": {"name": "URI"}}, {"model": "apis_vocabularies.vocabnames", "pk": 17, "fields": {"name": "EventType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 18, "fields": {"name": "EventWorkRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 19, "fields": {"name": "PlaceEventRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 20, "fields": {"name": "CollectionType"}}, {"model": "apis_vocabularies.vocabnames", "pk": 21, "fields": {"name": "PersonEventRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 22, "fields": {"name": "Title"}}, {"model": "apis_vocabularies.vocabnames", "pk": 23, "fields": {"name": "InstitutionEventRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 25, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 26, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 27, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 28, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 29, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 30, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 31, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 32, "fields": {"name": "VocabNames object (5)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 33, "fields": {"name": "EventEventRelation"}}, {"model": "apis_vocabularies.vocabnames", "pk": 35, "fields": {"name": "Novellette"}}, {"model": "apis_vocabularies.vocabnames", "pk": 36, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 37, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 38, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 39, "fields": {"name": "VocabNames object (7)"}}, {"model": "apis_vocabularies.vocabnames", "pk": 40, "fields": {"name": "VocabNames object (9)"}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2, "fields": {"name": "Kabarett (K.KBR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3, "fields": {"name": "Konservatorium (K.KON)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 4, "fields": {"name": "Theater (K.THE)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 5, "fields": {"name": "Veranstaltungsgebäude (K.VSB)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 6, "fields": {"name": "Gallerie (K.GLR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 7, "fields": {"name": "Bierhaus (K.BIR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 8, "fields": {"name": "Museum (K.MUS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 9, "fields": {"name": "Grünanlage (K.GRN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 10, "fields": {"name": "Oper (K.OPR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 11, "fields": {"name": "Namensvariante", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 12, "fields": {"name": "Hotel (K.HTL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 13, "fields": {"name": "Teil eines Landes (A.LNDX)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 14, "fields": {"name": "Besiedelter Ort (A.BSO)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 15, "fields": {"name": "Universität (K.UNI)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 16, "fields": {"name": "Ministerium (K.MIN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 17, "fields": {"name": "Gastgewerbegebäude (K.GGW)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 18, "fields": {"name": "Teil eines besiedelten Ortes (A.BSOX)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 19, "fields": {"name": "Park (K.PRK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 20, "fields": {"name": "Kaffeehaus (K.KAF)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 21, "fields": {"name": "Platz (K.PLT)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 22, "fields": {"name": "Lokal (K.LKL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 23, "fields": {"name": "Krankenhaus (K.KKH)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 24, "fields": {"name": "Gebäude (K.GBD)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 25, "fields": {"name": "Bezirk (A.BZK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 26, "fields": {"name": "Straße (K.STR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 27, "fields": {"name": "Sanatorium (K.SAN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 28, "fields": {"name": "Berg (N.BRG)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 29, "fields": {"name": "Geschäft (K.GES)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 30, "fields": {"name": "Freizeiteinrichtung (K.FRZ)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 31, "fields": {"name": "Gebirge (N.GBR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 32, "fields": {"name": "Bahnhofsgebäude (K.BHF)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 33, "fields": {"name": "Kirche (K.KRC)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 34, "fields": {"name": "Kloster (K.KLS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 35, "fields": {"name": "Schule (K.SCH)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 36, "fields": {"name": "Wohngebäude (K.WHS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 37, "fields": {"name": "Brücke (K.BRK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 38, "fields": {"name": "Land (A.LND)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 39, "fields": {"name": "Wanderweg (K.WND)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 40, "fields": {"name": "eingemeindeter Ort (A.VOO)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 41, "fields": {"name": "Schloss (K.SLS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 42, "fields": {"name": "Beherbergungsgebäude (K.BHB)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 43, "fields": {"name": "Halbinsel (N.HIN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 44, "fields": {"name": "See (N.SEE)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 45, "fields": {"name": "Konzertsaal (K.KNZ)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 46, "fields": {"name": "Kino (K.KNO)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 47, "fields": {"name": "Region", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 48, "fields": {"name": "Sakralbau (K.SAK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 49, "fields": {"name": "Kontinent (A.KNT)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 50, "fields": {"name": "Fluss (N.FLS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 51, "fields": {"name": "Friedhof (K.FRH)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 52, "fields": {"name": "Zoo (K.ZOO)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 53, "fields": {"name": "Buchhandlung (K.BHL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 54, "fields": {"name": "Regierungsgebäude (K.RGB)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 55, "fields": {"name": "Monument (K.MON)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 56, "fields": {"name": "Vergnügungspark (K.VGN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 57, "fields": {"name": "Insel (N.INS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 58, "fields": {"name": "Bank (K.BNK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 59, "fields": {"name": "Verwaltungsgebäude (K.VWL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 60, "fields": {"name": "Landschaftlicher-Punkt", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 61, "fields": {"name": "Landschaftlicher-Punkt", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 62, "fields": {"name": "Ausflugsziel", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 63, "fields": {"name": "Redaktionsgebäude (K.RDK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 64, "fields": {"name": "Bürogebäude (K.BUR)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 65, "fields": {"name": "Meer (N.MER)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 66, "fields": {"name": "Vereinsgebäude (K.VRN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 67, "fields": {"name": "Fleischerei (K.FLS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 68, "fields": {"name": "Pass (N.PAS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 69, "fields": {"name": "Fabrik (K.FAB)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 70, "fields": {"name": "Ausbildungsstätte (K.ABS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 71, "fields": {"name": "Bucht (N.BCT)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 72, "fields": {"name": "Schwimmbad (K.BAD)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 73, "fields": {"name": "Infrastrukturgebäude (K.INF)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 74, "fields": {"name": "Teil eines Kontinents (A.KNTX)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 75, "fields": {"name": "Forschungseinrichtung (K.FRS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 76, "fields": {"name": "Bibliothek (K.BIB)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 77, "fields": {"name": "Kap (N.KAP)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 78, "fields": {"name": "Volksbildungsanstalt (K.VBA)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 81, "fields": {"name": "Markt (K.MRK)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 82, "fields": {"name": "Kunsthochschule (K.KHS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 83, "fields": {"name": "Botschaft (K.BTS)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 84, "fields": {"name": "Hafen (K.HFN)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 85, "fields": {"name": "Hotel (K.HTL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 87, "fields": {"name": "no type provided", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 88, "fields": {"name": "geboren in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 89, "fields": {"name": "gestorben in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 90, "fields": {"name": "Schriftsteller/Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 92, "fields": {"name": "Person_Geburtsname-Vorname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 93, "fields": {"name": "Person_Ehename_Nachname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 94, "fields": {"name": "Notar/Notarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 95, "fields": {"name": "Politiker/Politikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 96, "fields": {"name": "Person_Geburtsname_Nachname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 97, "fields": {"name": "Mediziner/Medizinerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 99, "fields": {"name": "Journalist/Journalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 100, "fields": {"name": "Kritiker/Kritikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 102, "fields": {"name": "Rechtswissenschaftler/Rechtswissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 103, "fields": {"name": "Theaterleiter/Theaterleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 104, "fields": {"name": "Regisseur/Regisseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 105, "fields": {"name": "Schauspieler/Schauspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 106, "fields": {"name": "Rechtsanwalt/Rechtsanwältin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 107, "fields": {"name": "Sänger/Sängerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 109, "fields": {"name": "König/Königin", "description": "", "parent_class": 327, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 110, "fields": {"name": "Maler/Malerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 111, "fields": {"name": "Veranstalter/Veranstalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 112, "fields": {"name": "Agent/Agentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 113, "fields": {"name": "Ministerialbeamter/Ministerialbeamte", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 114, "fields": {"name": "Zensor/Zensorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 115, "fields": {"name": "Dramaturg/Dramaturgin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 116, "fields": {"name": "Übersetzer/Übersetzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 117, "fields": {"name": "Chefredakteur/Chefredakteurin", "description": "", "parent_class": 173, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 119, "fields": {"name": "Herausgeber/Herausgeberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 120, "fields": {"name": "Internist/Internistin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 121, "fields": {"name": "Kardiologe/Kardiologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 124, "fields": {"name": "Person_Rufname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 126, "fields": {"name": "Oberingenieur/Oberingenieurin", "description": "", "parent_class": 458, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 127, "fields": {"name": "Theaterkritiker/Theaterkritikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 128, "fields": {"name": "Privatbeamter/Privatbeamtin", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 129, "fields": {"name": "Komponist/Komponistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 130, "fields": {"name": "Musikpädagoge/Musikpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 131, "fields": {"name": "Dirigent/Dirigentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 132, "fields": {"name": "Laryngologe/Laryngologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 134, "fields": {"name": "Historiker/Historikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 136, "fields": {"name": "Grafiker/Grafikerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 140, "fields": {"name": "Radierer/Radiererin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 142, "fields": {"name": "Theatersekretär/Theatersekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 144, "fields": {"name": "Verleger/Verlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 145, "fields": {"name": "Fotograf/Fotografin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 148, "fields": {"name": "Gesangspädagoge/Gesangspädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 149, "fields": {"name": "Person_Geschieden", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 150, "fields": {"name": "Bildhauer/Bildhauerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 151, "fields": {"name": "Baurat/Baurätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 152, "fields": {"name": "Industrieller/Industrielle", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 153, "fields": {"name": "Großgrundbesitzer/Großgrundbesitzerin", "description": "", "parent_class": 695, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 154, "fields": {"name": "Philosoph/Philosophin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 155, "fields": {"name": "Händler/Händlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 157, "fields": {"name": "Hotelier/Hotelière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 158, "fields": {"name": "Musikwissenschaftler/Musikwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 159, "fields": {"name": "Veranstaltungsorganisator/Veranstaltungsorganisatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 160, "fields": {"name": "Richter/Richterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 161, "fields": {"name": "Druckereibesitzer/Druckereibesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 162, "fields": {"name": "Privatgelehrte/Privatgelehrte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 163, "fields": {"name": "Privatier/Privatière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 164, "fields": {"name": "Ethnologe/Ethnologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 167, "fields": {"name": "Kaiser/Kaiserin", "description": "", "parent_class": 327, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 168, "fields": {"name": "Erzherzog/Erzherzogin", "description": "", "parent_class": 726, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 169, "fields": {"name": "Kronprinz/Kronprinzessin", "description": "", "parent_class": 537, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 170, "fields": {"name": "Soziologe/Soziologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 171, "fields": {"name": "Mäzen/Mäzenin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 172, "fields": {"name": "Person_Pseudonym", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 173, "fields": {"name": "Redakteur/Redakteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 174, "fields": {"name": "Sprachlehrer/Sprachlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 175, "fields": {"name": "Kaufmann/Kauffrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 176, "fields": {"name": "Konzert- und Theateragent/Konzert- und Theateragentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 178, "fields": {"name": "Ohrenarzt/Ohrenärztin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 180, "fields": {"name": "Kreismarschall/Kreismarschallin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 181, "fields": {"name": "Pianist/Pianistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 184, "fields": {"name": "Bühnenbildner/Bühnenbildnerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 185, "fields": {"name": "Architekt/Architektin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 186, "fields": {"name": "Obersthofmeister/Obersthofmeisterin", "description": "", "parent_class": 755, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 188, "fields": {"name": "Kunstschriftsteller/Kunstschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 189, "fields": {"name": "Sammler/Sammlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 190, "fields": {"name": "Tänzer/Tänzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 192, "fields": {"name": "Mimiker/Mimikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 193, "fields": {"name": "Ballettmeister/Ballettmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 194, "fields": {"name": "Choreograf/Choreografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 195, "fields": {"name": "Kulturphilosoph/Kulturphilosophin", "description": "", "parent_class": 154, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 196, "fields": {"name": "Chemiker/Chemikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 197, "fields": {"name": "Polyhistor/Polyhistorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 198, "fields": {"name": "Gutsbesitzer/Gutsbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 199, "fields": {"name": "Theateragent/Theateragentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 200, "fields": {"name": "Kunstagent/Kunstagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 201, "fields": {"name": "Musikkritiker/Musikkritikerin", "description": "", "parent_class": 100, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 202, "fields": {"name": "Konsularbeamter/Konsularbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 203, "fields": {"name": "Filmcutter/Filmcutterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 204, "fields": {"name": "Philologe/Philologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 205, "fields": {"name": "Unterrichtsminister/Unterrichtsministerin", "description": "", "parent_class": 338, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 206, "fields": {"name": "Modist/Modistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 207, "fields": {"name": "Theatermanager/Theatermanagerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 208, "fields": {"name": "Hotelbesitzer/Hotelbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 210, "fields": {"name": "Gymnasialdirektor/Gymnasialdirektorin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 211, "fields": {"name": "Kanzler/Kanzlerin", "description": "", "parent_class": 95, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 212, "fields": {"name": "Kirchenrechtler/Kirchenrechtlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 213, "fields": {"name": "Lexikograf/Lexikografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 215, "fields": {"name": "Kabarettist/Kabarettistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 216, "fields": {"name": "Patentanwalt/Patentanwältin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 223, "fields": {"name": "Urologe/Urologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 224, "fields": {"name": "Musikverleger/Musikverlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 225, "fields": {"name": "Vereinspräsident/Vereinspräsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 228, "fields": {"name": "Abenteurer/Abenteurerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 229, "fields": {"name": "Botschaftsangestellter/Botschaftsangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 231, "fields": {"name": "Anatom/Anatomin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 232, "fields": {"name": "Psychoanalytiker/Psychoanalytikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 234, "fields": {"name": "Theaterdekorateur/Theaterdekorateurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 235, "fields": {"name": "Bankangestellter/Bankangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 237, "fields": {"name": "Publizist/Publizistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 239, "fields": {"name": "Germanist/Germanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 240, "fields": {"name": "Lehrer/Lehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 241, "fields": {"name": "Zoologe/Zoologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 242, "fields": {"name": "Rezitator/Rezitatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 244, "fields": {"name": "Rassentheoretiker/Rassentheoretikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 246, "fields": {"name": "Museumsleiter/Museumsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 247, "fields": {"name": "Bibliothekar/Bibliothekarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 248, "fields": {"name": "Geistlicher/Geistliche", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 250, "fields": {"name": "Galerist/Galeristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 251, "fields": {"name": "Kunstkritiker/Kunstkritikerin", "description": "", "parent_class": 100, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 253, "fields": {"name": "Großherzog/Großherzogin", "description": "", "parent_class": 726, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 255, "fields": {"name": "Musikjournalist/Musikjournalistin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 256, "fields": {"name": "Generalintendant/Generalintendantin", "description": "", "parent_class": 280, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 259, "fields": {"name": "Theologe/Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 260, "fields": {"name": "Gymnasiallehrer/Gymnasiallehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 261, "fields": {"name": "Indologe/Indologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 263, "fields": {"name": "Geograf/Geografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 264, "fields": {"name": "Bischof/Bischöfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 266, "fields": {"name": "Archäologe/Archäologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 267, "fields": {"name": "Diplomat/Diplomatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 270, "fields": {"name": "Tanzpädagoge/Tanzpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 272, "fields": {"name": "Erfinder/Erfinderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 273, "fields": {"name": "Altphilologe/Altphilologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 274, "fields": {"name": "Literaturwissenschaftler/Literaturwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 275, "fields": {"name": "Philosophiehistoriker/Philosophiehistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 276, "fields": {"name": "Verlagsdirektor/Verlagsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 277, "fields": {"name": "Zionist/Zionistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 279, "fields": {"name": "Botaniker/Botanikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 280, "fields": {"name": "Theaterintendant/Theaterintendantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 281, "fields": {"name": "Verlagslektor/Verlagslektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 282, "fields": {"name": "Kapellmeister/Kapellmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 283, "fields": {"name": "Ordenspriester/Ordenspriesterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 284, "fields": {"name": "Jesuit/Jesuitin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 285, "fields": {"name": "Kulturförderer/Kulturfördererin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 286, "fields": {"name": "Nationalökonom/Nationalökonomin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 287, "fields": {"name": "Kaufmännischer Theaterleiter/Kaufmännische Theaterleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 290, "fields": {"name": "Büroangestellter/Büroangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 291, "fields": {"name": "Büropraktikant/Büropraktikantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 292, "fields": {"name": "Gelehrter/Gelehrte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 293, "fields": {"name": "Mathematiker/Mathematikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 294, "fields": {"name": "Pädagoge/Pädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 295, "fields": {"name": "Bühnenleiter/Bühnenleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 296, "fields": {"name": "Erzieher/Erzieherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 297, "fields": {"name": "männliche Hofdame/Hofdame", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 298, "fields": {"name": "Burschenschaftler/Burschenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 300, "fields": {"name": "Fabrikant/Fabrikantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 302, "fields": {"name": "Mystiker/Mystikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 304, "fields": {"name": "Dauphin/Dauphine", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 305, "fields": {"name": "Schuster/Schusterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 307, "fields": {"name": "Weinhändler/Weinhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 309, "fields": {"name": "Landwirt/Landwirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 310, "fields": {"name": "Angestellter/Angestellte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 311, "fields": {"name": "Ministerialrat/Ministerialrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 313, "fields": {"name": "Verlagsleiter/Verlagsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 314, "fields": {"name": "Grafologe/Grafologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 315, "fields": {"name": "Kardinal/Kardinälin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 316, "fields": {"name": "Heiliger/Heilige", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 317, "fields": {"name": "Epigrammatiker/Epigrammatikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 318, "fields": {"name": "Hochstapler/Hochstaplerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 321, "fields": {"name": "Musikarrangeur/Musikarrangeurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 322, "fields": {"name": "Kunsthändler/Kunsthändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 323, "fields": {"name": "Prediger/Predigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 324, "fields": {"name": "Ökonom/Ökonomin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 325, "fields": {"name": "Poltiker/Poltikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 326, "fields": {"name": "Linguist/Linguistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 327, "fields": {"name": "Regent/Regentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 328, "fields": {"name": "Museumsdirektor/Museumsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 329, "fields": {"name": "Priester/Priesterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 331, "fields": {"name": "Zeichner/Zeichnerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 332, "fields": {"name": "Karikaturist/Karikaturistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 333, "fields": {"name": "Verwaltungsdirektor/Verwaltungsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 334, "fields": {"name": "Frauenrechtler/Frauenrechtlerin", "description": "", "parent_class": 1425, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 335, "fields": {"name": "Alpinist/Alpinistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 336, "fields": {"name": "Kapitän/Kapitänin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 337, "fields": {"name": "Person_Adoptierter-Nachname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 338, "fields": {"name": "Minister/Ministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 339, "fields": {"name": "Betrüger/Betrügerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 340, "fields": {"name": "Kultusminister/Kultusministerin", "description": "", "parent_class": 338, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 341, "fields": {"name": "Gewerkschafter/Gewerkschafterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 343, "fields": {"name": "männliche Salonnière/Salonnière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 344, "fields": {"name": "Musiker/Musikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 345, "fields": {"name": "Keramiker/Keramikerin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 346, "fields": {"name": "Filmproduzent/Filmproduzentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 348, "fields": {"name": "Volksbildner/Volksbildnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 350, "fields": {"name": "Fürst/Fürstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 351, "fields": {"name": "Dandy/Dandy", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 352, "fields": {"name": "Autokrat/Autokratin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 353, "fields": {"name": "Forscher/Forscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 354, "fields": {"name": "Seefahrer/Seefahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 356, "fields": {"name": "Pilot/Pilotin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 358, "fields": {"name": "Orientalist/Orientalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 359, "fields": {"name": "Nationalheiliger/Nationalheilige", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 360, "fields": {"name": "Tyrann/Tyrannin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 361, "fields": {"name": "Künstler/Künstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 362, "fields": {"name": "Revolutionär/Revolutionärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 363, "fields": {"name": "Geisteswissenschaftler/Geisteswissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 364, "fields": {"name": "Chirurg/Chirurgin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 365, "fields": {"name": "Sanatoriumsleiter/Sanatoriumsleiterin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 366, "fields": {"name": "Wanderprediger/Wanderpredigerin", "description": "", "parent_class": 323, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 367, "fields": {"name": "Sekretär/Sekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 368, "fields": {"name": "Innenarchitekt/Innenarchitektin", "description": "", "parent_class": 185, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 369, "fields": {"name": "Thronprätendent/Thronprätendentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 370, "fields": {"name": "Dichter/Dichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 372, "fields": {"name": "Missionar/Missionarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 373, "fields": {"name": "Sexualforscher/Sexualforscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 374, "fields": {"name": "Theateransager/Theateransagerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 375, "fields": {"name": "Buchhändler/Buchhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 376, "fields": {"name": "Veterinärmediziner/Veterinärmedizinerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 378, "fields": {"name": "Typograf/Typografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 379, "fields": {"name": "Münzmeister/Münzmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 380, "fields": {"name": "Geschichtsschreiber/Geschichtsschreiberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 381, "fields": {"name": "Kalif/Kalifin", "description": "", "parent_class": 327, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 382, "fields": {"name": "Kurator/Kuratorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 385, "fields": {"name": "Pazifist/Pazifistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 386, "fields": {"name": "Psychiater/Psychiaterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 387, "fields": {"name": "Neurologe/Neurologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 388, "fields": {"name": "Gynäkologe/Gynäkologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 390, "fields": {"name": "Polarforscher/Polarforscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 391, "fields": {"name": "Drehbuchautor/Drehbuchautorin", "description": "", "parent_class": 1316, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 393, "fields": {"name": "Rabbiner/Rabbinerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 395, "fields": {"name": "Filmtheoretiker/Filmtheoretikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 396, "fields": {"name": "Filmschauspieler/Filmschauspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 398, "fields": {"name": "Psychologe/Psychologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 399, "fields": {"name": "Archivar/Archivarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 400, "fields": {"name": "Ornithologe/Ornithologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 401, "fields": {"name": "Theater- und Filmregisseur/Theater- und Filmregisseurin", "description": "", "parent_class": 104, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 404, "fields": {"name": "Literaturhistoriker/Literaturhistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 406, "fields": {"name": "Fiakerfahrer/Fiakerfahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 409, "fields": {"name": "Naturforscher/Naturforscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 410, "fields": {"name": "Fagottist/Fagottistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 411, "fields": {"name": "Violinist/Violinistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 413, "fields": {"name": "Cellist/Cellistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 414, "fields": {"name": "Goldschmied/Goldschmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 415, "fields": {"name": "Illustrator/Illustratorin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 416, "fields": {"name": "Romanist/Romanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 417, "fields": {"name": "Pädiater/Pädiaterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 419, "fields": {"name": "Geologe/Geologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 420, "fields": {"name": "Paläontologe/Paläontologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 421, "fields": {"name": "Flötist/Flötistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 422, "fields": {"name": "Lithograf/Lithografin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 424, "fields": {"name": "KIavierpädagoge/KIavierpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 425, "fields": {"name": "Flugtechniker/Flugtechnikerin", "description": "", "parent_class": 429, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 426, "fields": {"name": "Dermatologe/Dermatologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 428, "fields": {"name": "Orthopäde/Orthopädin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 429, "fields": {"name": "Techniker/Technikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 430, "fields": {"name": "Dolmetscher/Dolmetscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 431, "fields": {"name": "Direktor/Direktorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 433, "fields": {"name": "Schauspiellehrer/Schauspiellehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 434, "fields": {"name": "Pharmakologe/Pharmakologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 436, "fields": {"name": "Physiker/Physikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 437, "fields": {"name": "Amtsleiter/Amtsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 438, "fields": {"name": "Anthropologe/Anthropologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 440, "fields": {"name": "Kunstsammler/Kunstsammlerin", "description": "", "parent_class": 189, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 441, "fields": {"name": "Sexualwissenschaftler/Sexualwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 442, "fields": {"name": "Kupferstecher/Kupferstecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 443, "fields": {"name": "Kunstgewerbler/Kunstgewerblerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 445, "fields": {"name": "Psychotherapeut/Psychotherapeutin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 446, "fields": {"name": "Theatermaler/Theatermalerin", "description": "", "parent_class": 110, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 447, "fields": {"name": "Ballettchef/Ballettchefin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 448, "fields": {"name": "Biologe/Biologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 449, "fields": {"name": "Bratschist/Bratschistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 450, "fields": {"name": "Hygieniker/Hygienikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 451, "fields": {"name": "Zahnarzt/Zahnärztin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 453, "fields": {"name": "Bakteriologe/Bakteriologin", "description": "", "parent_class": 448, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 454, "fields": {"name": "Kameramann/Kamerafrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 457, "fields": {"name": "Korrepetitor/Korrepetitorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 458, "fields": {"name": "Ingenieur/Ingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 460, "fields": {"name": "Dokumentarfilmer/Dokumentarfilmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 461, "fields": {"name": "Souffleur/Souffleuse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 463, "fields": {"name": "Mineraloge/Mineralogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 464, "fields": {"name": "Klavierpädagoge/Klavierpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 465, "fields": {"name": "Bankdirektor/Bankdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 467, "fields": {"name": "Artist/Artistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 468, "fields": {"name": "Zirkusdirektor/Zirkusdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 469, "fields": {"name": "Zeitungseigentümer/Zeitungseigentümerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 472, "fields": {"name": "Generaldirektor/Generaldirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 473, "fields": {"name": "Marinebeamter/Marinebeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 474, "fields": {"name": "Kulturfunktionär/Kulturfunktionärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 477, "fields": {"name": "Administrator/Administratorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 478, "fields": {"name": "Immunologe/Immunologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 479, "fields": {"name": "Versicherungsangestellte/Versicherungsangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 481, "fields": {"name": "Vortragslehrer/Vortragslehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 482, "fields": {"name": "Organist/Organistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 484, "fields": {"name": "Puppenkünstler/Puppenkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 485, "fields": {"name": "Admiral/Admiralin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 486, "fields": {"name": "Militärarzt/Militärärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 487, "fields": {"name": "Gerichtspräsident/Gerichtspräsidentin", "description": "", "parent_class": 160, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 488, "fields": {"name": "Religionslehrer/Religionslehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 489, "fields": {"name": "Kostümbildner/Kostümbildnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 491, "fields": {"name": "Kanzleidirektor/Kanzleidirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 492, "fields": {"name": "Schulleiter/Schulleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 493, "fields": {"name": "Oboist/Oboistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 495, "fields": {"name": "Aviatiker/Aviatikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 496, "fields": {"name": "Aquarellist/Aquarellistin", "description": "", "parent_class": 1404, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 502, "fields": {"name": "Person_Verwitwet", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 503, "fields": {"name": "Apotheker/Apothekerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 504, "fields": {"name": "Zensurbeirat/Zensurbeirätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 505, "fields": {"name": "Bibliotheksleiter/Bibliotheksleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 506, "fields": {"name": "Volkskundler/Volkskundlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 511, "fields": {"name": "Reformator/Reformatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 512, "fields": {"name": "Astronom/Astronomin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 513, "fields": {"name": "Pfarrer/Pfarrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 514, "fields": {"name": "Kompositionslehrer/Kompositionslehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 515, "fields": {"name": "Prälat/Prälatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 522, "fields": {"name": "Juwelier/Juwelierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 523, "fields": {"name": "Akrobat/Akrobatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 524, "fields": {"name": "Installateur/Installateurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 525, "fields": {"name": "Elektriker/Elektrikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 527, "fields": {"name": "/Soubrette", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 528, "fields": {"name": "Schuhmacher/Schuhmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 530, "fields": {"name": "Diener/Dienerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 531, "fields": {"name": "Autoverleiher/Autoverleiherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 532, "fields": {"name": "Sprechlehrer/Sprechlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 533, "fields": {"name": "Literaturagent/Literaturagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 535, "fields": {"name": "Bauunternehmer/Bauunternehmerin", "description": "", "parent_class": 913, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 536, "fields": {"name": "Musikdirektor/Musikdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 537, "fields": {"name": "Prinz/Prinzessin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 538, "fields": {"name": "Wirtschafter/Wirtschafterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 540, "fields": {"name": "Börsenmakler/Börsenmaklerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 541, "fields": {"name": "Krankenpfleger/Krankenpflegerin", "description": "", "parent_class": 1584, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 542, "fields": {"name": "Rentier/Rentierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 544, "fields": {"name": "Bahnbeamter/Bahnbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 547, "fields": {"name": "Vizepräsident/Vizepräsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 550, "fields": {"name": "Filmagent/Filmagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 551, "fields": {"name": "Papst/Päpstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 552, "fields": {"name": "Nervenpathologe/Nervenpathologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 553, "fields": {"name": "Antiquitätenhändler/Antiquitätenhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 554, "fields": {"name": "Grubenbesitzer/Grubenbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 556, "fields": {"name": "Zauberkünstler/Zauberkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 559, "fields": {"name": "Staatskanzler/Staatskanzlerin", "description": "", "parent_class": 95, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 560, "fields": {"name": "Direktionssekretär/Direktionssekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 561, "fields": {"name": "Realitätenagent/Realitätenagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 562, "fields": {"name": "Typist/Typistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 564, "fields": {"name": "männliche Hebamme/Hebamme", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 565, "fields": {"name": "Theaterverleger/Theaterverlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 567, "fields": {"name": "Versicherungsdirektor/Versicherungsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 568, "fields": {"name": "Klavierlehrer/Klavierlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 570, "fields": {"name": "Matrikelführer/Matrikelführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 572, "fields": {"name": "Heilgymnast/Heilgymnastin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 574, "fields": {"name": "Heerführer/Heerführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 575, "fields": {"name": "Statthalterei-Sekretär/Statthalterei-Sekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 576, "fields": {"name": "Oberrabbiner/Oberrabbinerin", "description": "", "parent_class": 393, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 577, "fields": {"name": "Postbeamter/Postbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 578, "fields": {"name": "Kunstpädagoge/Kunstpädagogin", "description": "", "parent_class": 294, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 580, "fields": {"name": "Holzschneider/Holzschneiderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 581, "fields": {"name": "Chordirektor/Chordirektorin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 582, "fields": {"name": "Illusionist/Illusionistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 583, "fields": {"name": "Feldscher/Feldscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 584, "fields": {"name": "Schmied/Schmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 585, "fields": {"name": "Theaterunternehmer/Theaterunternehmerin", "description": "", "parent_class": 913, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 586, "fields": {"name": "Küchenchef/Küchenchefin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 587, "fields": {"name": "Konditor/Konditorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 588, "fields": {"name": "Konzertveranstalter/Konzertveranstalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 589, "fields": {"name": "Bühnenmeister/Bühnenmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 590, "fields": {"name": "Schneider/Schneiderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 591, "fields": {"name": "Masseur/Masseuse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 592, "fields": {"name": "Komparse/Komparsin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 593, "fields": {"name": "Kassier/Kassierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 595, "fields": {"name": "Tanzschulbesitzer/Tanzschulbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 596, "fields": {"name": "Bibliograf/Bibliografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 597, "fields": {"name": "Friseur/Friseuse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 600, "fields": {"name": "Zeitungsverleger/Zeitungsverlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 601, "fields": {"name": "Kunsterzieher/Kunsterzieherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 602, "fields": {"name": "Tanzlehrer/Tanzlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 604, "fields": {"name": "Hausangestellter/Hausangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 605, "fields": {"name": "Tischler/Tischlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 607, "fields": {"name": "Rabbinatssubstitut/Rabbinatssubstitutin", "description": "", "parent_class": 393, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 608, "fields": {"name": "Anglist/Anglistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 609, "fields": {"name": "Röntgenologe/Röntgenologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 610, "fields": {"name": "Handelsangestellter/Handelsangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 611, "fields": {"name": "Modeschöpfer/Modeschöpferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 612, "fields": {"name": "Lautenspieler/Lautenspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 615, "fields": {"name": "Musikagent/Musikagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 616, "fields": {"name": "Thronfolger/Thronfolgerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 617, "fields": {"name": "Clown/Clownin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 618, "fields": {"name": "Verwandlungskünstler/Verwandlungskünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 619, "fields": {"name": "Militär/Militärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 623, "fields": {"name": "Firmeninhaber/Firmeninhaberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 624, "fields": {"name": "Optiker/Optikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 627, "fields": {"name": "Baumeister/Baumeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 628, "fields": {"name": "Schätzmeister/Schätzmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 629, "fields": {"name": "Reichstagssekretär/Reichstagssekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 632, "fields": {"name": "Tennistrainer/Tennistrainerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 633, "fields": {"name": "Aeronaut/Aeronaut", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 635, "fields": {"name": "Börsensensal/Börsensensalin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 636, "fields": {"name": "Räuberhauptmann/Räuberhauptfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 638, "fields": {"name": "Textilkaufmann/Textilkauffrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 640, "fields": {"name": "Physiotherapeut/Physiotherapeutin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 641, "fields": {"name": "Konzertagent/Konzertagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 642, "fields": {"name": "Stenotypistin/Stenotypistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 643, "fields": {"name": "Tierhändler/Tierhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 644, "fields": {"name": "Handelsagent/Handelsagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 645, "fields": {"name": "Polizeibeamter/Polizeibeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 646, "fields": {"name": "Delikatessenhändler/Delikatessenhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 647, "fields": {"name": "Handelsakademielehrer/Handelsakademielehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 648, "fields": {"name": "Rechnungsprüfer/Rechnungsprüferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 649, "fields": {"name": "Pressebeirat/Pressebeirätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 650, "fields": {"name": "Slawist/Slawistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 651, "fields": {"name": "Student/Studentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 654, "fields": {"name": "Hypnotiseur/Hypnotiseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 655, "fields": {"name": "Fechtmeister/Fechtmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 656, "fields": {"name": "Haushaltshilfe/Haushaltshilfe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 657, "fields": {"name": "Taxi-Unternehmer/Taxi-Unternehmerin", "description": "", "parent_class": 913, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 658, "fields": {"name": "Gärtner/Gärtnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 659, "fields": {"name": "Finanzbeamter/Finanzbeamte", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 666, "fields": {"name": "Cafétier/Cafétière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 667, "fields": {"name": "Tapezierer/Tapeziererin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 669, "fields": {"name": "Verwaltungssekretär/Verwaltungssekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 670, "fields": {"name": "Restaurateur/Restaurateurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 671, "fields": {"name": "Buchmacher/Buchmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 673, "fields": {"name": "Hofbeamter/Hofbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 674, "fields": {"name": "Kinderbetreuer/Kinderbetreuerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 676, "fields": {"name": "Ordensgründer/Ordensgründerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 677, "fields": {"name": "Restaurator/Restauratorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 678, "fields": {"name": "Kunsttischler/Kunsttischlerin", "description": "", "parent_class": 605, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 679, "fields": {"name": "Raubmörder/Raubmörderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 681, "fields": {"name": "Geometer/Geometerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 683, "fields": {"name": "Verlagsagent/Verlagsagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 684, "fields": {"name": "Bühnenverleger/Bühnenverlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 685, "fields": {"name": "männliche Hausdame/Hausdame", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 686, "fields": {"name": "Korrespondent/Korrespondentin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 687, "fields": {"name": "Zar/Zarin", "description": "", "parent_class": 327, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 688, "fields": {"name": "Gastwirt/Gastwirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 689, "fields": {"name": "Medailleur/Medailleurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 692, "fields": {"name": "Fuhrunternehmer/Fuhrunternehmerin", "description": "", "parent_class": 913, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 693, "fields": {"name": "Balneologe/Balneologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 695, "fields": {"name": "Grundbesitzer/Grundbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 696, "fields": {"name": "Kartograf/Kartografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 698, "fields": {"name": "Inhaber einer Konzertagentur/Inhaberin einer Konzertagentur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 700, "fields": {"name": "Bezirksarzt/Bezirksärztin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 701, "fields": {"name": "Auditor/Auditorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 702, "fields": {"name": "Pensionsinhaber/Pensionsinhaberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 704, "fields": {"name": "Inhaber eines Friseur- und Maniküre-Salons/Inhaberin eines Friseur- und\n Maniküre-Salons", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 706, "fields": {"name": "Garderobier/Garderobière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 708, "fields": {"name": "Internatsleiter/Internatsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 709, "fields": {"name": "Schriftsetzer/Schriftsetzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 710, "fields": {"name": "Gymnastiklehrer/Gymnastiklehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 711, "fields": {"name": "Leiter eines Schreibbüros/Leiterin eines Schreibbüros", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 712, "fields": {"name": "Versicherungsbeamter/Versicherungsbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 713, "fields": {"name": "Verlagsangestellte/Verlagsangestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 715, "fields": {"name": "Theaterdirektor/Theaterdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 716, "fields": {"name": "Syndikus/Syndika", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 717, "fields": {"name": "Glasfabrikant/Glasfabrikantin", "description": "", "parent_class": 300, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 719, "fields": {"name": "Näher/Näherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 721, "fields": {"name": "Gemeinderat/Gemeinderätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 722, "fields": {"name": "Doktor/Doktorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 723, "fields": {"name": "Textilindustrieller/Textilindustrielle", "description": "", "parent_class": 152, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 725, "fields": {"name": "Handelsberater/Handelsberaterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 726, "fields": {"name": "Herzog/Herzogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 727, "fields": {"name": "Dramatiker/Dramatikerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 728, "fields": {"name": "Kurfürst/Kurfürstin", "description": "", "parent_class": 350, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 732, "fields": {"name": "Verwalter/Verwalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 733, "fields": {"name": "Koch/Köchin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 734, "fields": {"name": "Theaterproduzent/Theaterproduzentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 735, "fields": {"name": "Gesangskomiker/Gesangskomikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 737, "fields": {"name": "Militärrichter/Militärrichterin", "description": "", "parent_class": 160, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 739, "fields": {"name": "Serologe/Serologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 740, "fields": {"name": "Bauinspektor/Bauinspektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 743, "fields": {"name": "Chiromant/Chiromantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 744, "fields": {"name": "Kostümschneider/Kostümschneiderin", "description": "", "parent_class": 590, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 745, "fields": {"name": "Garderobenleiter/Garderobenleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 746, "fields": {"name": "Kontorist/Kontoristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 748, "fields": {"name": "Elektroinstallateur/Elektroinstallateur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 749, "fields": {"name": "Radiodirektor/Radiodirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 750, "fields": {"name": "Zimmermeister/Zimmermeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 752, "fields": {"name": "Pastor/Pastorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 753, "fields": {"name": "Oberkantor/Oberkantorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 755, "fields": {"name": "Hofmeister/Hofmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 756, "fields": {"name": "Regiekanzleiführer/Regiekanzleiführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 757, "fields": {"name": "Justizbeamter/Justizbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 760, "fields": {"name": "Regieassistent/Regieassistentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 761, "fields": {"name": "Hausschneider/Hausschneiderin", "description": "", "parent_class": 590, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 762, "fields": {"name": "Leitender Beamter/Leitende Beamte", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 763, "fields": {"name": "Hotelsekretär/Hotelsekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 764, "fields": {"name": "Gerichtsmediziner/Gerichtsmedizinerin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 765, "fields": {"name": "Forstverwalter/Forstverwalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 766, "fields": {"name": "Pfarrerinsmann/Pfarrersfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 767, "fields": {"name": "Professor/Professorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 768, "fields": {"name": "Hofmusikdirektor/Hofmusikdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 770, "fields": {"name": "Konservatoriumsleiter/Konservatoriumsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 771, "fields": {"name": "Hotelportier/Hotelportierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 775, "fields": {"name": "Privatlehrer/Privatlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 776, "fields": {"name": "Luftfahrtpionier/Luftfahrtpionierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 779, "fields": {"name": "Sportjournalist/Sportjournalistin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 780, "fields": {"name": "Angehöriger des Domkapitels/Angehörige des Domkapitels", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 782, "fields": {"name": "Fabriksdirektor/Fabriksdirektorin", "description": "", "parent_class": 300, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 783, "fields": {"name": "Geschäftsführer/Geschäftsführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 785, "fields": {"name": "Vereinsdirektor/Vereinsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 786, "fields": {"name": "Vermieter/Vermieterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 787, "fields": {"name": "Buchhalter/Buchhalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 788, "fields": {"name": "Hoteldirektor/Hoteldirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 791, "fields": {"name": "Inspizient/Inspizientin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 793, "fields": {"name": "Reinigungskraft/Reinigungskraft", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 795, "fields": {"name": "Prokurist/Prokuristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 796, "fields": {"name": "Gastroenterologe/Gastroenterologin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 797, "fields": {"name": "Handpfleger/Handpflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 798, "fields": {"name": "Freiheitskämpfer/Freiheitskämpferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 799, "fields": {"name": "Kofferhersteller/Kofferherstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 800, "fields": {"name": "Güterverwalter/Güterverwalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 801, "fields": {"name": "Chauffeur/Chauffeurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 803, "fields": {"name": "Hornist/Hornistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 805, "fields": {"name": "Ladenbesitzer/Ladenbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 806, "fields": {"name": "Hungerkünstler/Hungerkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 807, "fields": {"name": "Magistratsbeamter/Magistratsbeamte", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 811, "fields": {"name": "Magnetiseur/Magnetiseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 812, "fields": {"name": "Vereinsvorstand/Vereinsvorständin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 813, "fields": {"name": "Restaurantbesitzer/Restaurantbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 814, "fields": {"name": "Verlagsinhaber/Verlagsinhaberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 816, "fields": {"name": "Staatsanwalt/Staatsanwältin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 817, "fields": {"name": "Kinofotograf/Kinofotografin", "description": "", "parent_class": 145, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 818, "fields": {"name": "Paukist/Paukistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 819, "fields": {"name": "Klavierfabrikant/Klavierfabrikantin", "description": "", "parent_class": 300, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 820, "fields": {"name": "Garagenbesitzer/Garagenbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 821, "fields": {"name": "Byzantinist/Byzantinistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 824, "fields": {"name": "Markgraf/Markgräfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 826, "fields": {"name": "Magier/Magierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 830, "fields": {"name": "Pensionatsleiter/Pensionatsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 831, "fields": {"name": "Briefträger/Briefträgerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 833, "fields": {"name": "Regimentsarzt/Regimentsärztin", "description": "", "parent_class": 97, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 834, "fields": {"name": "Liebespartner/Liebespartnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 836, "fields": {"name": "Hausmeister/Hausmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 838, "fields": {"name": "Schreiber/Schreiberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 842, "fields": {"name": "Schwede/Schwedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 844, "fields": {"name": "Oberlehrer/Oberlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 845, "fields": {"name": "Italiener/Italienerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 854, "fields": {"name": "Kleiderverkäufer/Kleiderverkäuferin", "description": "", "parent_class": 944, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 862, "fields": {"name": "Gemeindediener/Gemeindedienerin", "description": "", "parent_class": 919, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 863, "fields": {"name": "Autografensammler/Autografensammlerin", "description": "", "parent_class": 189, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 864, "fields": {"name": "Bittsteller/Bittstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 866, "fields": {"name": "Bäcker/Bäckerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 867, "fields": {"name": "Portier/Portierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 873, "fields": {"name": "Präsident/Präsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 875, "fields": {"name": "Verlobter/Verlobte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 879, "fields": {"name": "Reporter/Reporterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 885, "fields": {"name": "Botschaftsmitarbeiter/Botschaftsmitarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 896, "fields": {"name": "Schuldirektor/Schuldirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 903, "fields": {"name": "Russe/Russin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 905, "fields": {"name": "Kabinenvermieter/Kabinenvermieterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 906, "fields": {"name": "Prostituierter/Prostituierte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 907, "fields": {"name": "Steuerbeamter/Steuerbeamtin", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 909, "fields": {"name": "Anarchist/Anarchistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 911, "fields": {"name": "Buchdrucker/Buchdruckerin", "description": "", "parent_class": 1506, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 913, "fields": {"name": "Unternehmer/Unternehmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 917, "fields": {"name": "Mönch/Nonne", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 918, "fields": {"name": "Englischlehrer/Englischlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 919, "fields": {"name": "Dienstbote/Dienstbotin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 920, "fields": {"name": "Bühnentechniker/Bühnentechnikerin", "description": "", "parent_class": 429, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 921, "fields": {"name": "Polizeiinspektor/Polizeiinspektorin", "description": "", "parent_class": 645, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 922, "fields": {"name": "Rahmenmacher/Rahmenmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 923, "fields": {"name": "Realitätensensal/Realitätensensalin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 926, "fields": {"name": "Dalai Lama/Dalai Lama", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 929, "fields": {"name": "Infant/Infantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 931, "fields": {"name": "Bahninspektor/Bahninspektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 932, "fields": {"name": "Claqueur/Claqueuse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 935, "fields": {"name": "Anthroposoph/Anthroposophin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 936, "fields": {"name": "Importkaufmann/Importkauffrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 938, "fields": {"name": "Finanzier/Finanzierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 939, "fields": {"name": "Haushälter/Haushälterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 940, "fields": {"name": "Gesellschafter/Gesellschafterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 941, "fields": {"name": "Kuppler/Kupplerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 943, "fields": {"name": "Oberkassier/Oberkassierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 944, "fields": {"name": "Verkäufer/Verkäuferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 945, "fields": {"name": "Humorist/Humoristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 946, "fields": {"name": "Großkaufmann/Großkauffrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 949, "fields": {"name": "Erzbischof/Erzbischöfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 950, "fields": {"name": "Liebhaber/Liebhaberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 952, "fields": {"name": "Spediteur/Spediteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 953, "fields": {"name": "Commandante/Commandantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 958, "fields": {"name": "Buddha/Tara", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 959, "fields": {"name": "Wissenschaftler/Wissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 961, "fields": {"name": "Schausteller/Schaustellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 962, "fields": {"name": "Hotelierssohn/Hotelierstochter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 963, "fields": {"name": "Telegrafenbeamter/Telegrafenbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 964, "fields": {"name": "Medizinstudent/Medizinstudentin", "description": "", "parent_class": 651, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 967, "fields": {"name": "Importhändler/Importhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 968, "fields": {"name": "Möbelfabrikant/Möbelfabrikantin", "description": "", "parent_class": 300, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 969, "fields": {"name": "Kellner/Kellnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 970, "fields": {"name": "angesiedelt in", "description": "", "parent_class": null, "status": "can", "vocab_name": 6}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 971, "fields": {"name": "enthält", "description": "", "parent_class": null, "status": "can", "vocab_name": 1}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 972, "fields": {"name": "Tageszeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 973, "fields": {"name": "Zeitschriftenredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 974, "fields": {"name": "Verein", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 975, "fields": {"name": "Verlag", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 976, "fields": {"name": "Glaubensverein", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 977, "fields": {"name": "Bank", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 978, "fields": {"name": "Wohltätigkeitsverein", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 979, "fields": {"name": "Eisenbahnunternehmen", "description": "", "parent_class": 3458, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 980, "fields": {"name": "Orden", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 981, "fields": {"name": "Kartenbüro", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 982, "fields": {"name": "Bildungseinrichtung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 983, "fields": {"name": "Künstlervereinigung", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 984, "fields": {"name": "Amt", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 985, "fields": {"name": "Theatergruppe", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 986, "fields": {"name": "Bankhaus", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 987, "fields": {"name": "Auszeichnung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 988, "fields": {"name": "Militärmusikkapelle", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 989, "fields": {"name": "Wohltätigkeitsveranstaltung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 990, "fields": {"name": "Geschäft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 991, "fields": {"name": "Theatertruppe", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 992, "fields": {"name": "Antiquariat", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 993, "fields": {"name": "Literaturpreis", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 994, "fields": {"name": "Filmproduktionsfirma", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 995, "fields": {"name": "Theaterverein", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 996, "fields": {"name": "Theaterpreis", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 997, "fields": {"name": "Literarische Vereinigung", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 998, "fields": {"name": "Wochenzeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 999, "fields": {"name": "Interessensvertretung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1000, "fields": {"name": "Verlagskonzern", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1001, "fields": {"name": "Akademie der Wissenschaften", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1002, "fields": {"name": "Ordensgemeinschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1003, "fields": {"name": "Burschenschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1004, "fields": {"name": "Veranstaltung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1005, "fields": {"name": "Wochenzeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1006, "fields": {"name": "Archiv", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1007, "fields": {"name": "Bibliothek", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1008, "fields": {"name": "Halbmonatszeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1009, "fields": {"name": "Museum", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1010, "fields": {"name": "Redaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1011, "fields": {"name": "Orchester", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1012, "fields": {"name": "Theater", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1013, "fields": {"name": "Musikalienverlag", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1014, "fields": {"name": "Kleidergeschäft", "description": "", "parent_class": 990, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1015, "fields": {"name": "Autorenverband", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1016, "fields": {"name": "Fotoatelier", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1017, "fields": {"name": "Schriftstellerverein", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1018, "fields": {"name": "Rundfunkgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1019, "fields": {"name": "Feuilletonkorrespondenz", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1020, "fields": {"name": "Buchhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1021, "fields": {"name": "Juwelier", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1022, "fields": {"name": "Politische Vereinigung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1023, "fields": {"name": "Rassistische Vereinigung", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1024, "fields": {"name": "Studierenvereinigung", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1025, "fields": {"name": "Völkerrechtsverträge", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1026, "fields": {"name": "Verlag für Ansichtskarten", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1027, "fields": {"name": "Vereinigung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1028, "fields": {"name": "Isländische Volksvertretung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1029, "fields": {"name": "Nationalbibliothek", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1030, "fields": {"name": "Nachlassarchiv", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1031, "fields": {"name": "Gelehrtenvereinigung", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1032, "fields": {"name": "Universität", "description": "", "parent_class": 1420, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1033, "fields": {"name": "Brauerei", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1034, "fields": {"name": "Verlag und Bühnenvertrieb", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1035, "fields": {"name": "Buchgemeinschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1036, "fields": {"name": "Druckerei", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1037, "fields": {"name": "Gericht", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1038, "fields": {"name": "Verein für Kunstpflege", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1039, "fields": {"name": "Zeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1040, "fields": {"name": "Akademie der Künste", "description": "", "parent_class": 1420, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1041, "fields": {"name": "Schifffahrtsgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1042, "fields": {"name": "Kabarett", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1043, "fields": {"name": "Radfahrerklub", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1044, "fields": {"name": "Tischgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1045, "fields": {"name": "Zeitungsausschnittsagentur", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1046, "fields": {"name": "Auktionshaus", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1047, "fields": {"name": "Theaterunternehmen", "description": "", "parent_class": 3458, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1048, "fields": {"name": "steht in Bezug zu", "description": "Allgemeine Beziehung zwischen Person und Werk", "parent_class": null, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1049, "fields": {"name": "hat geschaffen", "description": "Werk ist erschaffen von", "parent_class": 1048, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1050, "fields": {"name": "hat anonym veröffentlicht", "description": "Werk ist anonym erschienen", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1051, "fields": {"name": "hat unter Pseudonym geschrieben", "description": "Werk ist unter einem Kürzel oder anderen Namen des Autors erschienen", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1052, "fields": {"name": "hat übersetzt", "description": "Werk ist von diesem nicht geschrieben, sondern der ist der Übersetzer", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1053, "fields": {"name": "hat herausgegeben", "description": "Werk ist von diesem nicht geschrieben, sondern der ist der Herausgeber oder die Herausgeberin", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1054, "fields": {"name": "Erzählung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1055, "fields": {"name": "Text", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1056, "fields": {"name": "Mehraktiges Drama", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1057, "fields": {"name": "Einakter", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1058, "fields": {"name": "Einakterzyklus", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1059, "fields": {"name": "Oper", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1060, "fields": {"name": "Roman", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1062, "fields": {"name": "Relief", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1063, "fields": {"name": "Radierung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1064, "fields": {"name": "Typologische Studie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1065, "fields": {"name": "Aphorismensammlung", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1066, "fields": {"name": "Film", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1067, "fields": {"name": "Gedicht", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1068, "fields": {"name": "Tanzpantomime", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1069, "fields": {"name": "Übertragung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1070, "fields": {"name": "Operette", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1071, "fields": {"name": "Bleistiftskizze", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1072, "fields": {"name": "Musikstück", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1073, "fields": {"name": "Fotografie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1074, "fields": {"name": "Foto", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1075, "fields": {"name": "Gattungsunspezifisch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1076, "fields": {"name": "Tondichtung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1077, "fields": {"name": "Ballett", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1078, "fields": {"name": "Pantomime", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1079, "fields": {"name": "Lied", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1080, "fields": {"name": "Gemälde", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1081, "fields": {"name": "Lieder", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1082, "fields": {"name": "Suite", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1083, "fields": {"name": "Umfrageteilnahme", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1084, "fields": {"name": "Porträt", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1085, "fields": {"name": "Gedichte", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1086, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1087, "fields": {"name": "Lithografie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1089, "fields": {"name": "Studie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1091, "fields": {"name": "Zeichnung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1092, "fields": {"name": "Keramik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1093, "fields": {"name": "Büste", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1094, "fields": {"name": "Keramikstatuette", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1095, "fields": {"name": "Leserbrief", "description": "", "parent_class": 1835, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1096, "fields": {"name": "Ballade", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1097, "fields": {"name": "Drama", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1098, "fields": {"name": "Novellensammlung", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1099, "fields": {"name": "Autobiografie", "description": "", "parent_class": 1156, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1100, "fields": {"name": "Filmskript", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1101, "fields": {"name": "Legacy name (merge)", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1103, "fields": {"name": "http://www.geonames.org/ontology#P.PPLC", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1104, "fields": {"name": "alternative name", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1105, "fields": {"name": "http://www.geonames.org/ontology#A.ADM4", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1106, "fields": {"name": "gehört zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 1}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1107, "fields": {"name": "http://www.geonames.org/ontology#A.PCLI", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1108, "fields": {"name": "http://www.geonames.org/ontology#P.PPLA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1109, "fields": {"name": "ist Elternteil von", "description": "Diese Person ist Vater oder Mutter von", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1110, "fields": {"name": "ist verwandt zu", "description": "", "parent_class": 1176, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1111, "fields": {"name": "ist Onkel/Tante von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1112, "fields": {"name": "ist Cousin/Cousine von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1113, "fields": {"name": "ist adoptiertes Elternteil von", "description": "", "parent_class": 1109, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1114, "fields": {"name": "in intimer Beziehung zu", "description": "", "parent_class": 1176, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1115, "fields": {"name": "ist verheiratet mit", "description": "", "parent_class": 1114, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1116, "fields": {"name": "ist Geschwister von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1117, "fields": {"name": "ist Großelternteil von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1118, "fields": {"name": "ist verschwägert mit", "description": "ist Schwager/Schwägerin von", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1120, "fields": {"name": "ist Kind von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1121, "fields": {"name": "ist Enkel von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1122, "fields": {"name": "ist adoptiertes Kind von", "description": "", "parent_class": 1110, "status": "ac", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1123, "fields": {"name": "http://www.geonames.org/ontology#P.PPL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1124, "fields": {"name": "http://www.geonames.org/ontology#A.ADM3", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1126, "fields": {"name": "legacy name", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1127, "fields": {"name": "Ausstellung", "description": "", "parent_class": null, "status": "ac", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1128, "fields": {"name": "http://www.geonames.org/ontology#P.PPLA3", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1129, "fields": {"name": "Gedichtsammlung", "description": "", "parent_class": 1208, "status": "ac", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1130, "fields": {"name": "Briefausgabe", "description": "", "parent_class": 1791, "status": "ac", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1131, "fields": {"name": "Rezension", "description": "Besprechung", "parent_class": null, "status": "ac", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1132, "fields": {"name": "ist eine Rezension von", "description": "", "parent_class": null, "status": "ac", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1133, "fields": {"name": "ist eine Bearbeitung von", "description": "", "parent_class": null, "status": "ac", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1134, "fields": {"name": "http://www.geonames.org/ontology#P.PPLA2", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1135, "fields": {"name": "http://www.geonames.org/ontology#A.ADM2", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1136, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "vocab_name": 1}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1137, "fields": {"name": "http://www.geonames.org/ontology#A.ADM1", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1138, "fields": {"name": "enthalten in", "description": "", "parent_class": null, "status": "can", "vocab_name": 12}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1139, "fields": {"name": "enthält", "description": "", "parent_class": null, "status": "can", "vocab_name": 12}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1140, "fields": {"name": "arbeitet in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1141, "fields": {"name": "angesiedelt in", "description": "", "parent_class": null, "status": "can", "vocab_name": 6}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1142, "fields": {"name": "Fachliteratur", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1143, "fields": {"name": "in Beziehung zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 12}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1144, "fields": {"name": "hat ein Vorwort/Nachwort verfasst zu", "description": "", "parent_class": 1224, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1146, "fields": {"name": "Werk_unter-diesem-Namen-oder-Kürzel-veröffentlicht", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1147, "fields": {"name": "geboren in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1148, "fields": {"name": "gestorben in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1149, "fields": {"name": "Schwank", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1150, "fields": {"name": "ist Eigentümer/Eigentümerin von", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1152, "fields": {"name": "http://www.geonames.org/ontology#T.VAL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1153, "fields": {"name": "in Bezug zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 13}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1154, "fields": {"name": "Aufsatz", "description": "", "parent_class": 1155, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1155, "fields": {"name": "Epik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1156, "fields": {"name": "Biografie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1157, "fields": {"name": "Werkausgabe", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1158, "fields": {"name": "aufgegangen in", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1159, "fields": {"name": "Vorgänger war", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1160, "fields": {"name": "located in", "description": "", "parent_class": null, "status": "can", "vocab_name": 6}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1161, "fields": {"name": "enthalten in", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1162, "fields": {"name": "enthält", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1163, "fields": {"name": "Hochschulschrift", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1164, "fields": {"name": "Reisebericht", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1165, "fields": {"name": "in Bezug zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1168, "fields": {"name": "Singspiel", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1169, "fields": {"name": "ist geschieden von", "description": "", "parent_class": 1115, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1170, "fields": {"name": "ist durch Tod getrennt von", "description": "", "parent_class": 1115, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1171, "fields": {"name": "hinterlässt durch Tod", "description": "", "parent_class": 1115, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1172, "fields": {"name": "Bordellbetreiber/Bordellbetreiberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1173, "fields": {"name": "ist Stiefkind von", "description": "", "parent_class": 1120, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1174, "fields": {"name": "ist Stiefelternteil von", "description": "", "parent_class": 1109, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1175, "fields": {"name": "ist Neffe/Nichte von", "description": "", "parent_class": 1110, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1176, "fields": {"name": "im Bezug zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1177, "fields": {"name": "Freundschaft", "description": "", "parent_class": 1176, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1178, "fields": {"name": "arbeitet für", "description": "", "parent_class": 1405, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1179, "fields": {"name": "ist Staatsbürger/Staatsbürgerin von", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1181, "fields": {"name": "gelebt in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1182, "fields": {"name": "arbeitet für", "description": "", "parent_class": null, "status": "can", "vocab_name": 13}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1184, "fields": {"name": "wird rezensiert in", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1185, "fields": {"name": "wurde bearbeitet als", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1186, "fields": {"name": "arbeitet zusammen mit", "description": "", "parent_class": 1405, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1187, "fields": {"name": "beerdigt in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1189, "fields": {"name": "ist eine frühere Fassung von", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1190, "fields": {"name": "ist eine spätere Fassung von", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1191, "fields": {"name": "Sammlung von Rezensionen", "description": "Sammlung von Besprechungen", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1192, "fields": {"name": "in Relation zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1193, "fields": {"name": "aufgeführt am", "description": "", "parent_class": null, "status": "can", "vocab_name": 15}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1194, "fields": {"name": "hatte am Spielplan", "description": "", "parent_class": null, "status": "can", "vocab_name": 15}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1195, "fields": {"name": "http://www.geonames.org/ontology#P.PPLA4", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1198, "fields": {"name": "Wien-Geschichte-Wiki", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1200, "fields": {"name": "Aufführung", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1201, "fields": {"name": "Aufführung von", "description": "", "parent_class": null, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1202, "fields": {"name": "Veranstaltungsort von", "description": "", "parent_class": null, "status": "can", "vocab_name": 19}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1203, "fields": {"name": "Uraufführung", "description": "", "parent_class": 1205, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1204, "fields": {"name": "Uraufführung von", "description": "", "parent_class": 1201, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1205, "fields": {"name": "Premiere", "description": "", "parent_class": 1200, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1206, "fields": {"name": "Premiere von", "description": "", "parent_class": 1201, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1207, "fields": {"name": "Parabel", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1208, "fields": {"name": "Textsammlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1209, "fields": {"name": "Buchausgabe", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1210, "fields": {"name": "Dialog", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1211, "fields": {"name": "Unveröffentlichtes Werk", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1212, "fields": {"name": "Unveröffentlichtes dramatisches Werk", "description": "", "parent_class": 1211, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1213, "fields": {"name": "Aphorismus", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1214, "fields": {"name": "Werk_Link", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1215, "fields": {"name": "Stoffentwurf", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1216, "fields": {"name": "Unveröffentlichtes Gedicht", "description": "", "parent_class": 1211, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1217, "fields": {"name": "hat vertont", "description": "", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1218, "fields": {"name": "Periodikum", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1219, "fields": {"name": "Zeitschrift", "description": "", "parent_class": 1218, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1220, "fields": {"name": "Tageszeitung", "description": "", "parent_class": 1218, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1221, "fields": {"name": "Wochenschrift", "description": "", "parent_class": 1219, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1222, "fields": {"name": "Monatsschrift", "description": "", "parent_class": 1219, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1223, "fields": {"name": "Jahrbuch", "description": "", "parent_class": 1218, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1224, "fields": {"name": "hat einen Beitrag geschaffen zu", "description": "", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1225, "fields": {"name": "fortgeführt als", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1226, "fields": {"name": "Filmentwurf", "description": "", "parent_class": 1227, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1227, "fields": {"name": "Notizen", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1228, "fields": {"name": "Filmplan", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1229, "fields": {"name": "Operettenplan", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1232, "fields": {"name": "Vorwort", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1233, "fields": {"name": "vorangegangen ist", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1234, "fields": {"name": "http://www.geonames.org/ontology#P.PPLX", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1235, "fields": {"name": "Werk_Bibliografische-Angabe", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1237, "fields": {"name": "preceding", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1239, "fields": {"name": "Projekt", "description": "", "parent_class": null, "status": "can", "vocab_name": 20}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1240, "fields": {"name": "Polizeibehörde", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1241, "fields": {"name": "Generalprokuratur", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1242, "fields": {"name": "Staatsanwaltschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1243, "fields": {"name": "Anno", "description": "", "parent_class": 1214, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1244, "fields": {"name": "succeeding", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1245, "fields": {"name": "Privatdetektiv/Privatdetektivin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1246, "fields": {"name": "Vorleser/Vorleserin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1247, "fields": {"name": "ist Arbeitgeber/Arbeitgeberin für", "description": "", "parent_class": 1405, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1248, "fields": {"name": "Fähnrich/Fähnrichin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1249, "fields": {"name": "http://www.geonames.org/ontology#S.UNIV", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1250, "fields": {"name": "Vortrag", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1251, "fields": {"name": "Vorlesung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1252, "fields": {"name": "Vortrag/Vorlesung von", "description": "", "parent_class": null, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1253, "fields": {"name": "Vorlesung", "description": "", "parent_class": 1367, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1254, "fields": {"name": "Vortrag", "description": "", "parent_class": 1367, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1256, "fields": {"name": "ist Arbeitskraft bei", "description": "", "parent_class": null, "status": "can", "vocab_name": 21}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1257, "fields": {"name": "http://www.geonames.org/ontology#L.RGNE", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1259, "fields": {"name": "Musiktheoretiker/Musiktheoretikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1261, "fields": {"name": "Dr. jur./Dr.in jur.", "description": "", "parent_class": null, "status": "can", "vocab_name": 22}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1263, "fields": {"name": "Literaturkritiker/Literaturkritikerin", "description": "", "parent_class": 100, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1264, "fields": {"name": "Agrarwissenschaftler/Agrarwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1265, "fields": {"name": "Geschäftsmann/Geschäftsfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1267, "fields": {"name": "Agitator/Agitatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1269, "fields": {"name": "Leitender Angestellter/Leitende Angestellte", "description": "", "parent_class": 310, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1270, "fields": {"name": "Inseratenagent/Inseratenagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1271, "fields": {"name": "Sozialdemokrat/Sozialdemokratin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1272, "fields": {"name": "Staatskommissar/Staatskommissarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1273, "fields": {"name": "Staatssekretär/Staatssekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1274, "fields": {"name": "Obstbautechniker/Obstbautechnikerin", "description": "", "parent_class": 429, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1275, "fields": {"name": "Lyriker/Lyrikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1276, "fields": {"name": "Satiriker/Satirikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1278, "fields": {"name": "http://www.geonames.org/ontology#A.PCLD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1279, "fields": {"name": "Erzähler/Erzählerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1280, "fields": {"name": "Naturphilosoph/Naturphilosophin", "description": "", "parent_class": 154, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1281, "fields": {"name": "Aristokrat/Aristokratin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1282, "fields": {"name": "Volksschullehrer/Volksschullehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1283, "fields": {"name": "Anzeigenakquireur/Anzeigenakquireuse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1284, "fields": {"name": "http://www.geonames.org/ontology#L.RGN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1285, "fields": {"name": "http://www.geonames.org/ontology#A.ADM3H", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1286, "fields": {"name": "Koptologe/Koptologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1289, "fields": {"name": "Kulturkritiker/Kulturkritikerin", "description": "", "parent_class": 100, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1290, "fields": {"name": "Senator/Senatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1292, "fields": {"name": "Filmkritiker/Filmkritikerin", "description": "", "parent_class": 100, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1293, "fields": {"name": "Filmpädagoge/Filmpädagogin", "description": "", "parent_class": 294, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1294, "fields": {"name": "deportiert nach", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1297, "fields": {"name": "http://www.geonames.org/ontology#A.PCLH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1298, "fields": {"name": "http://www.geonames.org/ontology#A.ADMD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1299, "fields": {"name": "Landtagsabgeordneter/Landtagsabgeordnete", "description": "", "parent_class": 95, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1300, "fields": {"name": "Bundeskanzler/Bundeskanzlerin", "description": "", "parent_class": 95, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1301, "fields": {"name": "Wirtschaftsjournalist/Wirtschaftsjournalistin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1303, "fields": {"name": "Polizeipräsident/Polizeipräsidentin", "description": "", "parent_class": 645, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1304, "fields": {"name": "Theaterregisseur/Theaterregisseurin", "description": "", "parent_class": 104, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1305, "fields": {"name": "Schäferdichter/Schäferdichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1306, "fields": {"name": "Militärschriftsteller/Militärschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1307, "fields": {"name": "Naturschützer/Naturschützerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1309, "fields": {"name": "ist Großneffe/Großnichte von", "description": "", "parent_class": 1110, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1310, "fields": {"name": "ist Großonkel/Großtante von", "description": "", "parent_class": 1110, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1311, "fields": {"name": "Großindustrieller/Großindustrielle", "description": "", "parent_class": 152, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1312, "fields": {"name": "Kommerzialrat/Kommerzialrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1315, "fields": {"name": "Sozialist/Sozialistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1316, "fields": {"name": "Autor/Autorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1317, "fields": {"name": "Lektor/Lektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1318, "fields": {"name": "Logiker/Logikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1319, "fields": {"name": "Sprachgelehrter/Sprachgelehrte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1320, "fields": {"name": "Attentäter/Attentäterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1321, "fields": {"name": "Hörspielregisseur/Hörspielregisseurin", "description": "", "parent_class": 104, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1322, "fields": {"name": "Hörspielsprecher/Hörspielsprecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1323, "fields": {"name": "Synchronsprecher/Synchronsprecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1324, "fields": {"name": "Soldat/Soldatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1327, "fields": {"name": "Geschichtsphilosoph/Geschichtsphilosophin", "description": "", "parent_class": 154, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1328, "fields": {"name": "Geistheiler/Geistheilerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1329, "fields": {"name": "Plakatkünstler/Plakatkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1330, "fields": {"name": "Schule", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1331, "fields": {"name": "Bürgermeister/Bürgermeisterin", "description": "", "parent_class": 95, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1332, "fields": {"name": "Schneiderei", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1333, "fields": {"name": "Sachbuch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1334, "fields": {"name": "Epigramm", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1335, "fields": {"name": "bekommt zugeschrieben", "description": "", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1336, "fields": {"name": "Posse", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1337, "fields": {"name": "Posse mit Gesang", "description": "", "parent_class": 1336, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1338, "fields": {"name": "ist Erscheinungsort von", "description": "", "parent_class": null, "status": "can", "vocab_name": 15}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1339, "fields": {"name": "Augenarzt/Augenärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1340, "fields": {"name": "Novelle", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1341, "fields": {"name": "Verehrer/Verehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1342, "fields": {"name": "Erzählsammlung", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1343, "fields": {"name": "Philosophische Abhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1344, "fields": {"name": "Interview", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1345, "fields": {"name": "Tabak- und Zigarettenhersteller", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1346, "fields": {"name": "Lexikon", "description": "", "parent_class": 1347, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1347, "fields": {"name": "Nachschlagewerk", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1348, "fields": {"name": "Wörterbuch", "description": "", "parent_class": 1347, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1349, "fields": {"name": "Kriminalroman", "description": "", "parent_class": 1060, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1350, "fields": {"name": "Dramenfragment", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1351, "fields": {"name": "veranstaltet", "description": "", "parent_class": null, "status": "can", "vocab_name": 23}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1352, "fields": {"name": "Notiz", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1353, "fields": {"name": "Produktionsgemeinschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1354, "fields": {"name": "Antiquitätenhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1355, "fields": {"name": "Schwimmbadeigentümer/Schwimmbadeigentümerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1356, "fields": {"name": "Tagebuch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1357, "fields": {"name": "Buchreihe", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1358, "fields": {"name": "Reiseführer", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1359, "fields": {"name": "Spedition", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1361, "fields": {"name": "Aufzeichnungen", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1362, "fields": {"name": "Gemischtwarenhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1363, "fields": {"name": "ist eine Übersetzung von", "description": "", "parent_class": 1133, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1364, "fields": {"name": "Galanteriewaren", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1365, "fields": {"name": "Stationsvorsteher/Stationsvorsteherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1366, "fields": {"name": "Papierhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1367, "fields": {"name": "Veranstaltung", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1369, "fields": {"name": "Veranstaltungsort von", "description": "", "parent_class": null, "status": "can", "vocab_name": 19}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1370, "fields": {"name": "teilgenommen an", "description": "", "parent_class": null, "status": "can", "vocab_name": 21}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1371, "fields": {"name": "wird rezensiert in", "description": "", "parent_class": null, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1372, "fields": {"name": "Eisenbahnstrecke", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1373, "fields": {"name": "Prosadichtung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1374, "fields": {"name": "Ort_Früherer_Name", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1375, "fields": {"name": "Krankenhaus", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1376, "fields": {"name": "Geschichtswerk", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1377, "fields": {"name": "Kolumne", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1378, "fields": {"name": "Werk_Arbeitstitel", "description": "", "parent_class": 3109, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1379, "fields": {"name": "Leuchtturmwärter/Leuchtturmwärterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1381, "fields": {"name": "Metzger/Metzgerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1382, "fields": {"name": "Pharmahersteller", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1383, "fields": {"name": "Bote/Botin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1384, "fields": {"name": "Protestschreiben", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1385, "fields": {"name": "in Bezug zu", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1386, "fields": {"name": "Zeitungsbericht", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1390, "fields": {"name": "Bierbrauer/Bierbrauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1391, "fields": {"name": "Handlungsreisender/Handlungsreisende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1392, "fields": {"name": "Glosse", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1393, "fields": {"name": "Zoodirektor/Zoodirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1394, "fields": {"name": "Marsch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1395, "fields": {"name": "Geschlossene Aufführung", "description": "", "parent_class": 1200, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1396, "fields": {"name": "Generalprobe", "description": "", "parent_class": 1413, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1397, "fields": {"name": "Fremdenführer/Fremdenführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1398, "fields": {"name": "geboren in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1399, "fields": {"name": "Tal (N.TAL)", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1400, "fields": {"name": "Naturwissenschaftler/Naturwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1403, "fields": {"name": "Privataufführung", "description": "", "parent_class": 1395, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1404, "fields": {"name": "Bildender Künstler/Bildende Künstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1405, "fields": {"name": "in beruflichem Bezug zu", "description": "", "parent_class": 1176, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1406, "fields": {"name": "Leitartikel", "description": "", "parent_class": 3114, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1407, "fields": {"name": "Feuilleton", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1408, "fields": {"name": "Opernzyklus", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1409, "fields": {"name": "besitzt", "description": "", "parent_class": null, "status": "can", "vocab_name": 13}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1410, "fields": {"name": "https://www.geonames.org/ontology#P.PPLA3", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1411, "fields": {"name": "https://www.geonames.org/ontology#A.PCLI", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1412, "fields": {"name": "https://www.geonames.org/ontology#P.PPL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1413, "fields": {"name": "Probe", "description": "", "parent_class": 1200, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1414, "fields": {"name": "Tierhandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1415, "fields": {"name": "https://www.geonames.org/ontology#P.PPLA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1417, "fields": {"name": "Hilfsorganisation", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1418, "fields": {"name": "https://www.geonames.org/ontology#P.PPLC", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1419, "fields": {"name": "https://www.geonames.org/ontology#P.PPLA2", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1420, "fields": {"name": "Hochschule", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1421, "fields": {"name": "Nachruf", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1422, "fields": {"name": "Pelzhändler/Pelzhändlerin", "description": "", "parent_class": 155, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1423, "fields": {"name": "Konzertsänger/Konzertsängerin", "description": "", "parent_class": 107, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1424, "fields": {"name": "ist Lehrer/Lehrerin von", "description": "", "parent_class": 1405, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1425, "fields": {"name": "Aktivist/Aktivistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1430, "fields": {"name": "Kolporteur/Kolporteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1432, "fields": {"name": "Handelsvertreter/Handelsvertreterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1433, "fields": {"name": "Kriegsberichterstatter/Kriegsberichterstatterin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1434, "fields": {"name": "https://www.geonames.org/ontology#A.ADM3", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1444, "fields": {"name": "Bankier/Bankierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1449, "fields": {"name": "Freimaurer/Freimaurerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1450, "fields": {"name": "Forschungsreisender/Forschungsreisende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1452, "fields": {"name": "Reiseschriftsteller/Reiseschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1458, "fields": {"name": "Tenor/", "description": "", "parent_class": 107, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1459, "fields": {"name": "Klavier- und Cembalobauer/Klavier- und Cembalobauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1468, "fields": {"name": "Violoncellist/Violoncellistin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1472, "fields": {"name": "Beamter/Beamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1473, "fields": {"name": "Privatdozent/Privatdozentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1475, "fields": {"name": "Kunsthandlung", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1476, "fields": {"name": "Umfrage", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1477, "fields": {"name": "Fragment", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1478, "fields": {"name": "Romanfragment", "description": "", "parent_class": 1477, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1479, "fields": {"name": "Oper", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1480, "fields": {"name": "https://www.geonames.org/ontology#A.ADM2", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1481, "fields": {"name": "https://www.geonames.org/ontology#A.PCLS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1482, "fields": {"name": "Ministerium", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1483, "fields": {"name": "https://www.geonames.org/ontology#P.PPLA4", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1484, "fields": {"name": "https://www.geonames.org/ontology#A.ADM1", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1485, "fields": {"name": "Strand (N.STR)", "description": "https://vocabs.acdh.oeaw.ac.at/pmb/placetypes/N.STR", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1486, "fields": {"name": "Synagoge", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1487, "fields": {"name": "Eheschließung", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1493, "fields": {"name": "Bild", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1494, "fields": {"name": "Fechtkämpfer/Fechtkämpferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1495, "fields": {"name": "Ballett", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1497, "fields": {"name": "Kinderbuch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1498, "fields": {"name": "Aufruf", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1501, "fields": {"name": "Literarhistoriker/Literarhistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1503, "fields": {"name": "Theaterwissenschaftler/Theaterwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1504, "fields": {"name": "Papier- und Farbenunternehmen", "description": "", "parent_class": 3458, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1506, "fields": {"name": "Drucker/Druckerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1510, "fields": {"name": "geboren in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1513, "fields": {"name": "https://www.geonames.org/ontology#A.ADMD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1516, "fields": {"name": "ist Teil von", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1517, "fields": {"name": "enthält", "description": "", "parent_class": null, "status": "can", "vocab_name": 14}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1519, "fields": {"name": "https://www.geonames.org/ontology#P.PPLX", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1521, "fields": {"name": "Unveröffentlichtes Musikwerk", "description": "", "parent_class": 1211, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1523, "fields": {"name": "ist Halbgeschwister von", "description": "", "parent_class": 1110, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1525, "fields": {"name": "Todesanzeige", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1527, "fields": {"name": "Probe", "description": "", "parent_class": 1201, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1528, "fields": {"name": "Generalprobe", "description": "", "parent_class": 1527, "status": "can", "vocab_name": 18}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1529, "fields": {"name": "Vorlesung im privaten Kreis", "description": "", "parent_class": 1253, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1530, "fields": {"name": "ist Schüler/Schülerin von", "description": "", "parent_class": 1405, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1531, "fields": {"name": "Satire", "description": "", "parent_class": 1155, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1532, "fields": {"name": "https://www.geonames.org/ontology#T.VAL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1533, "fields": {"name": "https://www.geonames.org/ontology#A.PCLD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1534, "fields": {"name": "unterstützt", "description": "", "parent_class": null, "status": "can", "vocab_name": 13}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1535, "fields": {"name": "Librettist/Librettistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1537, "fields": {"name": "Fernsprechamt", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1538, "fields": {"name": "Postamt", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1540, "fields": {"name": "Nobelpreisträger/Nobelpreisträgerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1542, "fields": {"name": "Konzertdirektion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1543, "fields": {"name": "Fahrzeugbauunternehmen", "description": "", "parent_class": 3458, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1544, "fields": {"name": "Kinobetreiber/Kinobetreiberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1548, "fields": {"name": "Plastik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1549, "fields": {"name": "enthält", "description": "", "parent_class": null, "status": "can", "vocab_name": 15}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1553, "fields": {"name": "hat illustriert", "description": "", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1554, "fields": {"name": "Epos", "description": "", "parent_class": 1155, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1555, "fields": {"name": "https://www.geonames.org/ontology#L.RGN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1556, "fields": {"name": "Mosaizist/Mosaizistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1557, "fields": {"name": "Baron/Baronin", "description": "", "parent_class": null, "status": "can", "vocab_name": 22}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1558, "fields": {"name": "Graf/Gräfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 22}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1559, "fields": {"name": "König/Königin", "description": "", "parent_class": null, "status": "can", "vocab_name": 22}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1560, "fields": {"name": "Sir/Lady", "description": "", "parent_class": null, "status": "can", "vocab_name": 22}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1561, "fields": {"name": "Konzert", "description": "", "parent_class": 1367, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1562, "fields": {"name": "Klassischer Philologe/Klassische Philologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1564, "fields": {"name": "Leseprobe", "description": "", "parent_class": 1413, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1572, "fields": {"name": "https://www.geonames.org/ontology#S.ANS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1573, "fields": {"name": "https://www.geonames.org/ontology#L.CONT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1574, "fields": {"name": "https://www.geonames.org/ontology#A.ADM4H", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1575, "fields": {"name": "https://www.geonames.org/ontology#S.MSTY", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1576, "fields": {"name": "https://www.geonames.org/ontology#T.ISL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1577, "fields": {"name": "https://www.geonames.org/ontology#H.STM", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1579, "fields": {"name": "https://www.geonames.org/ontology#S.HSE", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1580, "fields": {"name": "https://www.geonames.org/ontology#A.ADM4", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1581, "fields": {"name": "https://www.geonames.org/ontology#S.CSTL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1584, "fields": {"name": "Pfleger/Pflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1585, "fields": {"name": "https://www.geonames.org/ontology#A.PCL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1586, "fields": {"name": "https://www.geonames.org/ontology#S.FRM", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1587, "fields": {"name": "hat unter einem Kürzel veröffentlicht", "description": "", "parent_class": 1049, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1588, "fields": {"name": "Rennstallbesitzer/Rennstallbesitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1590, "fields": {"name": "Gesetz", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1591, "fields": {"name": "Schriftführer/Schriftführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1593, "fields": {"name": "https://www.geonames.org/ontology#T.ISLS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1597, "fields": {"name": "Kunstführer", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1598, "fields": {"name": "Fresko", "description": "", "parent_class": 1493, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1599, "fields": {"name": "Statue", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1601, "fields": {"name": "Turnlehrer/Turnlehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1602, "fields": {"name": "Stukkateur/Stukkateurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1603, "fields": {"name": "Kupferstich", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1604, "fields": {"name": "Reiseunternehmen", "description": "", "parent_class": 3458, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1605, "fields": {"name": "Reederei", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1606, "fields": {"name": "https://www.geonames.org/ontology#T.VLC", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1607, "fields": {"name": "https://www.geonames.org/ontology#A.PCLIX", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1608, "fields": {"name": "https://www.geonames.org/ontology#T.CAPE", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1609, "fields": {"name": "Papierfabrikant/Papierfabrikantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1610, "fields": {"name": "Streichquartett", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1611, "fields": {"name": "Badeanstalt", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1612, "fields": {"name": "Spa/Sauna", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1613, "fields": {"name": "Aquarell", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1618, "fields": {"name": "https://www.geonames.org/ontology#H.LK", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1619, "fields": {"name": "Klavierspieler/Klavierspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1620, "fields": {"name": "https://www.geonames.org/ontology#T.MTS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1621, "fields": {"name": "https://www.geonames.org/ontology#T.PK", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1622, "fields": {"name": "Parodie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1623, "fields": {"name": "https://www.geonames.org/ontology#T.MT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1624, "fields": {"name": "Hotel", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1625, "fields": {"name": "Lokal", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1626, "fields": {"name": "https://www.geonames.org/ontology#H.OCN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1627, "fields": {"name": "Getreidegesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1628, "fields": {"name": "Gesellschaftsdirektor/Gesellschaftsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1629, "fields": {"name": "Kanzlei", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1630, "fields": {"name": "Café", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1631, "fields": {"name": "Restaurant", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1634, "fields": {"name": "Lebensmittelhandlung", "description": "", "parent_class": 990, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1635, "fields": {"name": "Käsehandlung", "description": "", "parent_class": 1634, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1636, "fields": {"name": "Erhebung", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1637, "fields": {"name": "Geistliche Gesänge", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1639, "fields": {"name": "Jurist/Juristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1640, "fields": {"name": "Gesetzeskommentar", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1642, "fields": {"name": "Aktiengesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1644, "fields": {"name": "https://www.geonames.org/ontology#A.TERR", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1645, "fields": {"name": "https://www.geonames.org/ontology#L.RGNH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1646, "fields": {"name": "https://www.geonames.org/ontology#S.RUIN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1647, "fields": {"name": "Programmheft", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1648, "fields": {"name": "Filmstudio", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1650, "fields": {"name": "Chorleiter/Chorleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1654, "fields": {"name": "Arrangeur/Arrangeurin", "description": "", "parent_class": 344, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1657, "fields": {"name": "geboren in", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1658, "fields": {"name": "Hochschullehrer/Hochschullehrerin", "description": "", "parent_class": 240, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1660, "fields": {"name": "Physiologe/Physiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1661, "fields": {"name": "Pathologe/Pathologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1664, "fields": {"name": "Plakatierungsgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1665, "fields": {"name": "Urkundsbeamter/Urkundsbeamtin", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1666, "fields": {"name": "Sinfonie", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1668, "fields": {"name": "https://www.geonames.org/ontology#L.LCTY", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1669, "fields": {"name": "Tontechnikproduktionsfirma", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1670, "fields": {"name": "Fluggesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1671, "fields": {"name": "Musiklabel", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1676, "fields": {"name": "Wissenschaftliches Werk", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1677, "fields": {"name": "Wissenschaftlicher Aufsatz", "description": "", "parent_class": 1676, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1678, "fields": {"name": "Abschlussarbeit", "description": "", "parent_class": 1676, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1679, "fields": {"name": "Schlachter/Schlachterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1680, "fields": {"name": "Essay", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1681, "fields": {"name": "Essaysammlung", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1683, "fields": {"name": "Kanzleiangestellter/Kanzleiangestellte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1688, "fields": {"name": "Verserzählung", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1690, "fields": {"name": "Fakultät", "description": "", "parent_class": 1032, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1692, "fields": {"name": "Arzt/Ärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1693, "fields": {"name": "Justitiar/Justitiarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1695, "fields": {"name": "Festival", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1700, "fields": {"name": "Presseagentur", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1708, "fields": {"name": "Zeitungsredakteur/Zeitungsredakteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1714, "fields": {"name": "Festspiel", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1717, "fields": {"name": "Kommentar", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1719, "fields": {"name": "https://www.geonames.org/ontology#P.PPLL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1720, "fields": {"name": "https://www.geonames.org/ontology#P.PPLH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1721, "fields": {"name": "https://www.geonames.org/ontology#P.PPLG", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1722, "fields": {"name": "https://www.geonames.org/ontology#S.EST", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1723, "fields": {"name": "Parlament", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1724, "fields": {"name": "https://www.geonames.org/ontology#S.RSTN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1725, "fields": {"name": "https://www.geonames.org/ontology#T.PT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1726, "fields": {"name": "Botschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1727, "fields": {"name": "https://www.geonames.org/ontology#S.SQR", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1728, "fields": {"name": "https://www.geonames.org/ontology#L.PRK", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1729, "fields": {"name": "https://www.geonames.org/ontology#T.HLL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1739, "fields": {"name": "Essayist/Essayistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1744, "fields": {"name": "Bürgerwehr", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1746, "fields": {"name": "Sternwarte", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1748, "fields": {"name": "Filmarchitekt/Filmarchitektin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1766, "fields": {"name": "Monatszeitungsredaktion", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1772, "fields": {"name": "Testament", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1773, "fields": {"name": "Ballspende", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1774, "fields": {"name": "Komödiant/Komödiantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1777, "fields": {"name": "Umweltschutzverein", "description": "", "parent_class": 974, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1778, "fields": {"name": "Internierungslager", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1779, "fields": {"name": "Rätsel", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1786, "fields": {"name": "Rezensent/Rezensentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1789, "fields": {"name": "Festschrift", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1790, "fields": {"name": "Dramenzyklus", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1791, "fields": {"name": "Briefe", "description": "", "parent_class": 1834, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1792, "fields": {"name": "Erinnerungen", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1793, "fields": {"name": "Kritiken", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1794, "fields": {"name": "Dokumentation", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1795, "fields": {"name": "Vaudeville", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1796, "fields": {"name": "Märchen", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1797, "fields": {"name": "Revue", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1798, "fields": {"name": "Rede", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1799, "fields": {"name": "Reportage", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1800, "fields": {"name": "Lehrbuch", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1801, "fields": {"name": "Libretto", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1802, "fields": {"name": "Anthologie", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1803, "fields": {"name": "Gespräche", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1804, "fields": {"name": "Monografie", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1805, "fields": {"name": "Skizze", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1806, "fields": {"name": "Puppenspiel", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1807, "fields": {"name": "Skizzen", "description": "", "parent_class": 1805, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1808, "fields": {"name": "Werkzyklus", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1809, "fields": {"name": "Polemik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1810, "fields": {"name": "Oratorium", "description": "", "parent_class": 1072, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1811, "fields": {"name": "Dramatisierung", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1812, "fields": {"name": "Romanzyklus", "description": "", "parent_class": 1808, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1816, "fields": {"name": "Dramensammlung", "description": "", "parent_class": 1208, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1834, "fields": {"name": "Brief", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1835, "fields": {"name": "Öffentlicher Brief", "description": "", "parent_class": 1834, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1837, "fields": {"name": "Spengler/Spenglerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1838, "fields": {"name": "Staatsanwaltlicher Kommissar/Staatsanwaltliche Kommissarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1839, "fields": {"name": "Filmregisseur/Filmregisseurin", "description": "", "parent_class": 104, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1866, "fields": {"name": "Kunsthistoriker/Kunsthistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1870, "fields": {"name": "Chansonnier/Chansonette", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1878, "fields": {"name": "Hilfsarbeiter/Hilfsarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1879, "fields": {"name": "Lehrling/Lehrling", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1881, "fields": {"name": "https://www.geonames.org/ontology#H.SD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1882, "fields": {"name": "Petition", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1883, "fields": {"name": "Biograf/Biografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1884, "fields": {"name": "übersetzt als", "description": "", "parent_class": 1185, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1886, "fields": {"name": "Bergarbeiter/Bergarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1887, "fields": {"name": "Elektrotechniker/Elektrotechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1888, "fields": {"name": "Gouverneur/Gouverneurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1889, "fields": {"name": "Verwaltungsbeamter/Verwaltungsbeamte", "description": "", "parent_class": 1472, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1890, "fields": {"name": "Kinderbuchautor/Kinderbuchautorin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1891, "fields": {"name": "Kriminalist/Kriminalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1892, "fields": {"name": "Volkswirt/Volkswirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1893, "fields": {"name": "Rektor/Rektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1894, "fields": {"name": "Universitätslehrer/Universitätslehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1895, "fields": {"name": "Parapsychologe/Parapsychologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1896, "fields": {"name": "Okkultist/Okkultistin", "description": "", "parent_class": 1895, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1897, "fields": {"name": "Redner/Rednerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1899, "fields": {"name": "https://www.geonames.org/ontology#L.AREA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1900, "fields": {"name": "vielleicht geboren in", "description": "", "parent_class": 88, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1901, "fields": {"name": "vielleicht gestorben in", "description": "", "parent_class": 89, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1918, "fields": {"name": "Telefonist/Telefonistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1926, "fields": {"name": "Nachtkritik", "description": "", "parent_class": 1927, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1927, "fields": {"name": "Theaterkritik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1928, "fields": {"name": "https://www.geonames.org/ontology#S.PAL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1941, "fields": {"name": "Textilfabrik", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1953, "fields": {"name": "Verlagsalmanach", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1954, "fields": {"name": "Apotheke", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1982, "fields": {"name": "Unveröffentlichte Erzählung", "description": "", "parent_class": 1211, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1986, "fields": {"name": "Vereinstreffen", "description": "", "parent_class": 1987, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1987, "fields": {"name": "Zusammenkunft", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1988, "fields": {"name": "Duell", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1996, "fields": {"name": "Kasino", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 1998, "fields": {"name": "Verwertungsgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2001, "fields": {"name": "https://www.geonames.org/ontology#R.RD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2002, "fields": {"name": "Antisemitisches Pamphlet", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2011, "fields": {"name": "https://www.geonames.org/ontology#S.HTL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2012, "fields": {"name": "https://www.geonames.org/ontology#H.GLCR", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2013, "fields": {"name": "https://www.geonames.org/ontology#T.PASS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2014, "fields": {"name": "https://www.geonames.org/ontology#S.FT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2015, "fields": {"name": "https://www.geonames.org/ontology#H.BAY", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2016, "fields": {"name": "https://www.geonames.org/ontology#A.ADM2H", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2017, "fields": {"name": "https://www.geonames.org/ontology#H.CAPG", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2018, "fields": {"name": "https://www.geonames.org/ontology#S.GHSE", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2019, "fields": {"name": "https://www.geonames.org/ontology#A.ADM3H", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2020, "fields": {"name": "https://www.geonames.org/ontology#A.PCLH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2021, "fields": {"name": "https://www.geonames.org/ontology#S.BDG", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2022, "fields": {"name": "https://www.geonames.org/ontology#S.SPA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2023, "fields": {"name": "https://www.geonames.org/ontology#T.PEN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2024, "fields": {"name": "https://www.geonames.org/ontology#S.HUT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2025, "fields": {"name": "https://www.geonames.org/ontology#S.GDN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2026, "fields": {"name": "https://www.geonames.org/ontology#H.STRT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2027, "fields": {"name": "https://www.geonames.org/ontology#T.SPUR", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2028, "fields": {"name": "https://www.geonames.org/ontology#H.CNL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2029, "fields": {"name": "https://www.geonames.org/ontology#S.MUS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2030, "fields": {"name": "https://www.geonames.org/ontology#R.ST", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2031, "fields": {"name": "https://www.geonames.org/ontology#S.BUSTP", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2032, "fields": {"name": "https://www.geonames.org/ontology#H.STMA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2033, "fields": {"name": "https://www.geonames.org/ontology#H.CNLN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2034, "fields": {"name": "https://www.geonames.org/ontology#T.SLP", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2035, "fields": {"name": "https://www.geonames.org/ontology#H.FJD", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2036, "fields": {"name": "https://www.geonames.org/ontology#T.GRGE", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2037, "fields": {"name": "https://www.geonames.org/ontology#R.PRMN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2038, "fields": {"name": "https://www.geonames.org/ontology#S.ZOO", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2039, "fields": {"name": "https://www.geonames.org/ontology#T.CLF", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2040, "fields": {"name": "https://www.geonames.org/ontology#L.CST", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2041, "fields": {"name": "https://www.geonames.org/ontology#T.ISLET", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2042, "fields": {"name": "https://www.geonames.org/ontology#H.PNDS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2043, "fields": {"name": "https://www.geonames.org/ontology#T.PLN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2044, "fields": {"name": "https://www.geonames.org/ontology#S.TOWR", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2045, "fields": {"name": "https://www.geonames.org/ontology#H.SEA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2046, "fields": {"name": "https://www.geonames.org/ontology#S.ARCH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2047, "fields": {"name": "https://www.geonames.org/ontology#T.DSRT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2048, "fields": {"name": "https://www.geonames.org/ontology#S.CH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2049, "fields": {"name": "https://www.geonames.org/ontology#L.AMUS", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2050, "fields": {"name": "https://www.geonames.org/ontology#H.GULF", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2051, "fields": {"name": "https://www.geonames.org/ontology#T.RK", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2052, "fields": {"name": "https://www.geonames.org/ontology#S.RSTP", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2053, "fields": {"name": "https://www.geonames.org/ontology#H.RVN", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2054, "fields": {"name": "https://www.geonames.org/ontology#H.STMI", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2057, "fields": {"name": "Plakat", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2058, "fields": {"name": "Parlamentskammer", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2059, "fields": {"name": "Sammelrezension", "description": "", "parent_class": 1131, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2063, "fields": {"name": "Sportpreis", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2072, "fields": {"name": "Börse", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2073, "fields": {"name": "Ausstellungskatalog", "description": "", "parent_class": 1086, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2078, "fields": {"name": "Gerichtsurteil", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2079, "fields": {"name": "Replik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2085, "fields": {"name": "https://www.geonames.org/ontology#S.RLG", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2088, "fields": {"name": "Politiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2090, "fields": {"name": "Offizier/Offizierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2098, "fields": {"name": "Journalist/Journalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2099, "fields": {"name": "Geheimagent/Geheimagentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2100, "fields": {"name": "Politikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2101, "fields": {"name": "Gewerkschaftsmitglied/Gewerkschaftsmitglied", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2102, "fields": {"name": "Arbeiter/Arbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2105, "fields": {"name": "Abgeordneter/Abgeordnete", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2107, "fields": {"name": "Oberbürgermeister/Oberbürgermeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2109, "fields": {"name": "Regierungschef/Regierungschefin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2110, "fields": {"name": "Sportler/Sportlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2112, "fields": {"name": "Sportlehrer/Sportlehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2118, "fields": {"name": "Operndirektor/Operndirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2119, "fields": {"name": "Intendant/Intendantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2120, "fields": {"name": "Boxer/Boxerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2124, "fields": {"name": "Kolonialbeamter/Kolonialbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2125, "fields": {"name": "Generalleutnant/Generalleutnantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2126, "fields": {"name": "Gauleiter/Gauleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2129, "fields": {"name": "Steuerberater/Steuerberaterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2130, "fields": {"name": "Beglaubigungsschreiber/Beglaubigungsschreiberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2134, "fields": {"name": "Schriftsteller/Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2137, "fields": {"name": "Sopranist/Sopranistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2138, "fields": {"name": "Innenminister/Innenministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2139, "fields": {"name": "Schlosser/Schlosserin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2140, "fields": {"name": "Funktionär/Funktionärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2150, "fields": {"name": "Wirtschaftswissenschaftler/Wirtschaftswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2154, "fields": {"name": "Baptist/Baptistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2156, "fields": {"name": "Bergmann/Bergfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2159, "fields": {"name": "Regierungsrat/Regierungsrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2160, "fields": {"name": "Kommunalpolitiker/Kommunalpolitikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2162, "fields": {"name": "Scharfrichter/Scharfrichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2163, "fields": {"name": "Generaloberst/Generaloberstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2165, "fields": {"name": "Nationalsozialist/Nationalsozialistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2167, "fields": {"name": "Heimatschriftsteller/Heimatschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2169, "fields": {"name": "Leutnant/Leutnantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2176, "fields": {"name": "Rundfunkintendant/Rundfunkintendantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2177, "fields": {"name": "Ministerialdirektor/Ministerialdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2180, "fields": {"name": "Musikschriftsteller/Musikschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2182, "fields": {"name": "Agrarpolitiker/Agrarpolitikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2184, "fields": {"name": "Botschafter/Botschafterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2186, "fields": {"name": "Widerstandskämpfer/Widerstandskämpferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2187, "fields": {"name": "Bauingenieur/Bauingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2194, "fields": {"name": "Jagdflieger/Jagdfliegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2195, "fields": {"name": "Hauptmann/Hauptfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2197, "fields": {"name": "Komiker/Komikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2199, "fields": {"name": "Herstellungsleiter/Herstellungsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2204, "fields": {"name": "Diplomlandwirt/Diplomlandwirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2205, "fields": {"name": "Fahnenjunker/Fahnenjunkerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2207, "fields": {"name": "Evangelischer Theologe/Evangelische Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2217, "fields": {"name": "Schriftsteller/Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2221, "fields": {"name": "Verwaltungsjurist/Verwaltungsjuristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2222, "fields": {"name": "Kirchenhistoriker/Kirchenhistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2224, "fields": {"name": "Militärattaché/Militärattachée", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2225, "fields": {"name": "Dompteur/Dompteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2230, "fields": {"name": "Lagerkommandant/Lagerkommandantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2231, "fields": {"name": "Liederdichter/Liederdichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2232, "fields": {"name": "General/Generalin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2234, "fields": {"name": "Konsul/Konsulin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2237, "fields": {"name": "Althistoriker/Althistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2239, "fields": {"name": "Kaufmannsgehilfe/Kaufmannsgehilfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2242, "fields": {"name": "Inquisitor/Inquisitorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2246, "fields": {"name": "Journalist/Journalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2250, "fields": {"name": "Katholischer Theologe/Katholische Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2251, "fields": {"name": "Klempner/Klempnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2253, "fields": {"name": "wohnhaft in", "description": "", "parent_class": 1181, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2254, "fields": {"name": "Handwerker/Handwerkerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2261, "fields": {"name": "Opernsänger/Opernsängerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2264, "fields": {"name": "Speläologe/Speläologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2267, "fields": {"name": "Prähistoriker/Prähistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2270, "fields": {"name": "Genetiker/Genetikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2271, "fields": {"name": "Musiklehrer/Musiklehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2279, "fields": {"name": "Selbstständiger/Selbstständige", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2281, "fields": {"name": "Außenminister/Außenministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2284, "fields": {"name": "Bildnismaler/Bildnismalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2286, "fields": {"name": "Mundartschriftsteller/Mundartschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2289, "fields": {"name": "Aquarellmaler/Aquarellmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2290, "fields": {"name": "Landschaftsmaler/Landschaftsmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2291, "fields": {"name": "Sachbuchautor/Sachbuchautorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2292, "fields": {"name": "Politischer Flüchtling/Politischer Flüchtling", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2295, "fields": {"name": "Bergsteiger/Bergsteigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2297, "fields": {"name": "Hochadeliger/Hochadelige", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2298, "fields": {"name": "Geodät/Geodätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2304, "fields": {"name": "Heraldiker/Heraldikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2308, "fields": {"name": "Tierarzt/Tierärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2309, "fields": {"name": "Talmudist/Talmudistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2310, "fields": {"name": "Judaist/Judaistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2311, "fields": {"name": "Fluglehrer/Fluglehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2312, "fields": {"name": "Biochemiker/Biochemikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2313, "fields": {"name": "Hautarzt/Hautärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2317, "fields": {"name": "Designer/Designerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2318, "fields": {"name": "Heimatkundler/Heimatkundlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2319, "fields": {"name": "Schulinspektor/Schulinspektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2321, "fields": {"name": "Statistiker/Statistikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2325, "fields": {"name": "/Nonne", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2327, "fields": {"name": "Vizekanzler/Vizekanzlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2328, "fields": {"name": "Katholik/Katholikin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2337, "fields": {"name": "Freiherr/Freifrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2338, "fields": {"name": "Hals-Nasen-Ohren-Arzt/Hals-Nasen-Ohren-Ärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2339, "fields": {"name": "Numismatiker/Numismatikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2340, "fields": {"name": "Stabsoffizier/Stabsoffizierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2341, "fields": {"name": "Konstrukteur/Konstrukteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2343, "fields": {"name": "Vermessungstechniker/Vermessungstechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2345, "fields": {"name": "Maschinenbaumechaniker/Maschinenbaumechanikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2346, "fields": {"name": "Önologe/Önologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2347, "fields": {"name": "Afrikanist/Afrikanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2355, "fields": {"name": "Petrologe/Petrologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2357, "fields": {"name": "Gesangslehrer/Gesangslehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2358, "fields": {"name": "Radiologe/Radiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2359, "fields": {"name": "Seismologe/Seismologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2361, "fields": {"name": "Versicherungsmathematiker/Versicherungsmathematikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2365, "fields": {"name": "Baritonist/", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2368, "fields": {"name": "Luftfahrer/Luftfahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2369, "fields": {"name": "Heilpraktiker/Heilpraktikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2372, "fields": {"name": "Holzschnitzer/Holzschnitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2374, "fields": {"name": "Feminist/Feministin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2378, "fields": {"name": "Marineoffizier/Marineoffizierin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2379, "fields": {"name": "Bibliotheksdirektor/Bibliotheksdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2381, "fields": {"name": "Pflanzenphysiologe/Pflanzenphysiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2384, "fields": {"name": "Skilehrer/Skilehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2385, "fields": {"name": "Rennfahrer/Rennfahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2386, "fields": {"name": "Oberleutnant/Oberleutnantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2388, "fields": {"name": "Flugzeugführer/Flugzeugführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2390, "fields": {"name": "Schachspieler/Schachspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2393, "fields": {"name": "Messerschmied/Messerschmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2394, "fields": {"name": "Generalfeldmarschall/Generalfeldmarschallin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2395, "fields": {"name": "Förster/Försterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2398, "fields": {"name": "Feldmarschall/Feldmarschallin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2401, "fields": {"name": "Genealoge/Genealogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2404, "fields": {"name": "Marinesoldat/Marinesoldatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2405, "fields": {"name": "Jockey/Jockey", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2406, "fields": {"name": "Atomphysiker/Atomphysikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2409, "fields": {"name": "Klimatologe/Klimatologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2411, "fields": {"name": "Phytopathologe/Phytopathologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2412, "fields": {"name": "Hofrat/Hofrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2414, "fields": {"name": "Sozialwissenschaftler/Sozialwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2419, "fields": {"name": "Denkmalpfleger/Denkmalpflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2421, "fields": {"name": "Forstwissenschaftler/Forstwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2424, "fields": {"name": "Mechaniker/Mechanikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2426, "fields": {"name": "Abt/Äbtissin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2427, "fields": {"name": "Stenograf/Stenografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2432, "fields": {"name": "Entomologe/Entomologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2433, "fields": {"name": "Generalmajor/Generalmajorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2434, "fields": {"name": "Ägyptologe/Ägyptologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2436, "fields": {"name": "Romancier/Romancière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2438, "fields": {"name": "Alttestamentler/Alttestamentlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2439, "fields": {"name": "Exeget/Exegetin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2440, "fields": {"name": "Epigraphiker/Epigraphikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2441, "fields": {"name": "Metallarbeiter/Metallarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2442, "fields": {"name": "Kunsthandwerker/Kunsthandwerkerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2443, "fields": {"name": "Kunstschmied/Kunstschmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2444, "fields": {"name": "Skandinavist/Skandinavistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2445, "fields": {"name": "Geiger/Geigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2446, "fields": {"name": "Bautechniker/Bautechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2448, "fields": {"name": "Politologe/Politologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2449, "fields": {"name": "Marxist/Marxistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2450, "fields": {"name": "Vikar/Vikarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2455, "fields": {"name": "Bibliothekswissenschaftler/Bibliothekswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2458, "fields": {"name": "Lepidopterologe/Lepidopterologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2459, "fields": {"name": "Leibarzt/Leibärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2460, "fields": {"name": "Dozent/Dozentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2464, "fields": {"name": "Finanzminister/Finanzministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2465, "fields": {"name": "Endokrinologe/Endokrinologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2466, "fields": {"name": "Musikinstrumentenbauer/Musikinstrumentenbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2467, "fields": {"name": "Geigenbauer/Geigenbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2470, "fields": {"name": "Kinderarzt/Kinderärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2478, "fields": {"name": "Prosaist/Prosaistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2480, "fields": {"name": "Konservator/Konservatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2481, "fields": {"name": "Sozialreformer/Sozialreformerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2482, "fields": {"name": "Realschullehrer/Realschullehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2483, "fields": {"name": "Wirtschaftsjurist/Wirtschaftsjuristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2484, "fields": {"name": "Experte/Expertin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2486, "fields": {"name": "Orchestermusiker/Orchestermusikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2488, "fields": {"name": "Bergingenieur/Bergingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2496, "fields": {"name": "Ritter/Dame", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2497, "fields": {"name": "Bassist/Bassistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2502, "fields": {"name": "Philatelist/Philatelistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2504, "fields": {"name": "Charakterdarsteller/Charakterdarstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2505, "fields": {"name": "Feinoptiker/Feinoptikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2506, "fields": {"name": "Bundesrichter/Bundesrichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2507, "fields": {"name": "Toningenieur/Toningenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2508, "fields": {"name": "Lebensmittelchemiker/Lebensmittelchemikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2509, "fields": {"name": "Mikrobiologe/Mikrobiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2510, "fields": {"name": "Sportpädagoge/Sportpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2511, "fields": {"name": "Meteorologe/Meteorologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2513, "fields": {"name": "Versicherungsfachmann/Versicherungsfachfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2515, "fields": {"name": "Notar", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2517, "fields": {"name": "Fußballspieler/Fußballspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2518, "fields": {"name": "Ruderer/Rudererin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2519, "fields": {"name": "Trainer/Trainerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2521, "fields": {"name": "Stadtplaner/Stadtplanerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2522, "fields": {"name": "Semitist/Semitistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2523, "fields": {"name": "Islamwissenschaftler/Islamwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2524, "fields": {"name": "Gutsherr/Gutsherrin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2526, "fields": {"name": "Orgelbauer/Orgelbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2527, "fields": {"name": "Jäger/Jägerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2528, "fields": {"name": "Mesner/Mesnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2529, "fields": {"name": "Kirchenmaler/Kirchenmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2534, "fields": {"name": "Steinbildhauer/Steinbildhauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2535, "fields": {"name": "Autorenlesung", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2536, "fields": {"name": "Holzbildhauer/Holzbildhauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2537, "fields": {"name": "Kinderpfleger/Kinderpflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2540, "fields": {"name": "Vermessungsingenieur/Vermessungsingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2542, "fields": {"name": "Meereskundler/Meereskundlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2543, "fields": {"name": "Bergführer/Bergführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2544, "fields": {"name": "Kletterer/Klettererin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2547, "fields": {"name": "Glockengießer/Glockengießerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2550, "fields": {"name": "Maschinenbauingenieur/Maschinenbauingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2551, "fields": {"name": "Algologe/Algologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2552, "fields": {"name": "Krippenschnitzer/Krippenschnitzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2553, "fields": {"name": "Wissenschaftshistoriker/Wissenschaftshistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2554, "fields": {"name": "Rechtsmediziner/Rechtsmedizinerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2557, "fields": {"name": "Kanoniker/Kanonikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2558, "fields": {"name": "Religionswissenschaftler/Religionswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2559, "fields": {"name": "Gräzist/Gräzistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2560, "fields": {"name": "Konzertmeister/Konzertmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2561, "fields": {"name": "Filmschaffender/Filmschaffende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2564, "fields": {"name": "Geowissenschaftler/Geowissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2565, "fields": {"name": "Kanonist/Kanonistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2566, "fields": {"name": "Neutestamentler/Neutestamentlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2567, "fields": {"name": "Statiker/Statikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2570, "fields": {"name": "Songwriter/Songwriterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2571, "fields": {"name": "Großunternehmer/Großunternehmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2572, "fields": {"name": "Großadmiral/Großadmiralin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2575, "fields": {"name": "Tiermaler/Tiermalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2578, "fields": {"name": "Oberst/Oberstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2579, "fields": {"name": "Patriot/Patriotin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2580, "fields": {"name": "Sozialarbeiter/Sozialarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2584, "fields": {"name": "Generalvikar/Generalvikarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2586, "fields": {"name": "Bischofsvikar/Bischofsvikarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2587, "fields": {"name": "Religionspädagoge/Religionspädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2588, "fields": {"name": "Staatswissenschaftler/Staatswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2589, "fields": {"name": "Hofkapellmeister/Hofkapellmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2592, "fields": {"name": "Bibliophiler/Bibliophile", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2598, "fields": {"name": "Bassbaritonist/Bassbaritonistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2599, "fields": {"name": "Erwachsenenbildner/Erwachsenenbildnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2600, "fields": {"name": "Moraltheologe/Moraltheologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2601, "fields": {"name": "Schulrat/Schulrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2603, "fields": {"name": "Herpetologe/Herpetologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2604, "fields": {"name": "Pastoraltheologe/Pastoraltheologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2605, "fields": {"name": "Seelsorger/Seelsorgerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2606, "fields": {"name": "Vorstandsmitglied/Vorstandsmitglied", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2608, "fields": {"name": "Verwaltungsrat/Verwaltungsrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2609, "fields": {"name": "Generalstaatsanwalt/Generalstaatsanwältin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2610, "fields": {"name": "Mykologe/Mykologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2611, "fields": {"name": "Kupferschmied/Kupferschmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2612, "fields": {"name": "Kriminologe/Kriminologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2614, "fields": {"name": "Jugendbuchautor/Jugendbuchautorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2615, "fields": {"name": "Romanschriftsteller/Romanschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2618, "fields": {"name": "Eisschnellläufer/Eisschnellläuferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2620, "fields": {"name": "Feinmechaniker/Feinmechanikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2622, "fields": {"name": "Musikethnologe/Musikethnologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2623, "fields": {"name": "Militärwissenschaftler/Militärwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2624, "fields": {"name": "Altist/Altistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2626, "fields": {"name": "Glasmaler/Glasmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2629, "fields": {"name": "Feldmarschall-Leutnant/Feldmarschall-Leutnantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2630, "fields": {"name": "Imker/Imkerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2631, "fields": {"name": "Kontrabassist/Kontrabassistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2633, "fields": {"name": "Statthalter/Statthalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2635, "fields": {"name": "Wasserbauer/Wasserbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2637, "fields": {"name": "Steinmetz/Steinmetzin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2638, "fields": {"name": "Bauer/Bäuerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2639, "fields": {"name": "Miniaturist/Miniaturistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2640, "fields": {"name": "Albanologe/Albanologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2641, "fields": {"name": "Domkapitular/Domkapitularin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2642, "fields": {"name": "Skiläufer/Skiläuferin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2643, "fields": {"name": "Altertumswissenschaftler/Altertumswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2645, "fields": {"name": "Staatsrechtslehrer/Staatsrechtslehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2646, "fields": {"name": "Indogermanist/Indogermanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2647, "fields": {"name": "Agrikulturchemiker/Agrikulturchemikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2649, "fields": {"name": "Mediävist/Mediävistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2651, "fields": {"name": "Kriegsmaler/Kriegsmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2652, "fields": {"name": "Generalmusikdirektor/Generalmusikdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2654, "fields": {"name": "Spion/Spionin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2655, "fields": {"name": "Fernsehredakteur/Fernsehredakteurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2657, "fields": {"name": "Feuerwehrmann/Feuerwehrfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2658, "fields": {"name": "Facharzt/Fachärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2661, "fields": {"name": "Präparator/Präparatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2665, "fields": {"name": "Harfenist/Harfenistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2667, "fields": {"name": "Oberstleutnant/Oberstleutnantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2668, "fields": {"name": "Berufsberater/Berufsberaterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2669, "fields": {"name": "Religionsphilosoph/Religionsphilosophin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2670, "fields": {"name": "Hebraist/Hebraistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2672, "fields": {"name": "Theatertechniker/Theatertechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2673, "fields": {"name": "Weihbischof/Weihbischöfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2677, "fields": {"name": "Geophysiker/Geophysikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2678, "fields": {"name": "Wirt/Wirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2679, "fields": {"name": "Partisan/Partisanin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2680, "fields": {"name": "Hirt/Hirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2684, "fields": {"name": "Radsportler/Radsportlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2686, "fields": {"name": "Ziseleur/Ziseleurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2687, "fields": {"name": "Reitlehrer/Reitlehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2688, "fields": {"name": "Ordensbruder/Ordensschwester", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2689, "fields": {"name": "Orgellehrer/Orgellehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2690, "fields": {"name": "Graveur/Graveurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2692, "fields": {"name": "Superintendent/Superintendentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2694, "fields": {"name": "Militärbeamter/Militärbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2696, "fields": {"name": "Zollbeamter/Zollbeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2698, "fields": {"name": "Laienbruder/", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2699, "fields": {"name": "Volksmusiker/Volksmusikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2700, "fields": {"name": "Militärgeistlicher/Militärgeistliche", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2701, "fields": {"name": "Ausbilder/Ausbilderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2702, "fields": {"name": "Stifter/Stifterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2703, "fields": {"name": "Puppenspieler/Puppenspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2704, "fields": {"name": "Volkssänger/Volkssängerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2705, "fields": {"name": "Zitherspieler/Zitherspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2710, "fields": {"name": "Kirchenmusiker/Kirchenmusikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2711, "fields": {"name": "Archivdirektor/Archivdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2713, "fields": {"name": "Mezzosopranist/Mezzosopranistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2716, "fields": {"name": "Regierungspräsident/Regierungspräsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2717, "fields": {"name": "Kulturanthropologe/Kulturanthropologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2719, "fields": {"name": "Amtsarzt/Amtsärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2720, "fields": {"name": "Elektroingenieur/Elektroingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2721, "fields": {"name": "Hydrobiologe/Hydrobiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2722, "fields": {"name": "Flieger/Fliegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2723, "fields": {"name": "Oberbergrat/Oberbergrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2725, "fields": {"name": "Gartenarchitekt/Gartenarchitektin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2727, "fields": {"name": "Paläograf/Paläografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2728, "fields": {"name": "Forstwirt/Forstwirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2729, "fields": {"name": "Sinologe/Sinologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2730, "fields": {"name": "Brauer und Mälzer/Brauerin und Mälzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2732, "fields": {"name": "Verwaltungswissenschaftler/Verwaltungswissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2734, "fields": {"name": "Turkologe/Turkologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2736, "fields": {"name": "Technischer Zeichner/Technische Zeichnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2737, "fields": {"name": "Pomologe/Pomologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2738, "fields": {"name": "Hausmann/Hausfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2739, "fields": {"name": "Schriftkünstler/Schriftkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2740, "fields": {"name": "Finnougrist/Finnougristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2741, "fields": {"name": "Auslandskorrespondent/Auslandskorrespondentin", "description": "", "parent_class": 686, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2743, "fields": {"name": "Generaloberer/Generaloberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2744, "fields": {"name": "Sagenforscher/Sagenforscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2745, "fields": {"name": "Histologe/Histologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2747, "fields": {"name": "Betriebswirt/Betriebswirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2748, "fields": {"name": "Weltgeistlicher/Weltgeistliche", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2750, "fields": {"name": "Dialektologe/Dialektologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2752, "fields": {"name": "Blechblasinstrumentenbauer/Blechblasinstrumentenbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2753, "fields": {"name": "Esperantist/Esperantistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2755, "fields": {"name": "Propst/Pröpstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2759, "fields": {"name": "Badearzt/Badeärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2760, "fields": {"name": "Kantor/Kantorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2761, "fields": {"name": "Werkstoffwissenschaftler/Werkstoffwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2762, "fields": {"name": "Buchsachverständiger/Buchsachverständigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2763, "fields": {"name": "Kirchenschriftsteller/Kirchenschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2766, "fields": {"name": "Buchkünstler/Buchkünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2768, "fields": {"name": "Militärmusiker/Militärmusikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2769, "fields": {"name": "Medizinhistoriker/Medizinhistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2770, "fields": {"name": "Praktischer Arzt/Praktische Ärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2772, "fields": {"name": "Pfadfinder/Pfadfinderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2773, "fields": {"name": "Sachverständiger/Sachverständigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2774, "fields": {"name": "Metropolit/Metropolitin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2776, "fields": {"name": "Bildungspolitiker/Bildungspolitikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2778, "fields": {"name": "Mathematiklehrer/Mathematiklehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2779, "fields": {"name": "Eisenbahner/Eisenbahnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2781, "fields": {"name": "Winzer/Winzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2782, "fields": {"name": "Gesandter/Gesandte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2785, "fields": {"name": "Ban/Bane", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2787, "fields": {"name": "Katechet/Katechetin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2789, "fields": {"name": "Buchbinder/Buchbinderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2794, "fields": {"name": "Koleopterologe/Koleopterologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2795, "fields": {"name": "Topograf/Topografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2796, "fields": {"name": "Stempelmacher/Stempelmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2797, "fields": {"name": "Schwimmer/Schwimmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2798, "fields": {"name": "Grafikdesigner/Grafikdesignerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2799, "fields": {"name": "Anwalt/Anwältin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2800, "fields": {"name": "Schiffbauer/Schiffbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2801, "fields": {"name": "Kampfflieger/Kampffliegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2803, "fields": {"name": "Wissenschaftsjournalist/Wissenschaftsjournalistin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2804, "fields": {"name": "Tierzüchter/Tierzüchterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2805, "fields": {"name": "Sportwissenschaftler/Sportwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2806, "fields": {"name": "Bergbauer/Bergbäuerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2807, "fields": {"name": "Ethiker/Ethikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2808, "fields": {"name": "Katholischer Religionslehrer/Katholische Religionslehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2812, "fields": {"name": "Genossenschaftsmitglied/Genossenschaftsmitglied", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2814, "fields": {"name": "Folklorist/Folkloristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2815, "fields": {"name": "Reiter/Reiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2816, "fields": {"name": "Forstamtsleiter/Forstamtsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2817, "fields": {"name": "Papyrologe/Papyrologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2821, "fields": {"name": "Reisender/Reisende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2823, "fields": {"name": "Kommunist/Kommunistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2824, "fields": {"name": "Politisch Verfolgter/Politisch Verfolgte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2825, "fields": {"name": "Ringer/Ringerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2827, "fields": {"name": "Weber/Weberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2829, "fields": {"name": "Textiltechniker/Textiltechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2830, "fields": {"name": "Agraringenieur/Agraringenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2831, "fields": {"name": "Iranist/Iranistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2833, "fields": {"name": "Kriegsdienstverweigerer/Kriegsdienstverweigererin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2835, "fields": {"name": "Opernregisseur/Opernregisseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2836, "fields": {"name": "Generalgouverneur/Generalgouverneurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2840, "fields": {"name": "Varietékünstler/Varietékünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2842, "fields": {"name": "Instrumentenbauer/Instrumentenbauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2843, "fields": {"name": "Tierpfleger/Tierpflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2844, "fields": {"name": "Marschall/Marschallin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2845, "fields": {"name": "Ingenieur Luft- und Raumfahrttechnik/Ingenieurin Luft- und\n Raumfahrttechnik", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2847, "fields": {"name": "Turnwart/Turnwartin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2848, "fields": {"name": "Jongleur/Jongleurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2850, "fields": {"name": "Dompropst/Dompropstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2852, "fields": {"name": "Novizenmeister/Novizenmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2853, "fields": {"name": "Hutmacher/Hutmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2854, "fields": {"name": "Jugendpfleger/Jugendpflegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2855, "fields": {"name": "Radfahrer/Radfahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2856, "fields": {"name": "Gerechter unter den Völkern/Gerechte unter den Völkernin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2857, "fields": {"name": "Ehrenamtlicher Richter/Ehrenamtliche Richterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2859, "fields": {"name": "Sensenhändler/Sensenhändlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2860, "fields": {"name": "Börsenhändler/Börsenhändlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2861, "fields": {"name": "Motorradfahrer/Motorradfahrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2862, "fields": {"name": "Gewerbetreibender/Gewerbetreibende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2865, "fields": {"name": "Versicherungsfachangestellter/Versicherungsfachangestellte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2867, "fields": {"name": "Forstarbeiter/Forstarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2869, "fields": {"name": "Silberschmied/Silberschmiedin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2871, "fields": {"name": "Geheimer Rat/Geheime Rätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2872, "fields": {"name": "Verteidigungsminister/Verteidigungsministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2876, "fields": {"name": "Drechsler/Drechslerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2877, "fields": {"name": "Landeshauptmann/Landeshauptfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2878, "fields": {"name": "Major/Majorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2879, "fields": {"name": "Stadtrat/Stadträtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2880, "fields": {"name": "Wirtschaftshistoriker/Wirtschaftshistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2884, "fields": {"name": "Führungskraft/Führungskraft", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2886, "fields": {"name": "Landesamtsdirektor/Landesamtsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2887, "fields": {"name": "Betriebsleiter/Betriebsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2888, "fields": {"name": "Färber/Färberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2889, "fields": {"name": "Impresario/", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2891, "fields": {"name": "Antiquar/Antiquarin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2894, "fields": {"name": "Kommerzienrat/Kommerzienrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2895, "fields": {"name": "Arabist/Arabistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2896, "fields": {"name": "Violinlehrer/Violinlehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2897, "fields": {"name": "Japanologe/Japanologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2898, "fields": {"name": "Parteimitglied/Parteimitglied", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2899, "fields": {"name": "Meeresbiologe/Meeresbiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2900, "fields": {"name": "Maurer/Maurerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2901, "fields": {"name": "Obmann/Obfrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2902, "fields": {"name": "Medium/Medium", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2904, "fields": {"name": "Konteradmiral/Konteradmiralin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2905, "fields": {"name": "Schiffsarzt/Schiffsärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2907, "fields": {"name": "Stadtratsmitglied/Stadtratsmitglied", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2908, "fields": {"name": "Limnologe/Limnologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2909, "fields": {"name": "Uhrmacher/Uhrmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2910, "fields": {"name": "Altorientalist/Altorientalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2911, "fields": {"name": "Wahrsager/Wahrsagerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2912, "fields": {"name": "Hellseher/Hellseherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2913, "fields": {"name": "Patristiker/Patristikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2914, "fields": {"name": "Domprediger/Dompredigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2918, "fields": {"name": "Radio- und Fernsehtechniker/Radio- und Fernsehtechnikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2920, "fields": {"name": "Kriminalbeamter/Kriminalbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2921, "fields": {"name": "Studienrat/Studienrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2922, "fields": {"name": "Fischwirt/Fischwirtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2924, "fields": {"name": "Automobilmechaniker/Automobilmechanikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2925, "fields": {"name": "Akkordeonist/Akkordeonistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2926, "fields": {"name": "Papiermacher/Papiermacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2927, "fields": {"name": "Demograph/Demographin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2928, "fields": {"name": "Comiczeichner/Comiczeichnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2929, "fields": {"name": "Großmeister/Großmeisterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2930, "fields": {"name": "Justizminister/Justizministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2931, "fields": {"name": "Sonderpädagoge/Sonderpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2934, "fields": {"name": "Hämatologe/Hämatologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2935, "fields": {"name": "Animator/Animatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2937, "fields": {"name": "Venerologe/Venerologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2938, "fields": {"name": "Betriebsarzt/Betriebsärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2939, "fields": {"name": "Möbeltischler/Möbeltischlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2940, "fields": {"name": "Holzarbeiter/Holzarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2942, "fields": {"name": "Geräteturner/Geräteturnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2943, "fields": {"name": "Agrarbiologe/Agrarbiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2944, "fields": {"name": "Sektionsleiter/Sektionsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2946, "fields": {"name": "Orthodoxer Theologe/Orthodoxe Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2953, "fields": {"name": "Arbeiterführer/Arbeiterführerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2955, "fields": {"name": "Musikalienhändler/Musikalienhändlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2956, "fields": {"name": "Druckgrafiker/Druckgrafikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2958, "fields": {"name": "Feldherr/Feldherrin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2959, "fields": {"name": "Alchemist/Alchemistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2960, "fields": {"name": "Sozialpädagoge/Sozialpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2961, "fields": {"name": "Seemann/Seefrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2967, "fields": {"name": "Parteivorsitzender/Parteivorsitzende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2968, "fields": {"name": "Militärhistoriker/Militärhistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2972, "fields": {"name": "Staatspräsident/Staatspräsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2974, "fields": {"name": "Kirchenlieddichter/Kirchenlieddichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2975, "fields": {"name": "Sheriff/Sheriffin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2976, "fields": {"name": "Humanist/Humanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2977, "fields": {"name": "Staatsrat/Staatsrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2978, "fields": {"name": "Generalkonsul/Generalkonsulin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2979, "fields": {"name": "Unterstaatssekretär/Unterstaatssekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2981, "fields": {"name": "Bundesminister/Bundesministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2982, "fields": {"name": "Staatsminister/Staatsministerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2983, "fields": {"name": "Domdekan/Domdekanin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2984, "fields": {"name": "Epidemiologe/Epidemiologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2987, "fields": {"name": "Reichsstatthalter/Reichsstatthalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2989, "fields": {"name": "Sprecher/Sprecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2991, "fields": {"name": "Kriminalschriftsteller/Kriminalschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2992, "fields": {"name": "Therapeut/Therapeutin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2993, "fields": {"name": "Mineraliensammler/Mineraliensammlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2994, "fields": {"name": "Standesherr/", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2996, "fields": {"name": "Selbstverleger/Selbstverlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2997, "fields": {"name": "Philanthrop/Philanthropin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 2999, "fields": {"name": "Diktator/Diktatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3000, "fields": {"name": "Anglikanischer Theologe/Anglikanische Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3003, "fields": {"name": "Sattler/Sattlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3004, "fields": {"name": "Ratsherr/Ratsherrin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3006, "fields": {"name": "Theaterdichter/Theaterdichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3009, "fields": {"name": "Landgerichtsdirektor/Landgerichtsdirektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3011, "fields": {"name": "Vergolder/Vergolderin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3012, "fields": {"name": "Homöopath/Homöopathin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3014, "fields": {"name": "Fürstbischof/Fürstbischöfin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3015, "fields": {"name": "Lutherischer Theologe/Lutherische Theologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3017, "fields": {"name": "Textilingenieur/Textilingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3018, "fields": {"name": "Hofprediger/Hofpredigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3019, "fields": {"name": "Laientheologe/Laientheologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3021, "fields": {"name": "Kirchenlehrer/Kirchenlehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3022, "fields": {"name": "Reichstagsabgeordneter/Reichstagsabgeordnete", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3026, "fields": {"name": "Landarbeiter/Landarbeiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3028, "fields": {"name": "Diakon/Diakonin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3029, "fields": {"name": "Konrektor/Konrektorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3031, "fields": {"name": "Dreher/Dreherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3034, "fields": {"name": "Produzent/Produzentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3035, "fields": {"name": "Buchgestalter/Buchgestalterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3036, "fields": {"name": "Rat/Rätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3037, "fields": {"name": "Herrscher/Herrscherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3039, "fields": {"name": "Böttcher/Böttcherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3040, "fields": {"name": "Astrologe/Astrologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3041, "fields": {"name": "Prinzregent/Prinzregentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3045, "fields": {"name": "Glaskünstler/Glaskünstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3047, "fields": {"name": "Kurtisane/Kurtisanin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3049, "fields": {"name": "Kulturpolitiker/Kulturpolitikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3054, "fields": {"name": "Prokurator/Prokuratorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3055, "fields": {"name": "Nuntius/Nuntius", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3056, "fields": {"name": "Produktionsleiter/Produktionsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3057, "fields": {"name": "Kirchenfürst/Kirchenfürstin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3058, "fields": {"name": "Amtsrichter/Amtsrichterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3059, "fields": {"name": "Moderator/Moderatorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3060, "fields": {"name": "Jakobiner/Jakobinerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3061, "fields": {"name": "Päpstlicher Legat/Päpstliche Legatin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3063, "fields": {"name": "Tierschützer/Tierschützerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3064, "fields": {"name": "Nationalheld/Nationalheldin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3065, "fields": {"name": "Augenoptiker/Augenoptikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3066, "fields": {"name": "Oberbaurat/Oberbaurätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3067, "fields": {"name": "Theosoph/Theosophin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3068, "fields": {"name": "Regierungsbeamter/Regierungsbeamte", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3069, "fields": {"name": "Grammatiker/Grammatikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3071, "fields": {"name": "Landrat/Landrätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3072, "fields": {"name": "Marinemaler/Marinemalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3073, "fields": {"name": "Adjutant/Adjutantin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3074, "fields": {"name": "Fischhändler/Fischhändlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3075, "fields": {"name": "Oberbefehlshaber/Oberbefehlshaberin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3078, "fields": {"name": "Korbmacher/Korbmacherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3080, "fields": {"name": "Pietist/Pietistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3081, "fields": {"name": "Heilkundiger/Heilkundige", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3082, "fields": {"name": "Kraftfahrzeugingenieur/Kraftfahrzeugingenieurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3085, "fields": {"name": "Gitarrist/Gitarristin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3086, "fields": {"name": "Kämmerer/Kämmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3087, "fields": {"name": "Exilschriftsteller/Exilschriftstellerin", "description": "", "parent_class": 90, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3088, "fields": {"name": "Bildjournalist/Bildjournalistin", "description": "", "parent_class": 99, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3089, "fields": {"name": "Laienprediger/Laienpredigerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3090, "fields": {"name": "Generalsekretär/Generalsekretärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3091, "fields": {"name": "Reeder/Reederin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3093, "fields": {"name": "Kriegsteilnehmer/Kriegsteilnehmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3094, "fields": {"name": "Kammerdiener/Kammerdienerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3096, "fields": {"name": "Milliardär/Milliardärin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3097, "fields": {"name": "Angler/Anglerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3098, "fields": {"name": "Kalligraph/Kalligraphin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3099, "fields": {"name": "Porzellanmaler/Porzellanmalerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3100, "fields": {"name": "/Mätresse", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3106, "fields": {"name": "wird erwähnt in", "description": "", "parent_class": 1048, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3107, "fields": {"name": "wird hauptsächlich behandelt in", "description": "", "parent_class": 3106, "status": "can", "vocab_name": 8}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3108, "fields": {"name": "X_Zum-Löschen-markiert", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3109, "fields": {"name": "Werk_Namensvariante", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3110, "fields": {"name": "Person_Namensvariante_Nachname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3111, "fields": {"name": "Ort_Namensvariante", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3112, "fields": {"name": "Institution_Namensvariante", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3113, "fields": {"name": "Feuilletonreihe", "description": "", "parent_class": 1407, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3114, "fields": {"name": "Artikel", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3115, "fields": {"name": "Rubrik", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3116, "fields": {"name": "Arzt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3117, "fields": {"name": "Bakteriologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3118, "fields": {"name": "Schiff", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3119, "fields": {"name": "https://www.geonames.org/ontology#H.ESTY", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3120, "fields": {"name": "Journalist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3121, "fields": {"name": "Opernsänger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3122, "fields": {"name": "Opernregisseur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3123, "fields": {"name": "Schauspieler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3124, "fields": {"name": "Theaterintendant", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3125, "fields": {"name": "Hochschullehrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3126, "fields": {"name": "Architekt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3127, "fields": {"name": "Bibliothekar", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3128, "fields": {"name": "Volkskundler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3129, "fields": {"name": "Historiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3130, "fields": {"name": "Schriftsteller/Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3131, "fields": {"name": "Kunsthistoriker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3132, "fields": {"name": "Volkswirt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3133, "fields": {"name": "Unternehmer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3134, "fields": {"name": "Wirtschaftswissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3135, "fields": {"name": "Redakteur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3136, "fields": {"name": "Übersetzer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3137, "fields": {"name": "Theaterkritiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3138, "fields": {"name": "Gerichtsassessor/Gerichtsassessorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3139, "fields": {"name": "Rechtsanwalt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3140, "fields": {"name": "Abgeordneter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3141, "fields": {"name": "Künstler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3142, "fields": {"name": "Maler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3143, "fields": {"name": "Zeichner", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3144, "fields": {"name": "Bildhauer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3145, "fields": {"name": "Illustrator", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3146, "fields": {"name": "Karikaturist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3147, "fields": {"name": "Kaiserlicher Rat/Kaiserliche Rätin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3148, "fields": {"name": "Verleger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3149, "fields": {"name": "Buchhändler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3150, "fields": {"name": "Musiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3151, "fields": {"name": "Librettist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3152, "fields": {"name": "Kämmerer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3153, "fields": {"name": "Bankier", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3154, "fields": {"name": "Gutsherr", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3155, "fields": {"name": "Geologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3156, "fields": {"name": "Jurist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3157, "fields": {"name": "Mäzen", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3158, "fields": {"name": "Regisseur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3159, "fields": {"name": "Dramaturg", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3160, "fields": {"name": "Grafiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3161, "fields": {"name": "Pädagoge", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3162, "fields": {"name": "Autor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3163, "fields": {"name": "Drehbuchautor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3164, "fields": {"name": "Fotograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3165, "fields": {"name": "Drehbuchautorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3166, "fields": {"name": "Filmschauspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3167, "fields": {"name": "Schauspielerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3168, "fields": {"name": "Musikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3169, "fields": {"name": "Sängerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3170, "fields": {"name": "Pfarrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3171, "fields": {"name": "Biologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3172, "fields": {"name": "Juniorprofessur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3173, "fields": {"name": "Sonderpädagogik", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3174, "fields": {"name": "Filmschauspieler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3175, "fields": {"name": "Sprecher", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3176, "fields": {"name": "Antiquar", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3177, "fields": {"name": "Produktionsleiter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3178, "fields": {"name": "Filmproduzent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3179, "fields": {"name": "Pianistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3180, "fields": {"name": "Pathologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3181, "fields": {"name": "Filmregisseur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3182, "fields": {"name": "Schriftsteller/Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3183, "fields": {"name": "Regisseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3184, "fields": {"name": "Dramaturgin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3185, "fields": {"name": "Offizier", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3186, "fields": {"name": "Bariton ", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3187, "fields": {"name": "Sänger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3188, "fields": {"name": "Chemiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3189, "fields": {"name": "Paläograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3190, "fields": {"name": "Mediävist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3191, "fields": {"name": "Theaterregisseur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3192, "fields": {"name": "Produzent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3193, "fields": {"name": "Flugzeugführer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3194, "fields": {"name": "Tanzwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3195, "fields": {"name": "Hochschullehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3196, "fields": {"name": "Amerikanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3197, "fields": {"name": "Tänzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3198, "fields": {"name": "Filmeditor/Filmeditorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3199, "fields": {"name": "Dozent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3200, "fields": {"name": "Germanistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3201, "fields": {"name": "Germanist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3202, "fields": {"name": "Literaturwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3203, "fields": {"name": "Komponist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3204, "fields": {"name": "Philologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3205, "fields": {"name": "Generalkonsul", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3206, "fields": {"name": "Privatdozent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3207, "fields": {"name": "Medienwissenschaftler/Medienwissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3208, "fields": {"name": "Kameramann", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3209, "fields": {"name": "Diplomat", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3210, "fields": {"name": "Kritiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3211, "fields": {"name": "Literaturkritiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3212, "fields": {"name": "Historikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3213, "fields": {"name": "Tänzer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3214, "fields": {"name": "Librettistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3215, "fields": {"name": "Soziologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3216, "fields": {"name": "Kriminologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3217, "fields": {"name": "Sammler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3218, "fields": {"name": "Übersetzerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3219, "fields": {"name": "Publizist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3220, "fields": {"name": "Filmproduzentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3221, "fields": {"name": "Bergsteiger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3222, "fields": {"name": "Hauptmann", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3223, "fields": {"name": "Museumsdirektor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3224, "fields": {"name": "Heraldiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3225, "fields": {"name": "Archäologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3226, "fields": {"name": "Geheimer Rat", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3227, "fields": {"name": "Dramatiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3228, "fields": {"name": "Romancier", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3229, "fields": {"name": "Konservator", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3230, "fields": {"name": "Organist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3231, "fields": {"name": "Schauspiellehrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3232, "fields": {"name": "Theaterdirektor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3233, "fields": {"name": "Funktionär", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3234, "fields": {"name": "Jugendbuchautorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3235, "fields": {"name": "Tanzlehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3236, "fields": {"name": "Ärztin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3237, "fields": {"name": "Kolumnistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3238, "fields": {"name": "Komikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3239, "fields": {"name": "Chorleiter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3240, "fields": {"name": "Musikwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3241, "fields": {"name": "Liederdichter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3242, "fields": {"name": "Produzentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3243, "fields": {"name": "Literarische Agentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3244, "fields": {"name": "Maskenbildner", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3245, "fields": {"name": "Glaskünstler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3246, "fields": {"name": "Zionist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3247, "fields": {"name": "Jazzmusiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3248, "fields": {"name": "Animator ", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3249, "fields": {"name": "Sportler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3250, "fields": {"name": "Pädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3251, "fields": {"name": "Conferencier", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3252, "fields": {"name": "Produktionsleiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3253, "fields": {"name": "Beamter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3254, "fields": {"name": "Choreograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3255, "fields": {"name": "Sachbuchautor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3256, "fields": {"name": "Synchronsprecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3257, "fields": {"name": "Installationskünstler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3258, "fields": {"name": "Objektkünstler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3259, "fields": {"name": "Rockmusiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3260, "fields": {"name": "Lyriker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3261, "fields": {"name": "Literaturwissenschaftlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3262, "fields": {"name": "Chansonnière", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3263, "fields": {"name": "Anglist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3264, "fields": {"name": "Amerikanist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3265, "fields": {"name": "Aufnahmeleiter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3266, "fields": {"name": "Reiterin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3267, "fields": {"name": "Psychotherapeut", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3268, "fields": {"name": "Dirigent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3269, "fields": {"name": "Kunstsammler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3270, "fields": {"name": "Mathematiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3271, "fields": {"name": "Physiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3272, "fields": {"name": "Sportlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3273, "fields": {"name": "Schwimmerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3274, "fields": {"name": "Komiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3275, "fields": {"name": "Biograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3276, "fields": {"name": "Marineoffizier", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3277, "fields": {"name": "Kartograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3278, "fields": {"name": "Ingenieur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3279, "fields": {"name": "Medienpädagogin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3280, "fields": {"name": "Kunsthistorikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3281, "fields": {"name": "Journalistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3282, "fields": {"name": "Romanist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3283, "fields": {"name": "Richter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3284, "fields": {"name": "Heimatkundler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3285, "fields": {"name": "Stenograf", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3286, "fields": {"name": "Fremdsprachenlehrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3287, "fields": {"name": "Psychologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3288, "fields": {"name": "Künstlerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3289, "fields": {"name": "Führungskraft", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3290, "fields": {"name": "Operndirektor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3291, "fields": {"name": "Kaufmann", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3292, "fields": {"name": "Theologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3293, "fields": {"name": "Vizepräsident", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3294, "fields": {"name": "Lehrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3295, "fields": {"name": "Fotografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3296, "fields": {"name": "Pfarrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3297, "fields": {"name": "Musicaldarsteller", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3298, "fields": {"name": "Stylist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3299, "fields": {"name": "Sopranistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3300, "fields": {"name": "Hofrat", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3301, "fields": {"name": "Linguistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3302, "fields": {"name": "Kommunikationswissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3303, "fields": {"name": "Musicaldarstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3304, "fields": {"name": "Filmwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3305, "fields": {"name": "Herausgeber", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3306, "fields": {"name": "Humorist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3307, "fields": {"name": "Apotheker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3308, "fields": {"name": "Drogist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3309, "fields": {"name": "Naturwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3310, "fields": {"name": "Clown", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3311, "fields": {"name": "Geistlicher", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3312, "fields": {"name": "Kinderbuchautor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3313, "fields": {"name": "Spion", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3314, "fields": {"name": "Kabarettist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3315, "fields": {"name": "Kabarettistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3316, "fields": {"name": "Soubrette", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3317, "fields": {"name": "Philosoph", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3318, "fields": {"name": "Überläufer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3319, "fields": {"name": "Slawist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3320, "fields": {"name": "Kunsthandwerkerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3321, "fields": {"name": "Sozialpädagoge", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3322, "fields": {"name": "Filmarchitekt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3323, "fields": {"name": "Tierarzt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3324, "fields": {"name": "Wissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3325, "fields": {"name": "Balletttänzer/Balletttänzerin", "description": "", "parent_class": 190, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3326, "fields": {"name": "Ingenieurin Biotechnologie", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3327, "fields": {"name": "Pharmazeutin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3328, "fields": {"name": "Grafikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3329, "fields": {"name": "Designerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3330, "fields": {"name": "Illustratorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3331, "fields": {"name": "Lyrikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3332, "fields": {"name": "Kunstkritikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3333, "fields": {"name": "Malerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3334, "fields": {"name": "Astrologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3335, "fields": {"name": "Wissenschaftshistoriker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3336, "fields": {"name": "Linguist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3337, "fields": {"name": "Mathematikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3338, "fields": {"name": "Lektor ", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3339, "fields": {"name": "Regieassistent", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3340, "fields": {"name": "Betriebswirt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3341, "fields": {"name": "Gouverneur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3342, "fields": {"name": "Dramatikerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3343, "fields": {"name": "Anthropologin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3344, "fields": {"name": "Publizistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3345, "fields": {"name": "Sprecherin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3346, "fields": {"name": "Akrobat", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3347, "fields": {"name": "Heilpraktiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3348, "fields": {"name": "Theaterwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3349, "fields": {"name": "Choreografin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3350, "fields": {"name": "Polizeibeamtin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3351, "fields": {"name": "Ehefrau", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3352, "fields": {"name": "Kinderbuchautorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3353, "fields": {"name": "Designer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3354, "fields": {"name": "Grafikdesigner", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3355, "fields": {"name": "Missionar", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3356, "fields": {"name": "Filmregisseurin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3357, "fields": {"name": "Abt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3358, "fields": {"name": "Chronist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3359, "fields": {"name": "Staatsanwalt", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3360, "fields": {"name": "Psychiater", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3361, "fields": {"name": "Psychologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3362, "fields": {"name": "Tenor ", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3363, "fields": {"name": "Bloggerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3364, "fields": {"name": "Influencerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3365, "fields": {"name": "Forschungsreisender", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3366, "fields": {"name": "Kapitän", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3367, "fields": {"name": "Bildhauerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3368, "fields": {"name": "Filmschaffender", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3369, "fields": {"name": "Schachspieler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3370, "fields": {"name": "Großmeister ", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3371, "fields": {"name": "Arrangeur", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3372, "fields": {"name": "Geiger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3373, "fields": {"name": "Botaniker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3374, "fields": {"name": "Songwriter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3375, "fields": {"name": "Drucker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3376, "fields": {"name": "Bläser", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3377, "fields": {"name": "Stadtpfeifer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3378, "fields": {"name": "Weibliche Filmschaffende", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3379, "fields": {"name": "Jagdflieger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3380, "fields": {"name": "Heimatschriftsteller/Heimatschriftstellerin", "description": "", "parent_class": 2217, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3381, "fields": {"name": "Politologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3382, "fields": {"name": "Violoncellist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3383, "fields": {"name": "Informatiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3384, "fields": {"name": "Autorin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3385, "fields": {"name": "Beleuchter", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3386, "fields": {"name": "Biochemiker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3387, "fields": {"name": "Bühnenbildner", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3388, "fields": {"name": "Synchronsprecher", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3389, "fields": {"name": "Verlegerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3390, "fields": {"name": "Halbmonatsschrift", "description": "", "parent_class": 1219, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3391, "fields": {"name": "Zweimonatsschrift", "description": "", "parent_class": 1219, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3392, "fields": {"name": "sk_preferred-name_surname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3393, "fields": {"name": "Person_Namensvariante_Vorname", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3394, "fields": {"name": "sk_preferred-name_forename", "description": "", "parent_class": null, "status": "can", "vocab_name": 3}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3395, "fields": {"name": "Editionswissenschaftler/Editionswissenschaftlerin", "description": "", "parent_class": 959, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3396, "fields": {"name": "Einzelne-Ausgabe", "description": "", "parent_class": 1220, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3397, "fields": {"name": "Einzelne-Ausgabe", "description": "", "parent_class": 3391, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3398, "fields": {"name": "Einzelne-Ausgabe", "description": "", "parent_class": 1221, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3399, "fields": {"name": "Einzelne-Ausgabe", "description": "", "parent_class": 3390, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3400, "fields": {"name": "Einzelne-Ausgabe", "description": "", "parent_class": 1222, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3401, "fields": {"name": "Anekdote", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3402, "fields": {"name": "ist biologisches Elternteil von", "description": "", "parent_class": 1109, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3403, "fields": {"name": "ist biologisches Kind von", "description": "", "parent_class": 1120, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3404, "fields": {"name": "Militär", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3405, "fields": {"name": "Rennstall", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3406, "fields": {"name": "Feministin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3407, "fields": {"name": "Musiklehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3408, "fields": {"name": "https://www.geonames.org/ontology#S.WALL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3409, "fields": {"name": "https://www.geonames.org/ontology#L.PRT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3410, "fields": {"name": "Oberlehrer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3411, "fields": {"name": "Literarhistoriker", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3412, "fields": {"name": "Bergbauunternehmer/Bergbauunternehmerin", "description": "", "parent_class": 913, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3413, "fields": {"name": "Beerdigung", "description": "", "parent_class": null, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3414, "fields": {"name": "Versicherungsgesellschaft", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3415, "fields": {"name": "Lernender/Lernende an", "description": "", "parent_class": null, "status": "can", "vocab_name": 13}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3416, "fields": {"name": "/Anstandsdame", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3417, "fields": {"name": "Place of Birth", "description": "", "parent_class": null, "status": "can", "vocab_name": 4}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3418, "fields": {"name": "Kulturwissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3420, "fields": {"name": "Sonderheft", "description": "", "parent_class": 1218, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3421, "fields": {"name": "Schriftsteller", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3422, "fields": {"name": "Leutnant", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3423, "fields": {"name": "Schriftstellerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3424, "fields": {"name": "Nobelpreisträger", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3425, "fields": {"name": "Pazifist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3426, "fields": {"name": "Humanist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3427, "fields": {"name": "Kunsterzieher", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3428, "fields": {"name": "Radierer", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3429, "fields": {"name": "ist Vormund von", "description": "", "parent_class": null, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3430, "fields": {"name": "https://www.geonames.org/ontology#S.MNMT", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3431, "fields": {"name": "https://www.geonames.org/ontology#S.TMPL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3432, "fields": {"name": "https://www.geonames.org/ontology#R.TRL", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3433, "fields": {"name": "https://www.geonames.org/ontology#S.BLDG", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3434, "fields": {"name": "Staatswissenschaftler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3435, "fields": {"name": "Bankett", "description": "", "parent_class": 1367, "status": "can", "vocab_name": 17}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3436, "fields": {"name": "Pantomime/Pantomimin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3437, "fields": {"name": "Pianist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3438, "fields": {"name": "Bordell", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3439, "fields": {"name": "vorangegangen", "description": "", "parent_class": null, "status": "can", "vocab_name": 33}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3440, "fields": {"name": "nachgefolgt", "description": "", "parent_class": null, "status": "can", "vocab_name": 33}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3441, "fields": {"name": "Klassischer Philologe", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3442, "fields": {"name": "Ordination", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3443, "fields": {"name": "Gerichtshof", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3444, "fields": {"name": "Novellette", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3445, "fields": {"name": "Kurzgeschichte", "description": "", "parent_class": null, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3446, "fields": {"name": "erwähnt", "description": "", "parent_class": null, "status": "can", "vocab_name": 11}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3447, "fields": {"name": "Gefängnis", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3448, "fields": {"name": "Judaist", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3449, "fields": {"name": "Kunsthändler", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3450, "fields": {"name": "Ministerpräsident/Ministerpräsidentin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3451, "fields": {"name": "https://www.geonames.org/ontology#S.OPRA", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3452, "fields": {"name": "https://www.geonames.org/ontology#T.BCH", "description": "", "parent_class": null, "status": "can", "vocab_name": 2}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3453, "fields": {"name": "Hoteldirektor", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3454, "fields": {"name": "Stimmbildner/Stimmbildnerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3455, "fields": {"name": "Opernsängerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3456, "fields": {"name": "Mezzosopranistin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3457, "fields": {"name": "Gesangslehrerin", "description": "", "parent_class": null, "status": "can", "vocab_name": 5}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3458, "fields": {"name": "Unternehmen", "description": "", "parent_class": null, "status": "can", "vocab_name": 7}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3459, "fields": {"name": "ist Stiefgeschwister von", "description": "", "parent_class": 1110, "status": "can", "vocab_name": 10}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3460, "fields": {"name": "Briefroman", "description": "", "parent_class": 1060, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3461, "fields": {"name": "Literaturverfilmung", "description": "", "parent_class": 1066, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.vocabsbaseclass", "pk": 3462, "fields": {"name": "Musikdrama", "description": "", "parent_class": 1097, "status": "can", "vocab_name": 9}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 88, "fields": {"name_reverse": "Geburtsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 89, "fields": {"name_reverse": "Sterbeort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 970, "fields": {"name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 971, "fields": {"name_reverse": "gehört zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1048, "fields": {"name_reverse": "steht in Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1049, "fields": {"name_reverse": "geschaffen von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1050, "fields": {"name_reverse": "ohne Autornennung verfasst von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1051, "fields": {"name_reverse": "unter Pseudonym veröffentlicht von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1052, "fields": {"name_reverse": "übersetzt von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1053, "fields": {"name_reverse": "herausgegeben von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1106, "fields": {"name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1109, "fields": {"name_reverse": "ist Kind von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1110, "fields": {"name_reverse": "ist verwandt zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1111, "fields": {"name_reverse": "ist Neffe/Nichte von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1112, "fields": {"name_reverse": "ist Cousin/Cousine von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1113, "fields": {"name_reverse": "ist adoptiertes Kind von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1114, "fields": {"name_reverse": "in intimer Beziehung zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1115, "fields": {"name_reverse": "ist verheiratet mit"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1116, "fields": {"name_reverse": "ist Geschwister von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1117, "fields": {"name_reverse": "ist Enkel von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1118, "fields": {"name_reverse": "ist verschwägert mit"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1120, "fields": {"name_reverse": "ist Elternteil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1121, "fields": {"name_reverse": "ist Großelternteil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1122, "fields": {"name_reverse": "ist adoptiertes Elternteil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1132, "fields": {"name_reverse": "wird rezensiert in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1133, "fields": {"name_reverse": "wurde bearbeitet als"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1136, "fields": {"name_reverse": ""}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1138, "fields": {"name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1139, "fields": {"name_reverse": "enthalten in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1140, "fields": {"name_reverse": "Arbeitsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1141, "fields": {"name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1143, "fields": {"name_reverse": "in Beziehung zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1144, "fields": {"name_reverse": "ist mit Vorwort/Nachwort versehen von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1147, "fields": {"name_reverse": "Geburtsort"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1148, "fields": {"name_reverse": "Sterbeort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1150, "fields": {"name_reverse": "im Eigentum von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1153, "fields": {"name_reverse": "in Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1158, "fields": {"name_reverse": "Vorgänger war"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1159, "fields": {"name_reverse": "aufgegangen in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1160, "fields": {"name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1161, "fields": {"name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1162, "fields": {"name_reverse": "enthalten in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1165, "fields": {"name_reverse": "in Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1169, "fields": {"name_reverse": "ist geschieden von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1170, "fields": {"name_reverse": "hinterlässt durch Tod"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1171, "fields": {"name_reverse": "ist durch Tod getrennt von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1173, "fields": {"name_reverse": "ist Stiefelternteil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1174, "fields": {"name_reverse": "ist Stiefkind von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1175, "fields": {"name_reverse": "ist Onkel/Tante von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1176, "fields": {"name_reverse": "im Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1177, "fields": {"name_reverse": "Freundschaft"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1178, "fields": {"name_reverse": "ist Arbeitgeber/Arbeitgeberin für"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1179, "fields": {"name_reverse": "hat als Staatsangehörigen"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1181, "fields": {"name_reverse": "war Aufenthaltsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1182, "fields": {"name_reverse": "hat als Arbeitskraft"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1184, "fields": {"name_reverse": "ist eine Rezension von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1185, "fields": {"name_reverse": "ist eine Bearbeitung von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1186, "fields": {"name_reverse": "arbeitet zusammen mit"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1187, "fields": {"name_reverse": "enthält das Grab von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1189, "fields": {"name_reverse": "ist eine spätere Fassung von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1190, "fields": {"name_reverse": "ist eine frühere Fassung von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1192, "fields": {"name_reverse": "in Relation zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1193, "fields": {"name_reverse": "hatte am Spielplan"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1194, "fields": {"name_reverse": "aufgeführt am"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1201, "fields": {"name_reverse": "wurde aufgeführt"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1202, "fields": {"name_reverse": "veranstaltet in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1204, "fields": {"name_reverse": "hatte Uraufführung"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1206, "fields": {"name_reverse": "hatte Premiere"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1217, "fields": {"name_reverse": "vertont durch"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1224, "fields": {"name_reverse": "enthält einen Beitrag von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1225, "fields": {"name_reverse": "vorangegangen ist"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1233, "fields": {"name_reverse": "fortgeführt als"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1237, "fields": {"name_reverse": ""}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1244, "fields": {"name_reverse": ""}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1247, "fields": {"name_reverse": "arbeitet für"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1252, "fields": {"name_reverse": "hatte Vortrag/Vorlesung"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1256, "fields": {"name_reverse": "hat als Arbeitskraft"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1294, "fields": {"name_reverse": "Deportationsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1309, "fields": {"name_reverse": "ist Großonkel/Großtante von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1310, "fields": {"name_reverse": "ist Großneffe/Großnichte von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1335, "fields": {"name_reverse": "wird zugeschrieben an"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1338, "fields": {"name_reverse": "erschienen in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1351, "fields": {"name_reverse": "veranstaltet von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1363, "fields": {"name_reverse": "übersetzt als"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1369, "fields": {"name_reverse": "veranstaltet in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1370, "fields": {"name_reverse": "hat als Teilnehmer:in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1371, "fields": {"name_reverse": "rezensiert"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1385, "fields": {"name_reverse": "in Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1398, "fields": {"name_reverse": "Geburtsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1405, "fields": {"name_reverse": "in beruflichem Bezug zu"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1409, "fields": {"name_reverse": "steht im Eigentum von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1424, "fields": {"name_reverse": "ist Schüler/Schülerin von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1510, "fields": {"name_reverse": "Geburtsort"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1516, "fields": {"name_reverse": "enthält"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1517, "fields": {"name_reverse": "ist Teil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1523, "fields": {"name_reverse": "ist Halbgeschwister von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1527, "fields": {"name_reverse": "Probe"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1528, "fields": {"name_reverse": "Generalprobe"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1530, "fields": {"name_reverse": "ist Lehrer/Lehrerin von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1534, "fields": {"name_reverse": "wird unterstützt von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1549, "fields": {"name_reverse": "enthalten in"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1553, "fields": {"name_reverse": "illustriert von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1587, "fields": {"name_reverse": "mit Kürzel veröffentlicht von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1657, "fields": {"name_reverse": "Geburtsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1884, "fields": {"name_reverse": "ist eine Übersetzung von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1900, "fields": {"name_reverse": "vielleicht der Geburtsort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 1901, "fields": {"name_reverse": "vielleicht der Sterbeort von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 2253, "fields": {"name_reverse": "Wohnadresse von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3106, "fields": {"name_reverse": "erwähnt"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3107, "fields": {"name_reverse": "behandelt hauptsächlich"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3402, "fields": {"name_reverse": "ist biologisches Kind von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3403, "fields": {"name_reverse": "ist biologisches Elternteil von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3415, "fields": {"name_reverse": "Unterricht für"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3417, "fields": {"name_reverse": "Place of Birth [REVERSE]"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3429, "fields": {"name_reverse": "steht unter Vormundschaft von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3439, "fields": {"name_reverse": "nachgefolgt"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3440, "fields": {"name_reverse": "vorangegangen"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3446, "fields": {"name_reverse": "enthält Erwähnung von"}}, {"model": "apis_vocabularies.relationbaseclass", "pk": 3459, "fields": {"name_reverse": "ist Stiefgeschwister von"}}, {"model": "apis_vocabularies.worktype", "pk": 1054, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1055, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1056, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1057, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1058, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1059, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1060, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1062, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1063, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1064, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1065, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1066, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1067, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1068, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1069, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1070, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1071, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1072, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1073, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1074, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1075, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1076, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1077, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1078, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1079, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1080, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1081, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1082, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1083, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1084, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1085, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1086, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1087, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1089, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1091, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1092, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1093, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1094, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1095, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1096, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1097, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1098, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1099, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1100, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1129, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1130, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1131, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1142, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1149, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1154, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1155, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1156, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1157, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1163, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1164, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1168, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1191, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1207, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1208, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1209, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1210, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1211, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1212, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1213, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1215, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1216, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1218, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1219, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1220, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1221, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1222, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1223, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1226, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1227, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1228, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1229, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1232, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1250, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1251, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1333, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1334, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1336, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1337, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1340, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1342, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1343, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1344, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1346, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1347, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1348, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1349, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1350, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1352, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1356, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1357, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1358, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1361, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1373, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1376, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1377, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1384, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1386, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1392, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1394, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1406, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1407, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1408, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1421, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1476, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1477, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1478, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1493, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1497, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1498, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1521, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1525, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1531, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1548, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1554, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1590, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1597, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1598, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1599, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1603, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1613, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1622, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1637, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1640, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1647, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1666, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1676, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1677, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1678, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1680, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1681, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1688, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1717, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1772, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1773, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1779, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1789, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1790, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1791, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1792, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1793, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1794, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1795, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1796, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1797, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1798, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1799, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1800, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1801, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1802, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1803, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1804, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1805, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1806, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1807, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1808, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1809, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1810, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1811, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1812, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1816, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1834, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1835, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1882, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1926, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1927, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1953, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 1982, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 2002, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 2057, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 2059, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 2073, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 2078, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 2079, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3113, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3114, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3115, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3390, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3391, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3396, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3397, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3398, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3399, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3400, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3401, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3420, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3444, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3445, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3460, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3461, "fields": {}}, {"model": "apis_vocabularies.worktype", "pk": 3462, "fields": {}}, {"model": "apis_vocabularies.title", "pk": 1261, "fields": {"abbreviation": ""}}, {"model": "apis_vocabularies.title", "pk": 1557, "fields": {"abbreviation": ""}}, {"model": "apis_vocabularies.title", "pk": 1558, "fields": {"abbreviation": ""}}, {"model": "apis_vocabularies.title", "pk": 1559, "fields": {"abbreviation": ""}}, {"model": "apis_vocabularies.title", "pk": 1560, "fields": {"abbreviation": ""}}, {"model": "apis_vocabularies.professiontype", "pk": 90, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 94, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 95, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 97, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 99, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 100, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 102, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 103, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 104, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 105, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 106, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 107, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 109, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 110, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 111, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 112, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 113, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 114, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 115, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 116, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 117, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 119, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 120, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 121, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 126, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 127, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 128, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 129, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 130, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 131, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 132, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 134, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 136, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 140, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 142, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 144, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 145, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 148, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 150, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 151, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 152, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 153, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 154, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 155, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 157, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 158, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 159, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 160, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 161, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 162, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 163, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 164, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 167, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 168, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 169, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 170, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 171, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 173, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 174, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 175, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 176, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 178, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 180, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 181, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 184, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 185, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 186, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 188, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 189, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 190, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 192, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 193, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 194, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 195, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 196, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 197, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 198, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 199, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 200, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 201, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 202, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 203, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 204, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 205, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 206, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 207, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 208, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 210, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 211, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 212, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 213, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 215, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 216, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 223, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 224, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 225, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 228, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 229, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 231, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 232, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 234, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 235, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 237, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 239, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 240, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 241, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 242, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 244, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 246, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 247, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 248, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 250, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 251, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 253, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 255, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 256, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 259, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 260, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 261, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 263, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 264, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 266, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 267, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 270, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 272, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 273, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 274, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 275, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 276, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 277, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 279, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 280, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 281, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 282, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 283, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 284, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 285, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 286, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 287, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 290, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 291, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 292, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 293, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 294, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 295, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 296, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 297, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 298, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 300, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 302, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 304, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 305, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 307, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 309, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 310, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 311, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 313, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 314, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 315, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 316, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 317, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 318, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 321, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 322, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 323, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 324, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 325, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 326, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 327, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 328, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 329, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 331, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 332, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 333, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 334, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 335, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 336, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 338, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 339, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 340, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 341, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 343, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 344, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 345, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 346, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 348, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 350, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 351, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 352, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 353, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 354, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 356, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 358, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 359, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 360, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 361, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 362, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 363, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 364, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 365, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 366, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 367, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 368, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 369, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 370, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 372, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 373, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 374, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 375, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 376, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 378, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 379, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 380, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 381, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 382, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 385, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 386, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 387, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 388, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 390, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 391, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 393, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 395, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 396, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 398, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 399, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 400, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 401, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 404, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 406, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 409, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 410, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 411, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 413, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 414, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 415, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 416, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 417, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 419, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 420, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 421, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 422, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 424, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 425, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 426, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 428, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 429, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 430, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 431, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 433, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 434, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 436, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 437, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 438, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 440, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 441, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 442, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 443, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 445, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 446, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 447, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 448, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 449, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 450, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 451, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 453, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 454, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 457, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 458, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 460, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 461, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 463, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 464, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 465, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 467, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 468, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 469, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 472, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 473, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 474, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 477, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 478, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 479, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 481, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 482, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 484, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 485, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 486, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 487, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 488, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 489, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 491, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 492, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 493, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 495, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 496, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 503, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 504, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 505, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 506, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 511, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 512, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 513, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 514, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 515, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 522, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 523, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 524, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 525, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 527, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 528, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 530, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 531, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 532, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 533, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 535, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 536, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 537, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 538, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 540, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 541, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 542, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 544, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 547, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 550, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 551, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 552, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 553, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 554, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 556, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 559, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 560, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 561, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 562, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 564, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 565, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 567, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 568, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 570, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 572, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 574, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 575, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 576, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 577, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 578, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 580, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 581, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 582, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 583, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 584, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 585, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 586, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 587, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 588, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 589, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 590, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 591, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 592, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 593, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 595, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 596, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 597, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 600, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 601, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 602, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 604, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 605, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 607, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 608, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 609, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 610, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 611, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 612, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 615, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 616, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 617, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 618, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 619, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 623, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 624, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 627, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 628, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 629, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 632, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 633, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 635, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 636, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 638, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 640, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 641, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 642, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 643, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 644, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 645, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 646, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 647, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 648, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 649, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 650, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 651, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 654, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 655, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 656, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 657, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 658, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 659, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 666, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 667, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 669, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 670, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 671, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 673, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 674, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 676, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 677, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 678, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 679, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 681, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 683, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 684, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 685, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 686, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 687, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 688, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 689, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 692, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 693, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 695, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 696, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 698, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 700, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 701, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 702, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 704, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 706, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 708, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 709, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 710, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 711, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 712, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 713, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 715, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 716, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 717, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 719, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 721, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 722, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 723, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 725, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 726, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 727, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 728, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 732, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 733, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 734, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 735, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 737, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 739, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 740, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 743, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 744, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 745, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 746, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 748, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 749, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 750, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 752, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 753, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 755, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 756, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 757, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 760, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 761, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 762, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 763, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 764, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 765, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 766, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 767, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 768, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 770, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 771, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 775, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 776, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 779, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 780, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 782, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 783, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 785, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 786, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 787, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 788, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 791, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 793, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 795, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 796, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 797, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 798, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 799, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 800, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 801, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 803, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 805, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 806, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 807, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 811, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 812, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 813, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 814, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 816, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 817, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 818, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 819, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 820, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 821, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 824, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 826, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 830, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 831, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 833, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 834, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 836, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 838, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 842, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 844, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 845, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 854, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 862, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 863, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 864, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 866, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 867, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 873, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 875, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 879, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 885, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 896, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 903, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 905, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 906, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 907, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 909, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 911, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 913, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 917, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 918, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 919, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 920, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 921, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 922, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 923, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 926, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 929, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 931, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 932, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 935, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 936, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 938, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 939, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 940, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 941, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 943, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 944, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 945, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 946, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 949, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 950, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 952, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 953, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 958, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 959, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 961, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 962, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 963, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 964, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 967, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 968, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 969, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1172, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1245, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1246, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1248, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1259, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1263, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1264, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1265, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1267, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1269, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1270, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1271, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1272, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1273, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1274, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1275, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1276, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1279, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1280, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1281, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1282, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1283, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1286, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1289, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1290, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1292, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1293, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1299, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1300, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1301, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1303, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1304, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1305, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1306, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1307, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1311, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1312, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1315, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1316, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1317, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1318, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1319, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1320, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1321, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1322, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1323, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1324, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1327, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1328, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1329, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1331, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1339, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1341, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1355, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1365, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1379, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1381, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1383, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1390, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1391, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1393, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1397, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1400, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1404, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1422, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1423, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1425, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1430, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1432, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1433, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1444, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1449, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1450, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1452, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1458, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1459, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1468, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1472, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1473, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1494, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1501, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1503, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1506, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1535, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1540, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1544, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1556, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1562, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1584, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1588, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1591, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1601, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1602, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1609, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1619, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1628, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1639, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1650, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1654, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1658, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1660, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1661, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1665, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1679, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1683, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1692, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1693, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1708, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1739, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1748, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1774, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1786, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1837, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1838, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1839, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1866, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1870, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1878, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1879, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1883, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1886, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1887, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1888, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1889, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1890, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1891, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1892, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1893, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1894, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1895, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1896, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1897, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 1918, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2088, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2090, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2098, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2099, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2100, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2101, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2102, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2105, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2107, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2109, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2110, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2112, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2118, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2119, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2120, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2124, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2125, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2126, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2129, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2130, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2134, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2137, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2138, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2139, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2140, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2150, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2154, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2156, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2159, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2160, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2162, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2163, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2165, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2167, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2169, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2176, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2177, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2180, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2182, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2184, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2186, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2187, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2194, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2195, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2197, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2199, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2204, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2205, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2207, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2217, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2221, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2222, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2224, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2225, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2230, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2231, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2232, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2234, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2237, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2239, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2242, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2246, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2250, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2251, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2254, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2261, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2264, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2267, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2270, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2271, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2279, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2281, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2284, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2286, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2289, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2290, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2291, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2292, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2295, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2297, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2298, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2304, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2308, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2309, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2310, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2311, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2312, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2313, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2317, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2318, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2319, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2321, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2325, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2327, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2328, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2337, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2338, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2339, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2340, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2341, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2343, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2345, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2346, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2347, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2355, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2357, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2358, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2359, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2361, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2365, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2368, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2369, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2372, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2374, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2378, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2379, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2381, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2384, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2385, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2386, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2388, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2390, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2393, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2394, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2395, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2398, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2401, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2404, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2405, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2406, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2409, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2411, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2412, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2414, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2419, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2421, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2424, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2426, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2427, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2432, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2433, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2434, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2436, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2438, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2439, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2440, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2441, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2442, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2443, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2444, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2445, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2446, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2448, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2449, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2450, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2455, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2458, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2459, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2460, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2464, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2465, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2466, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2467, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2470, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2478, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2480, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2481, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2482, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2483, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2484, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2486, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2488, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2496, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2497, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2502, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2504, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2505, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2506, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2507, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2508, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2509, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2510, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2511, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2513, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2515, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2517, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2518, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2519, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2521, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2522, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2523, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2524, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2526, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2527, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2528, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2529, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2534, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2535, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2536, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2537, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2540, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2542, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2543, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2544, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2547, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2550, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2551, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2552, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2553, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2554, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2557, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2558, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2559, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2560, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2561, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2564, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2565, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2566, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2567, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2570, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2571, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2572, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2575, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2578, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2579, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2580, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2584, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2586, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2587, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2588, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2589, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2592, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2598, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2599, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2600, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2601, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2603, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2604, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2605, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2606, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2608, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2609, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2610, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2611, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2612, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2614, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2615, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2618, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2620, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2622, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2623, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2624, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2626, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2629, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2630, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2631, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2633, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2635, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2637, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2638, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2639, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2640, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2641, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2642, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2643, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2645, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2646, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2647, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2649, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2651, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2652, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2654, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2655, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2657, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2658, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2661, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2665, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2667, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2668, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2669, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2670, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2672, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2673, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2677, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2678, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2679, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2680, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2684, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2686, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2687, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2688, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2689, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2690, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2692, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2694, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2696, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2698, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2699, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2700, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2701, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2702, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2703, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2704, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2705, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2710, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2711, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2713, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2716, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2717, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2719, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2720, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2721, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2722, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2723, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2725, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2727, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2728, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2729, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2730, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2732, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2734, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2736, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2737, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2738, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2739, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2740, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2741, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2743, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2744, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2745, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2747, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2748, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2750, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2752, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2753, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2755, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2759, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2760, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2761, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2762, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2763, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2766, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2768, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2769, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2770, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2772, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2773, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2774, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2776, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2778, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2779, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2781, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2782, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2785, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2787, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2789, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2794, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2795, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2796, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2797, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2798, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2799, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2800, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2801, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2803, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2804, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2805, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2806, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2807, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2808, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2812, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2814, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2815, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2816, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2817, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2821, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2823, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2824, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2825, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2827, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2829, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2830, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2831, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2833, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2835, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2836, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2840, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2842, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2843, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2844, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2845, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2847, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2848, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2850, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2852, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2853, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2854, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2855, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2856, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2857, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2859, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2860, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2861, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2862, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2865, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2867, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2869, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2871, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2872, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2876, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2877, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2878, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2879, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2880, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2884, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2886, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2887, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2888, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2889, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2891, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2894, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2895, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2896, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2897, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2898, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2899, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2900, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2901, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2902, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2904, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2905, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2907, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2908, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2909, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2910, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2911, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2912, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2913, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2914, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2918, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2920, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2921, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2922, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2924, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2925, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2926, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2927, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2928, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2929, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2930, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2931, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2934, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2935, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2937, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2938, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2939, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2940, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2942, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2943, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2944, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2946, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2953, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2955, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2956, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2958, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2959, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2960, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2961, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2967, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2968, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2972, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2974, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2975, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2976, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2977, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2978, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2979, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2981, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2982, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2983, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2984, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2987, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2989, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2991, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2992, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2993, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2994, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2996, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2997, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 2999, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3000, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3003, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3004, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3006, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3009, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3011, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3012, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3014, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3015, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3017, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3018, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3019, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3021, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3022, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3026, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3028, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3029, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3031, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3034, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3035, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3036, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3037, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3039, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3040, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3041, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3045, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3047, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3049, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3054, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3055, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3056, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3057, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3058, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3059, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3060, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3061, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3063, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3064, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3065, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3066, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3067, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3068, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3069, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3071, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3072, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3073, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3074, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3075, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3078, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3080, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3081, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3082, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3085, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3086, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3087, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3088, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3089, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3090, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3091, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3093, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3094, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3096, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3097, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3098, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3099, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3100, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3116, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3117, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3120, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3121, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3122, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3123, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3124, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3125, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3126, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3127, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3128, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3129, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3130, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3131, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3132, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3133, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3134, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3135, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3136, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3137, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3138, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3139, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3140, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3141, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3142, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3143, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3144, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3145, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3146, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3147, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3148, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3149, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3150, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3151, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3152, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3153, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3154, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3155, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3156, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3157, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3158, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3159, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3160, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3161, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3162, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3163, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3164, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3165, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3166, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3167, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3168, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3169, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3170, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3171, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3172, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3173, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3174, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3175, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3176, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3177, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3178, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3179, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3180, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3181, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3182, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3183, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3184, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3185, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3186, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3187, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3188, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3189, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3190, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3191, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3192, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3193, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3194, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3195, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3196, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3197, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3198, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3199, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3200, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3201, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3202, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3203, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3204, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3205, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3206, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3207, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3208, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3209, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3210, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3211, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3212, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3213, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3214, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3215, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3216, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3217, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3218, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3219, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3220, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3221, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3222, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3223, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3224, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3225, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3226, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3227, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3228, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3229, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3230, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3231, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3232, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3233, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3234, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3235, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3236, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3237, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3238, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3239, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3240, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3241, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3242, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3243, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3244, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3245, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3246, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3247, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3248, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3249, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3250, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3251, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3252, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3253, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3254, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3255, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3256, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3257, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3258, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3259, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3260, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3261, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3262, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3263, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3264, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3265, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3266, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3267, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3268, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3269, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3270, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3271, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3272, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3273, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3274, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3275, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3276, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3277, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3278, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3279, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3280, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3281, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3282, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3283, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3284, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3285, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3286, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3287, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3288, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3289, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3290, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3291, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3292, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3293, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3294, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3295, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3296, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3297, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3298, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3299, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3300, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3301, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3302, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3303, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3304, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3305, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3306, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3307, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3308, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3309, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3310, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3311, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3312, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3313, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3314, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3315, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3316, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3317, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3318, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3319, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3320, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3321, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3322, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3323, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3324, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3325, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3326, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3327, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3328, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3329, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3330, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3331, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3332, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3333, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3334, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3335, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3336, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3337, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3338, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3339, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3340, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3341, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3342, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3343, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3344, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3345, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3346, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3347, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3348, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3349, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3350, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3351, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3352, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3353, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3354, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3355, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3356, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3357, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3358, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3359, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3360, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3361, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3362, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3363, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3364, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3365, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3366, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3367, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3368, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3369, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3370, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3371, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3372, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3373, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3374, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3375, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3376, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3377, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3378, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3379, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3380, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3381, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3382, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3383, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3384, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3385, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3386, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3387, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3388, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3389, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3395, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3406, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3407, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3410, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3411, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3412, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3416, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3418, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3421, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3422, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3423, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3424, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3425, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3426, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3427, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3428, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3434, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3436, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3437, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3441, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3448, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3449, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3450, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3453, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3454, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3455, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3456, "fields": {}}, {"model": "apis_vocabularies.professiontype", "pk": 3457, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 4, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 5, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 6, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 7, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 8, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 9, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 10, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 12, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 13, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 14, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 15, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 16, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 17, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 18, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 19, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 20, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 21, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 22, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 23, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 24, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 25, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 26, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 27, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 28, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 29, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 30, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 31, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 32, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 33, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 34, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 35, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 36, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 37, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 38, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 39, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 40, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 41, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 42, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 43, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 44, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 45, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 46, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 47, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 48, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 49, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 50, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 51, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 52, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 53, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 54, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 55, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 56, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 57, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 58, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 59, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 60, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 61, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 62, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 63, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 64, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 65, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 66, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 67, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 68, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 69, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 70, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 71, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 72, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 73, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 74, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 75, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 76, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 77, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 78, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 81, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 82, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 83, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 84, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 85, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 87, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1103, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1105, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1107, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1108, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1123, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1124, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1128, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1134, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1135, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1137, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1152, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1195, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1234, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1249, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1257, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1278, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1284, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1285, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1297, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1298, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1399, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1410, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1411, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1412, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1415, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1418, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1419, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1434, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1480, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1481, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1483, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1484, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1485, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1513, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1519, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1532, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1533, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1555, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1572, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1573, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1574, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1575, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1576, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1577, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1579, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1580, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1581, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1585, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1586, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1593, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1606, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1607, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1608, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1618, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1620, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1621, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1623, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1626, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1636, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1644, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1645, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1646, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1648, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1668, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1719, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1720, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1721, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1722, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1724, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1725, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1727, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1728, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1729, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1778, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1881, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1899, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 1928, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2001, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2011, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2012, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2013, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2014, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2015, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2016, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2017, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2018, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2019, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2020, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2021, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2022, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2023, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2024, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2025, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2026, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2027, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2028, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2029, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2030, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2031, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2032, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2033, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2034, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2035, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2036, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2037, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2038, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2039, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2040, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2041, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2042, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2043, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2044, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2045, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2046, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2047, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2048, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2049, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2050, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2051, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2052, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2053, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2054, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 2085, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3119, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3408, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3409, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3430, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3431, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3432, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3433, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3438, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3442, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3447, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3451, "fields": {}}, {"model": "apis_vocabularies.placetype", "pk": 3452, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 972, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 973, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 974, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 975, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 976, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 977, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 978, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 979, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 980, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 981, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 982, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 983, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 984, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 985, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 986, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 987, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 988, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 989, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 990, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 991, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 992, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 993, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 994, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 995, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 996, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 997, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 998, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 999, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1000, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1001, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1002, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1003, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1004, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1005, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1006, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1007, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1008, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1009, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1010, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1011, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1012, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1013, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1014, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1015, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1016, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1017, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1018, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1019, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1020, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1021, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1022, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1023, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1024, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1025, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1026, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1027, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1028, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1029, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1030, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1031, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1032, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1033, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1034, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1035, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1036, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1037, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1038, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1039, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1040, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1041, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1042, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1043, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1044, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1045, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1046, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1047, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1127, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1240, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1241, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1242, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1330, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1332, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1345, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1353, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1354, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1359, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1362, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1364, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1366, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1372, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1375, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1382, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1414, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1417, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1420, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1475, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1479, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1482, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1486, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1495, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1504, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1537, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1538, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1542, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1543, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1604, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1605, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1610, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1611, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1612, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1624, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1625, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1627, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1629, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1630, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1631, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1634, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1635, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1642, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1664, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1669, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1670, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1671, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1690, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1700, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1714, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1723, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1726, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1744, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1746, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1766, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1777, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1941, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1954, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1996, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 1998, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 2058, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 2063, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 2072, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 3118, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 3404, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 3405, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 3414, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 3443, "fields": {}}, {"model": "apis_vocabularies.institutiontype", "pk": 3458, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1200, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1203, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1205, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1253, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1254, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1367, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1395, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1396, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1403, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1413, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1487, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1529, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1561, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1564, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1695, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1986, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1987, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 1988, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 3413, "fields": {}}, {"model": "apis_vocabularies.eventtype", "pk": 3435, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 11, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 92, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 93, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 96, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 124, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 149, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 172, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 337, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 502, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 1101, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 1104, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 1126, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 1146, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 1198, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 1214, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 1235, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 1243, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 1374, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 1378, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 3108, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 3109, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 3110, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 3111, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 3112, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 3392, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 3393, "fields": {}}, {"model": "apis_vocabularies.labeltype", "pk": 3394, "fields": {}}, {"model": "apis_vocabularies.collectiontype", "pk": 1239, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1109, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1110, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1111, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1112, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1113, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1114, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1115, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1116, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1117, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1118, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1120, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1121, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1122, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1169, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1170, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1171, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1173, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1174, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1175, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1176, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1177, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1178, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1186, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1247, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1309, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1310, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1405, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1424, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1523, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 1530, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 3402, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 3403, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 3429, "fields": {}}, {"model": "apis_vocabularies.personpersonrelation", "pk": 3459, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 88, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 89, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1140, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1147, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1148, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1150, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1165, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1179, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1181, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1187, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1294, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1398, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1510, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1657, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1900, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 1901, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 2253, "fields": {}}, {"model": "apis_vocabularies.personplacerelation", "pk": 3417, "fields": {}}, {"model": "apis_vocabularies.personinstitutionrelation", "pk": 1153, "fields": {}}, {"model": "apis_vocabularies.personinstitutionrelation", "pk": 1182, "fields": {}}, {"model": "apis_vocabularies.personinstitutionrelation", "pk": 1409, "fields": {}}, {"model": "apis_vocabularies.personinstitutionrelation", "pk": 1534, "fields": {}}, {"model": "apis_vocabularies.personinstitutionrelation", "pk": 3415, "fields": {}}, {"model": "apis_vocabularies.personeventrelation", "pk": 1256, "fields": {}}, {"model": "apis_vocabularies.personeventrelation", "pk": 1370, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1048, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1049, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1050, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1051, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1052, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1053, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1144, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1217, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1224, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1335, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1553, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 1587, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 3106, "fields": {}}, {"model": "apis_vocabularies.personworkrelation", "pk": 3107, "fields": {}}, {"model": "apis_vocabularies.institutioneventrelation", "pk": 1351, "fields": {}}, {"model": "apis_vocabularies.institutionplacerelation", "pk": 970, "fields": {}}, {"model": "apis_vocabularies.institutionplacerelation", "pk": 1141, "fields": {}}, {"model": "apis_vocabularies.institutionplacerelation", "pk": 1160, "fields": {}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1158, "fields": {}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1159, "fields": {}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1192, "fields": {}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1237, "fields": {}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1244, "fields": {}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1516, "fields": {}}, {"model": "apis_vocabularies.institutioninstitutionrelation", "pk": 1517, "fields": {}}, {"model": "apis_vocabularies.institutionworkrelation", "pk": 1138, "fields": {}}, {"model": "apis_vocabularies.institutionworkrelation", "pk": 1139, "fields": {}}, {"model": "apis_vocabularies.institutionworkrelation", "pk": 1143, "fields": {}}, {"model": "apis_vocabularies.placeplacerelation", "pk": 971, "fields": {}}, {"model": "apis_vocabularies.placeplacerelation", "pk": 1106, "fields": {}}, {"model": "apis_vocabularies.placeplacerelation", "pk": 1136, "fields": {}}, {"model": "apis_vocabularies.placeeventrelation", "pk": 1202, "fields": {}}, {"model": "apis_vocabularies.placeeventrelation", "pk": 1369, "fields": {}}, {"model": "apis_vocabularies.placeworkrelation", "pk": 1193, "fields": {}}, {"model": "apis_vocabularies.placeworkrelation", "pk": 1194, "fields": {}}, {"model": "apis_vocabularies.placeworkrelation", "pk": 1338, "fields": {}}, {"model": "apis_vocabularies.placeworkrelation", "pk": 1549, "fields": {}}, {"model": "apis_vocabularies.eventeventrelation", "pk": 3439, "fields": {}}, {"model": "apis_vocabularies.eventeventrelation", "pk": 3440, "fields": {}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1201, "fields": {}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1204, "fields": {}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1206, "fields": {}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1252, "fields": {}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1371, "fields": {}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1527, "fields": {}}, {"model": "apis_vocabularies.eventworkrelation", "pk": 1528, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1132, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1133, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1161, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1162, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1184, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1185, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1189, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1190, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1225, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1233, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1363, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1385, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 1884, "fields": {}}, {"model": "apis_vocabularies.workworkrelation", "pk": 3446, "fields": {}}] \ No newline at end of file diff --git a/apis_core/apis_vocabularies/migrations/0001_initial.py b/apis_core/apis_vocabularies/migrations/0001_initial.py index 0746394..667844b 100644 --- a/apis_core/apis_vocabularies/migrations/0001_initial.py +++ b/apis_core/apis_vocabularies/migrations/0001_initial.py @@ -1,43 +1,25 @@ -# Generated by Django 2.1.12 on 2020-01-21 12:27 +# Generated by Django 5.0 on 2023-12-19 07:19 import django.db.models.deletion -from django.conf import settings from django.db import migrations, models class Migration(migrations.Migration): - initial = True dependencies = [ ("apis_entities", "0001_initial"), - ("apis_relations", "0001_initial"), ("apis_metainfo", "0001_initial"), - migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ("apis_relations", "0001_initial"), ] operations = [ - migrations.CreateModel( - name="VocabNames", - fields=[ - ( - "id", - models.AutoField( - auto_created=True, - primary_key=True, - serialize=False, - verbose_name="ID", - ), - ), - ("name", models.CharField(max_length=255)), - ], - ), migrations.CreateModel( name="VocabsBaseClass", fields=[ ( "id", - models.AutoField( + models.BigAutoField( auto_created=True, primary_key=True, serialize=False, @@ -64,25 +46,30 @@ class Migration(migrations.Migration): max_length=4, ), ), + ( + "parent_class", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="apis_vocabularies.vocabsbaseclass", + ), + ), ], ), migrations.CreateModel( - name="VocabsUri", + name="VocabNames", fields=[ ( "id", - models.AutoField( + models.BigAutoField( 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)), + ("name", models.CharField(max_length=255)), ], ), migrations.CreateModel( @@ -96,7 +83,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.VocabsBaseClass", + to="apis_vocabularies.vocabsbaseclass", ), ), ], @@ -113,7 +100,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.VocabsBaseClass", + to="apis_vocabularies.vocabsbaseclass", ), ), ], @@ -130,7 +117,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.VocabsBaseClass", + to="apis_vocabularies.vocabsbaseclass", ), ), ], @@ -147,7 +134,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.VocabsBaseClass", + to="apis_vocabularies.vocabsbaseclass", ), ), ], @@ -164,7 +151,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.VocabsBaseClass", + to="apis_vocabularies.vocabsbaseclass", ), ), ], @@ -181,7 +168,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.VocabsBaseClass", + to="apis_vocabularies.vocabsbaseclass", ), ), ], @@ -198,7 +185,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.VocabsBaseClass", + to="apis_vocabularies.vocabsbaseclass", ), ), ( @@ -213,28 +200,6 @@ class Migration(migrations.Migration): ], bases=("apis_vocabularies.vocabsbaseclass",), ), - migrations.CreateModel( - 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"), - ), - ], - bases=("apis_vocabularies.vocabsbaseclass",), - ), migrations.CreateModel( name="Title", fields=[ @@ -246,7 +211,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.VocabsBaseClass", + to="apis_vocabularies.vocabsbaseclass", ), ), ("abbreviation", models.CharField(blank=True, max_length=10)), @@ -264,42 +229,12 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.VocabsBaseClass", + to="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", - ), - ), - 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", - ), - ), - 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, - ), - ), migrations.AddField( model_name="vocabsbaseclass", name="vocab_name", @@ -307,37 +242,36 @@ class Migration(migrations.Migration): blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, - to="apis_vocabularies.VocabNames", + to="apis_vocabularies.vocabnames", ), ), migrations.CreateModel( - name="EventEventRelation", + name="VocabsUri", fields=[ ( - "relationbaseclass_ptr", - models.OneToOneField( + "id", + models.BigAutoField( auto_created=True, - on_delete=django.db.models.deletion.CASCADE, - parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + 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)), ( - "eventb_set", - models.ManyToManyField( + "vocab", + models.ForeignKey( blank=True, - related_name="eventa_relationtype_set", - through="apis_relations.EventEvent", - to="apis_entities.Event", + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="apis_vocabularies.vocabsbaseclass", ), ), ], - options={ - "abstract": False, - }, - bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( name="EventWorkRelation", @@ -350,7 +284,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", ), ), ], @@ -370,7 +304,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", ), ), ], @@ -380,7 +314,7 @@ class Migration(migrations.Migration): bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name="InstitutionInstitutionRelation", + name="InstitutionPlaceRelation", fields=[ ( "relationbaseclass_ptr", @@ -390,16 +324,7 @@ class Migration(migrations.Migration): 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", + to="apis_vocabularies.relationbaseclass", ), ), ], @@ -409,7 +334,7 @@ class Migration(migrations.Migration): bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name="InstitutionPlaceRelation", + name="InstitutionWorkRelation", fields=[ ( "relationbaseclass_ptr", @@ -419,7 +344,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", ), ), ], @@ -429,7 +354,7 @@ class Migration(migrations.Migration): bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name="InstitutionWorkRelation", + name="PersonEventRelation", fields=[ ( "relationbaseclass_ptr", @@ -439,7 +364,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", ), ), ], @@ -449,7 +374,7 @@ class Migration(migrations.Migration): bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name="PersonEventRelation", + name="PersonInstitutionRelation", fields=[ ( "relationbaseclass_ptr", @@ -459,7 +384,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", ), ), ], @@ -469,7 +394,7 @@ class Migration(migrations.Migration): bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name="PersonInstitutionRelation", + name="PersonPlaceRelation", fields=[ ( "relationbaseclass_ptr", @@ -479,7 +404,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", ), ), ], @@ -489,7 +414,7 @@ class Migration(migrations.Migration): bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name="PersonPersonRelation", + name="PersonWorkRelation", fields=[ ( "relationbaseclass_ptr", @@ -499,16 +424,27 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", ), ), + ], + options={ + "abstract": False, + }, + bases=("apis_vocabularies.relationbaseclass",), + ), + migrations.CreateModel( + name="PlaceEventRelation", + fields=[ ( - "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", ), ), ], @@ -518,7 +454,7 @@ class Migration(migrations.Migration): bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name="PersonPlaceRelation", + name="PlaceWorkRelation", fields=[ ( "relationbaseclass_ptr", @@ -528,7 +464,7 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", ), ), ], @@ -538,7 +474,40 @@ class Migration(migrations.Migration): bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name="PersonWorkRelation", + 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)), + ( + "lang", + 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", + ), + ), + ( + "collections", + models.ManyToManyField(blank=True, to="apis_metainfo.collection"), + ), + ], + bases=("apis_vocabularies.vocabsbaseclass",), + ), + migrations.CreateModel( + name="EventEventRelation", fields=[ ( "relationbaseclass_ptr", @@ -548,7 +517,16 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", + ), + ), + ( + "eventb_set", + models.ManyToManyField( + blank=True, + related_name="eventa_relationtype_set", + through="apis_relations.EventEvent", + to="apis_entities.event", ), ), ], @@ -558,7 +536,7 @@ class Migration(migrations.Migration): bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name="PlaceEventRelation", + name="InstitutionInstitutionRelation", fields=[ ( "relationbaseclass_ptr", @@ -568,7 +546,16 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", + ), + ), + ( + "institutionb_set", + models.ManyToManyField( + blank=True, + related_name="institutiona_relationtype_set", + through="apis_relations.InstitutionInstitution", + to="apis_entities.institution", ), ), ], @@ -578,7 +565,7 @@ class Migration(migrations.Migration): bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name="PlacePlaceRelation", + name="PersonPersonRelation", fields=[ ( "relationbaseclass_ptr", @@ -588,16 +575,16 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", ), ), ( - "placeB_set", + "personb_set", models.ManyToManyField( blank=True, - related_name="placeA_relationtype_set", - through="apis_relations.PlacePlace", - to="apis_entities.Place", + related_name="persona_relationtype_set", + through="apis_relations.PersonPerson", + to="apis_entities.person", ), ), ], @@ -607,7 +594,7 @@ class Migration(migrations.Migration): bases=("apis_vocabularies.relationbaseclass",), ), migrations.CreateModel( - name="PlaceWorkRelation", + name="PlacePlaceRelation", fields=[ ( "relationbaseclass_ptr", @@ -617,7 +604,16 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", + ), + ), + ( + "placeb_set", + models.ManyToManyField( + blank=True, + related_name="placea_relationtype_set", + through="apis_relations.PlacePlace", + to="apis_entities.place", ), ), ], @@ -637,16 +633,16 @@ class Migration(migrations.Migration): parent_link=True, primary_key=True, serialize=False, - to="apis_vocabularies.RelationBaseClass", + to="apis_vocabularies.relationbaseclass", ), ), ( - "workB_set", + "workb_set", models.ManyToManyField( blank=True, - related_name="workA_relationtype_set", + related_name="worka_relationtype_set", through="apis_relations.WorkWork", - to="apis_entities.Work", + to="apis_entities.work", ), ), ], diff --git a/apis_core/apis_vocabularies/migrations/0002_texttype_lang.py b/apis_core/apis_vocabularies/migrations/0002_texttype_lang.py deleted file mode 100644 index f0af51b..0000000 --- a/apis_core/apis_vocabularies/migrations/0002_texttype_lang.py +++ /dev/null @@ -1,25 +0,0 @@ -# Generated by Django 2.2.13 on 2020-07-22 12:47 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ("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", - ), - ), - ] diff --git a/apis_core/apis_vocabularies/models.py b/apis_core/apis_vocabularies/models.py index 994fd4c..ca615ee 100644 --- a/apis_core/apis_vocabularies/models.py +++ b/apis_core/apis_vocabularies/models.py @@ -227,21 +227,18 @@ def get_all_relationtype_classes(cls): """ if cls._all_relationtype_classes == None: - relationtype_classes = [] relationtype_names = [] for relationtype_name, relationtype_class in inspect.getmembers( sys.modules[__name__], inspect.isclass ): - 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()) @@ -270,7 +267,6 @@ def get_all_relationtype_names(cls): """ if cls._all_relationtype_names == None: - cls.get_all_relationtype_classes() return cls._all_relationtype_names diff --git a/apis_core/apis_vocabularies/serializers.py b/apis_core/apis_vocabularies/serializers.py index a794066..c8ea150 100644 --- a/apis_core/apis_vocabularies/serializers.py +++ b/apis_core/apis_vocabularies/serializers.py @@ -229,7 +229,6 @@ class Meta: class PersonPlaceRelationSerializer(VocabsBaseSerializer): - url = serializers.HyperlinkedIdentityField( view_name="apis:apis_api:personplacerelation-detail", lookup_field="pk" ) diff --git a/apis_core/default_settings/NER_settings.py b/apis_core/default_settings/NER_settings.py deleted file mode 100644 index 678d815..0000000 --- a/apis_core/default_settings/NER_settings.py +++ /dev/null @@ -1,456 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- - -gn = "http://www.geonames.org/ontology#" -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 + "{}/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": "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", - ), - }, - } - ], - "Work": [], -} - -geonames_feature_codes = { - "ADM1": ( - "first-order administrative division", - "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", - ), - "ADM2": ( - "second-order administrative division", - "a subdivision of a first-order administrative division", - ), - "ADM2H": ( - "historical second-order administrative division", - "a former second-order administrative division", - ), - "ADM3": ( - "third-order administrative division", - "a subdivision of a second-order administrative division", - ), - "ADM3H": ( - "historical third-order administrative division", - "a former third-order administrative division", - ), - "ADM4": ( - "fourth-order administrative division", - "a subdivision of a third-order administrative division", - ), - "ADM4H": ( - "historical fourth-order administrative division", - "a former fourth-order administrative division", - ), - "ADM5": ( - "fifth-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", - ), - "ADMDH": ( - "historical administrative division", - "a former administrative division of a political entity, \ - undifferentiated as to administrative level", - ), - "LTER": ( - "leased area", - "a tract of land leased to another country, usually for military installations", - ), - "PCL": ("political entity", ""), - "PCLD": ("dependent political entity", ""), - "PCLF": ("freely associated state", ""), - "PCLH": ("historical political entity", "a former political entity"), - "PCLI": ("independent political entity", ""), - "PCLIX": ("section of independent political entity", ""), - "PCLS": ("semi-independent political entity", ""), - "PRSH": ("parish", "an ecclesiastical district"), - "TERR": ("territory", ""), - "ZN": ("zone", ""), - "ZNB": ( - "buffer zone", - "a zone recognized as a buffer between two nations in which \ - military presence is minimal or absent", - ), - "PPL": ( - "populated place", - "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),", - ), - "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", - ), - "PPLF": ( - "farm village", - "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"), - "PPLL": ( - "populated locality", - "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", - ), - "PPLS": ( - "populated places", - "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", - ), - "PPLX": ("section of populated place", ""), - "STLMT": ("israeli settlement", ""), - "RGN": ( - "region", - "an area distinguished by one or more observable physical or cultural characteristics", - ), -} - - -class StbGeoQuerySettings: - def __init__(self, kind="place"): - self.kind = kind - 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"}, - ] - - def get_next_feature(self, ft=False): - if self.last_selected > len(self.features) - 1: - self.stored_feature = False - return False - if not ft: - ft = self.features[self.last_selected]["feature"] - for idnx, x in enumerate(self.features): - if x["feature"] == ft: - try: - 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: - 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, - } - else: - data = { - "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_default_settings.yml b/apis_core/default_settings/RDF_default_settings.yml deleted file mode 100644 index feb6c9b..0000000 --- a/apis_core/default_settings/RDF_default_settings.yml +++ /dev/null @@ -1,238 +0,0 @@ -Place: - data: - - base_url: https://sws.geonames.org/ - attributes: - - name: name - sparql: | - SELECT ?prefName (LANG(?prefName) AS ?lang) - WHERE { - { - ?subject gn:name ?prefName} - UNION { - ?subject gn:officialName ?prefName - } - UNION { - ?subject gn:alternateName ?prefName - } - FILTER (LANGMATCHES(LANG(?prefName), "de") || LANGMATCHES(LANG(?prefName), "en") || LANG(?prefName) = "") - } - ORDER BY ?lang - - name: altName - sparql: | - PREFIX gn: - SELECT ?altName (LANG(?altName) AS ?lang) - WHERE { - ?subject gn:alternateName ?altName - FILTER (LANGMATCHES(LANG(?altName), "de") || LANGMATCHES(LANG(?altName), "en") || LANG(?prefName) = "") - } - - name: kind - sparql: | - PREFIX gn: - SELECT ?kind - WHERE { - ?subject gn:featureCode ?kind - } - - name: lat-long - sparql: | - PREFIX gn: - PREFIX wgs84_pos: - SELECT ?lat ?long - WHERE { - ?subject wgs84_pos:lat ?lat; - wgs84_pos:long ?long - } - - name: parent - sparql: | - PREFIX gn: - SELECT ?parent - WHERE { - ?subject gn:parentCountry ?parent - } - - base_url: d-nb.info - attributes: - - name: name - sparql: | - PREFIX gndo: - SELECT ?prefName - WHERE { - ?subject gndo:preferredNameForThePlaceOrGeographicName ?prefName - } - - name: lat-long-gnd - sparql: | - PREFIX geo: - SELECT ?point - WHERE { - ?subject geo:hasGeometry ?geo1 . - ?geo1 geo:asWKT ?point - } - matching: - attributes: - name: - string: '{prefName}' - kind: - domain: geonames.org - string: '{kind}' - accessor: name - regex: null - lat: - domain: geonames.org - identifier: lat-long.lat - data type: float - lng: - domain: geonames.org - identifier: lat-long.long - data type: float - lng-gnd: - domain: d-nb.info - identifier: lat-long-gnd.point - field name: lng - data type: float - regex: - - '([\-0-9\.]+)' - - 1 - lat-gnd: - domain: d-nb.info - identifier: lat-long-gnd.point - field name: lat - data type: float - regex: - - \d\s\+([\-0-9\.]+) - - 1 - - labels: - - label type: alternative name - identifier: altName - linked objects: - - type: Place - kind: located in - identifier: parent -Person: - data: - - base_url: d-nb.info - attributes: - - name: name - sparql: | - PREFIX gndo: - - SELECT ?name ?first_name - - WHERE { - ?subject gndo:preferredNameForThePerson ?name . - OPTIONAL { - ?subject gndo:preferredNameEntityForThePerson ?med . - ?med gndo:forename ?first_name; - gndo:surname ?name2 . - BIND(?name2 as ?name) - } - } - - name: profession - sparql: | - PREFIX gndo: - - SELECT ?profession - - WHERE { - ?subject gndo:professionOrOccupation ?profession - } - - name: start_date_written - sparql: | - PREFIX gndo: - - SELECT ?start_date_written - - WHERE { - ?subject gndo:dateOfBirth ?start_date_written - } - - name: end_date_written - sparql: | - PREFIX gndo: - - SELECT ?end_date_written - - WHERE { - ?subject gndo:dateOfDeath ?end_date_written - } - - name: place_of_birth - sparql: | - PREFIX gndo: - - SELECT ?place_of_birth - - WHERE { - ?subject gndo:placeOfBirth ?place_of_birth - } - matching: - prefLabels: - - https://d-nb.info/standards/elementset/gnd#preferredNameForTheSubjectHeading - attributes: - name: - string: '{name}' - first_name: - identifier: name - string: '{first_name}' - start_date_written: - string: '{start_date_written}' - end_date_written: - string: '{end_date_written}' - profession: - string: '{profession}' - accessor: name - linked: true - linked objects: - - type: Place - kind: Place of Birth - identifier: place_of_birth -Institution: - data: - - base_url: d-nb.info - attributes: - - name: name - sparql: | - PREFIX gndo: - SELECT ?name - WHERE { - ?subject gndo:preferredNameForTheCorporateBody ?name - } - - name: altName - sparql: | - PREFIX gndo: - SELECT ?altName - WHERE { - ?subject gndo:variantNameForTheCorporateBody ?altName - } - - name: place - sparql: | - PREFIX gndo: - SELECT ?place - WHERE { - ?subject gndo:placeOfBusiness ?place - } - - name: start_date_written - sparql: | - PREFIX gndo: - SELECT ?start_date_written - WHERE { - ?subject gndo:dateOfEstablishment ?start_date_written - } - - name: end_date_written - sparql: | - PREFIX gndo: - SELECT ?end_date_written - WHERE { - ?subject gndo:dateOfTermination ?end_date_written - } - matching: - attributes: - name: - string: '{name}' - start_date_written: - string: '{start_date_written}' - end_date_written: - string: '{end_date_written}' - linked objects: - - type: Place - kind: located in - identifier: place.place - labels: - - label type: alternative name - identifier: altName \ No newline at end of file diff --git a/apis_core/default_settings/RDF_settings.py b/apis_core/default_settings/RDF_settings.py deleted file mode 100644 index 10e0360..0000000 --- a/apis_core/default_settings/RDF_settings.py +++ /dev/null @@ -1,542 +0,0 @@ -gno = "http://www.geonames.org/ontology#" -wgs84 = "http://www.w3.org/2003/01/geo/wgs84_pos#" -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": [ - { - "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": "label", - "identifiers": ( - ( - ( - "objects", - "label", - gno + "alternateName", - ("language", "de"), - ), - ), - ( - ( - "objects", - "label", - gno + "alternateName", - ("language", "en"), - ), - ), - ), - }, - { - "name": "lat", - "identifiers": ((("objects", "lat", wgs84 + "lat", None),),), - }, - { - "name": "long", - "identifiers": ((("objects", "lng", wgs84 + "long", None),),), - }, - { - "name": "parentFeature", - "identifiers": ( - ( - ( - "objects", - "parentFeature", - gno + "parentFeature", - None, - ), - ), - ), - }, - { - "name": "parentCountry", - "identifiers": ( - ( - ( - "objects", - "parentCountry", - gno + "parentCountry", - None, - ), - ), - ), - }, - ], - }, - { - "base_url": "http://d-nb.info/gnd/", - "url_appendix": "about/rdf", - "attributes": [ - { - "name": "name", - "identifiers": ( - ( - ( - "objects", - "prefName", - gndo + "preferredNameForThePlaceOrGeographicName", - None, - ), - ), - ), - }, - { - "name": "label", - "identifiers": ( - ( - ( - "objects", - "label", - gndo + "variantNameForThePlaceOrGeographicName", - 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), - ), - ), - ), - }, - "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": [ - { - "base_url": "http://d-nb.info/gnd/", - "url_appendix": "about/rdf", - "attributes": [ - { - "name": "name", - "identifiers": ( - ( - ( - "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, - ), - ), - ), - }, - { - "name": "label", - "identifiers": ( - ( - ( - "objects", - "label", - gndo + "variantNameForThePerson", - 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": "date of birth", - "identifiers": ( - (("objects", "date of birth", gndo + "dateOfBirth", 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),),), - }, - "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": [ - { - "base_url": "http://d-nb.info/gnd/", - "url_appendix": "about/rdf", - "attributes": [ - { - "name": "name", - "identifiers": ( - ( - ( - "objects", - "prefName", - gndo + "preferredNameForTheSubjectHeading", - None, - ), - ), - ), - }, - { - "name": "start", - "identifiers": ( - ( - ( - "objects", - "start_date", - gndo + "dateOfEstablishment", - None, - ), - ), - ), - }, - { - "name": "end", - "identifiers": ( - ( - ( - "objects", - "end_date", - gndo + "dateOfTermination", - None, - ), - ), - ), - }, - { - "name": "label", - "identifiers": ( - ( - ( - "objects", - "label", - gndo + "variantNameForTheSubjectHeading", - 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),), - }, - ], - }, - }, - "Institution": { - "data": [ - { - "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": "alternativeName", - "identifiers": ( - ( - ( - "objects", - "alternativeName", - gndo + "variantNameForTheCorporateBody", - None, - ), - ), - ), - }, - { - "name": "start", - "identifiers": ( - (("objects", "start", gndo + "dateOfEstablishment", None),), - ), - }, - { - "name": "end", - "identifiers": ( - (("objects", "end", gndo + "dateOfTermination", None),), - ), - }, - { - "name": "placeOfBusiness", - "identifiers": ( - ( - ( - "objects", - "placeOfBusiness", - gndo + "placeOfBusiness", - None, - ), - ), - ), - }, - { - "name": "succeeding", - "identifiers": ( - ( - ( - "objects", - "succeeding", - gndo + "succeedingCorporateBody", - None, - ), - ), - ), - }, - { - "name": "preceding", - "identifiers": ( - ( - ( - "objects", - "preceding", - gndo + "precedingCorporateBody", - 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),), - }, - ], - }, - }, -} diff --git a/apis_core/default_settings/RDF_settings_new.py b/apis_core/default_settings/RDF_settings_new.py deleted file mode 100644 index 8652752..0000000 --- a/apis_core/default_settings/RDF_settings_new.py +++ /dev/null @@ -1,481 +0,0 @@ -gno = "http://www.geonames.org/ontology#" -wgs84 = "http://www.w3.org/2003/01/geo/wgs84_pos#" -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"] - -sett_RDF_generic = { - "Place": { - "data": [ - { - "base_url": "http://sws.geonames.org/", - "attributes": [ - { - "name": "name", - "sparql": """ - PREFIX gn: - SELECT ?prefName (LANG(?prefName) AS ?lang) - WHERE {{ - <{subject}> gn:officialName ?prefName - FILTER (LANGMATCHES(LANG(?prefName), "de") || LANGMATCHES(LANG(?prefName), "en")) - }} - """, - }, - { - "name": "altName", - "sparql": """ - PREFIX gn: - SELECT ?altName (LANG(?altName) AS ?lang) - WHERE {{ - <{subject}> gn:alternateName ?altName - FILTER (LANGMATCHES(LANG(?altName), "de") || LANGMATCHES(LANG(?altName), "en")) - }} - """, - }, - { - "name": "kind", - "sparql": """ - PREFIX gn: - SELECT ?kind - WHERE {{ - <{subject}> gn:featureCode ?kind - }} - """, - }, - { - "name": "lat-long", - "sparql": """ - PREFIX gn: - PREFIX wgs84_pos: - SELECT ?lat ?long - WHERE {{ - <{subject}> wgs84_pos:lat ?lat; - wgs84_pos:long ?long - }} - """, - }, - { - "name": "parent", - "sparql": """ - PREFIX gn: - SELECT ?parent - WHERE {{ - <{subject}> gn:parentCountry ?parent - }} - """, - }, - ], - }, - { - "base_url": "http://d-nb.info/gnd/", - "url_appendix": "about/rdf", - "attributes": [ - { - "name": "name", - "identifiers": ( - ( - ( - "objects", - "prefName", - gndo + "preferredNameForThePlaceOrGeographicName", - None, - ), - ), - ), - }, - { - "name": "label", - "identifiers": ( - ( - ( - "objects", - "label", - gndo + "variantNameForThePlaceOrGeographicName", - 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}"}, - }, - "labels": { - "alternative name": (("label", None),), - }, - "linked objects": [ - {"type": "Place", "kind": "located in", "object": "parent"}, - ], - }, - }, - "Person": { - "data": [ - { - "base_url": "http://d-nb.info/gnd/", - "url_appendix": "about/rdf", - "attributes": [ - { - "name": "name", - "identifiers": ( - ( - ( - "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, - ), - ), - ), - }, - { - "name": "label", - "identifiers": ( - ( - ( - "objects", - "label", - gndo + "variantNameForThePerson", - 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": "date of birth", - "identifiers": ( - (("objects", "date of birth", gndo + "dateOfBirth", 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),),), - }, - "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": [ - { - "base_url": "http://d-nb.info/gnd/", - "url_appendix": "about/rdf", - "attributes": [ - { - "name": "name", - "identifiers": ( - ( - ( - "objects", - "prefName", - gndo + "preferredNameForTheSubjectHeading", - None, - ), - ), - ), - }, - { - "name": "start", - "identifiers": ( - ( - ( - "objects", - "start_date", - gndo + "dateOfEstablishment", - None, - ), - ), - ), - }, - { - "name": "end", - "identifiers": ( - ( - ( - "objects", - "end_date", - gndo + "dateOfTermination", - None, - ), - ), - ), - }, - { - "name": "label", - "identifiers": ( - ( - ( - "objects", - "label", - gndo + "variantNameForTheSubjectHeading", - 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),), - }, - ], - }, - }, - "Institution": { - "data": [ - { - "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": "alternativeName", - "identifiers": ( - ( - ( - "objects", - "alternativeName", - gndo + "variantNameForTheCorporateBody", - None, - ), - ), - ), - }, - { - "name": "start", - "identifiers": ( - (("objects", "start", gndo + "dateOfEstablishment", None),), - ), - }, - { - "name": "end", - "identifiers": ( - (("objects", "end", gndo + "dateOfTermination", None),), - ), - }, - { - "name": "placeOfBusiness", - "identifiers": ( - ( - ( - "objects", - "placeOfBusiness", - gndo + "placeOfBusiness", - None, - ), - ), - ), - }, - { - "name": "succeeding", - "identifiers": ( - ( - ( - "objects", - "succeeding", - gndo + "succeedingCorporateBody", - None, - ), - ), - ), - }, - { - "name": "preceding", - "identifiers": ( - ( - ( - "objects", - "preceding", - gndo + "precedingCorporateBody", - 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),), - }, - ], - }, - }, -} diff --git a/apis_core/default_settings/URI_replace_settings.yml b/apis_core/default_settings/URI_replace_settings.yml deleted file mode 100644 index 127a2a3..0000000 --- a/apis_core/default_settings/URI_replace_settings.yml +++ /dev/null @@ -1,7 +0,0 @@ -mappings: - - domain: geonames.org - regex: '^https?://(?:[^.]*[.])?geonames[.]org/([0-9]+)' - replace: 'https://sws.geonames.org/{}/' - - domain: d-nb.info - regex: '^https?://(?:[^.]*[.])?d-nb.info/gnd/([0-9A-Za-u\-]+)' - replace: 'https://d-nb.info/gnd/{}' \ No newline at end of file diff --git a/apis_core/default_settings/__init__.py b/apis_core/default_settings/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/apis_core/helper_functions/ContentType.py b/apis_core/helper_functions/ContentType.py index a65fdde..bad0671 100644 --- a/apis_core/helper_functions/ContentType.py +++ b/apis_core/helper_functions/ContentType.py @@ -5,7 +5,6 @@ class GetContentTypes: - # class memeber dictionary, used for caching ContentType objects in method get_content_type_of_class_or_instance class_content_type_dict = {} diff --git a/apis_core/helper_functions/DateParser.py b/apis_core/helper_functions/DateParser.py index fb59c9d..711ab4e 100644 --- a/apis_core/helper_functions/DateParser.py +++ b/apis_core/helper_functions/DateParser.py @@ -185,7 +185,6 @@ def get_last_day_of_month(month, year): return datetime(year=year, month=month, day=day) try: - # return variables date_single = None date_ab = None @@ -258,7 +257,6 @@ def parse_iso_date(date_string): # split by allowed keywords 'ab' and 'bis' and iterate over them date_split_ab_bis = re.split(r"(ab|bis)", date_string) for i, v in enumerate(date_split_ab_bis): - if v == "ab": # indicates that the next value must be a start date @@ -422,5 +420,4 @@ def get_date_help_text_from_dates( 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 03ec92f..dae3c56 100644 --- a/apis_core/helper_functions/EntityRelationFieldGenerator.py +++ b/apis_core/helper_functions/EntityRelationFieldGenerator.py @@ -61,7 +61,6 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): # Iterate over all relation and relationtype classes for rc in relation_classes: for rtc in relationtype_classes: - # compare their name, to check if they should be regarded as pair (This depends on the APIS design # decision that given a relation class its respective relationtype must be named the same but with a # 'Relation' added at the end) @@ -73,7 +72,6 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): # Check if any classes are left without any pairing found if len(no_pairing_found) > 0: - message = "" for cls in no_pairing_found: message += ( @@ -97,13 +95,11 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_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: - entity_class_name_a = entity_class_a.__name__.lower() entity_class_name_b = entity_class_b.__name__.lower() # 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. @@ -111,9 +107,7 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): 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 ################################################################################################ @@ -255,7 +249,6 @@ def pair_up_relations_relationtypes(relation_classes, relationtype_classes): ) else: - # On relation models: generate fields from relation to entity and from relation to relationtype ################################################################################################ diff --git a/apis_core/helper_functions/RDFParser.py b/apis_core/helper_functions/RDFParser.py deleted file mode 100644 index 7ffef60..0000000 --- a/apis_core/helper_functions/RDFParser.py +++ /dev/null @@ -1,578 +0,0 @@ -import os -import os -import re -import string -import time -import unicodedata - -import pandas as pd -import rdflib -import yaml -from django.conf import settings -from django.contrib.contenttypes.models import ContentType -from django.core.exceptions import FieldError, MultipleObjectsReturned -from django.db.models.fields import CharField as TCharField -from django.db.models.fields import FloatField as TFloatField -from django.db.models.fields.related import ForeignKey as TForeignKey -from django.db.models.fields.related import ManyToManyField as TManyToMany -from rdflib import URIRef, RDFS -from rdflib.namespace import SKOS, OWL - -from apis_core.apis_labels.models import Label -from apis_core.apis_metainfo.models import Uri as genUri, Collection, Uri -from apis_core.apis_vocabularies.models import LabelType -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" - ), -) - -APIS_RDF_URI_SETTINGS = getattr( - 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) - if m: - uri = dom["replace"].format(m.group(1)) - return uri - - -class PartialFormatter(string.Formatter): - def __init__(self, missing="-", bad_fmt="!!"): - self.missing, self.bad_fmt = missing, bad_fmt - - def get_field(self, field_name, args, kwargs): - try: - val = super().get_field(field_name, args, kwargs) - except (KeyError, AttributeError): - val = None, field_name - return val - - def format_field(self, value, spec): - if value is None: - return self.missing - try: - return super(PartialFormatter, self).format_field(value, spec) - except ValueError: - if self.bad_fmt is not None: - return self.bad_fmt - else: - raise - - -fmt = PartialFormatter() - - -class RDFParser(object): - - _reserved_uris = dict() - - @property - def _settings_complete(self): - sett = yaml.load(open(self._rdf_settings_file, "r"), Loader=yaml.FullLoader) - return sett - - @property - 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 - return res - - @staticmethod - def _clean_uri_store(): - del_items = [] - for key, value in RDFParser._reserved_uris.items(): - if (time.time() - value) > (30 * 60): - del_items.append(key) - for d in del_items: - del RDFParser._reserved_uris[d] - - def _exist(self, uri, uri_check=True): - - if self.objct.objects.filter(uri__uri=uri).count() > 0: - 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 - ): - raise ValueError("URI used by other instance") - else: - RDFParser._reserved_uris[uri] = time.time() - return False, False - elif uri_check: - RDFParser._reserved_uris[uri] = time.time() - return False, False - else: - return False, False - - def _parse(self): - """ - Parses the URI with the definition in the settings file - :return: (dict) dict of Pandas DataFrames containing the variables obtained from SPARQL query - """ - g = rdflib.Graph() - g.parse(f"{self.uri}") - if self._use_preferred: - lst_pref = [] - pref_fin = [] - u = None - count = 0 - 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"] - else: - u = False - for o in g.objects(URIRef(self.uri), OWL.sameAs): - for idx1, o2 in enumerate(lst_pref): - if o2 in str(o): - pref_fin.append((idx1, o)) - if len(pref_fin) > 0: - pref_fin.sort(key=lambda tup: tup[0]) - self._parse = g.parse(pref_fin[0][1]) - self.uri = pref_fin[0][1] - self._graph = g - res = dict() - 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) - self._attributes = res - return res - - 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 su in self._graph.objects((self._subject, URIRef(sa))): - Uri.objects.create(uri=su, entity=self.objct) - - def get_or_create(self, depth=2): - """ - Gets or creates object with given URI and entity type. - :param depth: (int) depth of related objects to be followed - :return: (object) created object - """ - if not self.created: - return self.objct - else: - if not self.saved: - self.create_objct(depth=depth) - ob = self.save() - return ob - else: - return self.objct - - def save(self): - """ - Saves specified object to DB if it doesnt exist yet - :return: django object saved to db or False if nothing was saved - """ - - if not self.created: - return False - - exist = genUri.objects.filter(uri=self.uri) - if exist.count() > 0: - if exist[0].entity is not None: - return exist[0].entity - self.objct.status = "distinct" - for obj in self._foreign_keys: - try: - attr2, created = obj[1].objects.get_or_create(**obj[2]) - setattr(self.objct, obj[0], attr2) - except MultipleObjectsReturned: - pass - self.objct.save() - 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 - self._objct_uri.save() - self._add_same_as() - 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 - ) - lab_new.append(l1) - self.labels = lab_new - rel_obj_new = [] - for obj in self._m2m: - try: - attr2, created = obj[1].objects.get_or_create(**obj[2]) - getattr(self.objct, obj[0]).add(attr2) - except MultipleObjectsReturned: - 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) - 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) - 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 - voc1, created = voc.objects.get_or_create(name=obj[0]) - setattr(mod, "relation_type_id", voc1.pk) - mod.save() - rel_obj_new.append(mod) - self.related_objcts = rel_obj_new - return self.objct - - @staticmethod - def _sparql_to_pandas(sparql): - """ - Converts a RDFlib SPARQL query to Pandas DataFrame - :param sparql: (object) RDFlib query object - :return: (DataFrame) Pandas DataFrame of return values - """ - sp2 = sparql._get_bindings() - for idx, s2 in enumerate(sp2): - sp2[idx] = {str(key): str(value) for (key, value) in s2.items()} - return sp2 - - def _prep_string(self, string, regex, linked=False, data_type=False): - """ - Function that converts SPARQL return value to string used in Django attributes - :param string: (str) Format string with values ingested from SPARQL query (via Pandas DF) - :param regex: (tuple) tuple of regex and group to use (regex, group) - :return: (str) converted string - """ - conv_mapping = { - "str": str, - "string": str, - "float": float, - "int": int, - "integer": int, - } - if string is None: - return None - if isinstance(string, str): - if regex: - m = re.search(regex[0], string) - if m: - string = m.group(regex[1]) - else: - return None - if len(string) > 255: - 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"]] - ) - string = g1.preferredLabel(URIRef(string), labelProperties=pref1) - if len(string) > 0: - string = str(string[0][1]) - string = unicodedata.normalize("NFC", string) - if data_type: - try: - string = conv_mapping[data_type](string) - except ValueError: - string = None - return string - - def _normalize_uri(self, uri): - """ - Normalizes URIs to canonical form - :param uri: (url) URI to normalize - :return: (url) converted URI - """ - 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"): - """ - :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} - 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 - ) - rel_exst.save() - except FieldError: # e.g. PlacePlace relations have different related_ fields - 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 - ) - rel_exst.save() - 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 - ) - rel_exst.save() - for z in genUri.objects.filter(entity=m_obj): - z.entity_id = self.objct.pk - z.save() - 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) - 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 - ) - 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 - ann.entity_link = self.objct - ann.save() - for txt in m_obj.text.all(): - self.objct.text.add(txt) - if m_obj.source: - self.objct.source = m_obj.source - self.objct.save() - 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. - Stores the object in self.objct - :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 - ): - if self.print_info: - 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 - ) - 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] - ) - 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"] - 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, - ) - 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 - ) - 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"] - 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) - ) - 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"] - 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(".") - if at1[0] in self._attributes.keys(): - if at1[-1] not in self._attributes[at1[0]].columns: - if self.print_info: - 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"]] - for idx, row in u2.iterrows(): - 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 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.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, - ): - """ - :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) - :param app_label_entities: (string) Name of the Django app that contains the entities that we create. - :param app_label_relations: (string) Name of the Django app that contains the relations for the merging process. - :param app_label_vocabularies: (string) Name of the Django app that contains the vocabularies defining the entities and relations. - :param use_preferred: (boolean) if True forwards to preferred sources defined in sameAs - """ - - self._clean_uri_store() - self._rdf_settings_file = rdf_settings - self._uri_settings_file = uri_settings - 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._app_label_relations = app_label_relations - self.kind = kind - self._foreign_keys = [] - self._m2m = [] - self.uri = self._normalize_uri(uri) - self._objct_uri = Uri(uri=self.uri) - self._subject = URIRef(self.uri) - self.related_objcts = [] - force = kwargs.get("force", None) - self.labels = [] - self.print_info = print_info - self.related_objcts = [] - - self.saved = False - test = self._exist(self.uri, uri_check=uri_check) - if test[0] and not force: - self.objct = test[1] - self.created = False - if print_info: - 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 deleted file mode 100644 index 6e5c213..0000000 --- a/apis_core/helper_functions/dl_models.py +++ /dev/null @@ -1,91 +0,0 @@ -import numpy as np -from keras.models import load_model -from keras.preprocessing.text import Tokenizer -import pickle -from keras import backend as K -import os - -import spacy -from spacy.matcher import Matcher - -import de_core_news_sm - -from apis_core.vocabularies.models import VocabsBaseClass - -nlp = de_core_news_sm.load() - -lst_orth = [] -lst_orth_dict = dict() - - -def extract_verbs_from_entity( - ent, - lst_orth, - lst_orth_dict, - accept_pos=["VERB", "AUX", "NOUN", "ADP", "PART"], - add=True, -): - res = [] - for y in ent: - head = y - tokens = [] - lemmas = [] - pos_tags = [] - shapes = [] - while head: - if head.head != head: - head = head.head - if head.pos_ in accept_pos: - if head.orth in lst_orth: - tokens.append(lst_orth_dict[head.orth]) - elif add: - lst_orth.append(head.orth) - lst_orth_dict[head.orth] = len(lst_orth) - tokens.append(len(lst_orth)) - else: - continue - pos_tags.append(head.pos) - shapes.append(head.shape) - else: - head = False - return tokens, lemmas, pos_tags, shapes - - -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))) - 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 - ) - 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") - 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 = "-" - for k in lst_labels_dict.keys(): - if lst_labels_dict[k] == idx: - v_id = VocabsBaseClass.objects.get(id=k).name - result.append((str(txt.ents[idx1]), idx, v_id, x)) - return result diff --git a/apis_core/helper_functions/inter_annotator_agreement.py b/apis_core/helper_functions/inter_annotator_agreement.py deleted file mode 100644 index 5b53c11..0000000 --- a/apis_core/helper_functions/inter_annotator_agreement.py +++ /dev/null @@ -1,206 +0,0 @@ -from django.conf import settings -from django.contrib.auth.models import User -from django.contrib.contenttypes.models import ContentType -from django.db.models.query import QuerySet - -from apis_core.apis_metainfo.models import Text, TempEntityClass -from apis_highlighter.models import Annotation - -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 - import numpy as np - - -class InternalDataAgreement(object): - @staticmethod - def internal_data_agreement_calc( - texts, ann1, ann2, anno_proj=None, format_string="start_end_text" - ): - if type(texts) == QuerySet: - q = {"text__in": texts} - else: - q = {"text": texts} - lst_user_ann = [] - if 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"): - 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) - lst_ann_fin[v] = lst_ann - ann_task = [] - for ann in lst_ann_fin[ann1]: - ann_task.append((ann1, ann, 1)) - if ann in lst_ann_fin[ann2]: - ann_task.append((ann2, ann, 1)) - else: - ann_task.append((ann2, ann, 0)) - for ann in lst_ann_fin[ann2]: - if ann not in lst_ann_fin[ann1]: - ann_task.append((ann2, ann, 1)) - ann_task.append((ann1, ann, 0)) - - if len(ann_task) == 0: - return None - else: - return AnnotationTask(data=ann_task) - - 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} - else: - q = {"text": texts} - if anno_proj: - q["annotation_project_id"] = anno_proj - lst_ann_fin = dict() - if not format_string: - 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) - ) - 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"): - 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 - for u in lst_ann_fin.keys(): - ann_username = User.objects.get(pk=u).username - if u == gold_standard: - continue - gold_list = [] - ann_list = [] - for ann in lst_ann_fin[u]: - if ann in lst_ann_fin[gold_standard]: - gold_list.append(1) - ann_list.append(1) - else: - gold_list.append(0) - ann_list.append(1) - for ann in lst_ann_fin[gold_standard]: - 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"]): - df.loc[ann_username, k] = prec_res[idx] - return df - - def get_html_table(self): - css_class = "table table-bordered table-hover" - self.html_tables = dict() - self.html_tables_gold = None - if isinstance(self.texts, dict): - for txt_id in self.texts.keys(): - self.html_tables[txt_id] = self.texts[txt_id].to_html(classes=css_class) - 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 - ) - 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, - ): - 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" - ): - texts = Text.objects.filter(tempentityclass=texts).distinct() - elif m_name == "collection": - t = TempEntityClass.objects.filter(collection=texts) - texts = Text.objects.filter(tempentityclass__in=t).distinct() - self.texts_gold = None - self._list_users = dict() - if combine: - self.texts = pd.DataFrame() - else: - self.texts = dict() - if combine: - texts = [texts] - if gold_standard: - self.texts_gold = dict() - if not user_group: - user_qs = dict() - else: - user_qs = {"groups__pk": user_group} - for txt in texts: - df = pd.DataFrame() - test = False - for ann1 in User.objects.filter(**user_qs): - for ann2 in User.objects.filter(**user_qs): - if ann1 == ann2: - t = None - continue - try: - t = getattr( - self.internal_data_agreement_calc( - txt, - ann1.pk, - ann2.pk, - anno_proj=anno_proj, - format_string=format_string, - ), - metrics, - )() - if pd.notnull(t): - test = True - except AttributeError as ex: - t = None - df.loc[ann1.username, ann2.username] = t - if ann1.pk not in self._list_users.keys(): - self._list_users[ann1.pk] = ann1 - if ann2.pk not in self._list_users.keys(): - self._list_users[ann2.pk] = ann2 - if test: - if combine: - self.texts = df - else: - self.texts[txt.pk] = df - if gold_standard: - if combine: - self.texts_gold = self.precision_recall_calc( - 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 - ) diff --git a/apis_core/helper_functions/pylobid.py b/apis_core/helper_functions/pylobid.py deleted file mode 100644 index 07c6823..0000000 --- a/apis_core/helper_functions/pylobid.py +++ /dev/null @@ -1,88 +0,0 @@ -import requests - - -def create_qs(row, cell, q_field="dateOfBirth", char_limit=0): - """turns the value of the cell into a lobid-querystring""" - try: - if len(row[cell]) > char_limit: - qs = "{}:{} ".format(q_field, row[cell]) - else: - qs = "{}:{}*".format(q_field, row[cell]) - except: - qs = "" - 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" - if add_fields: - filters = [] - for x in add_fields: - if x: - filters.append(row[x]) - search_url = "{} AND {}".format(search_url, "AND ".join(filters)) - 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""" - query = row[qs_field] - 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" - return result - if r: - if r.status_code == 200: - result["status"] = r.status_code - result["hits"] = r.json()["totalItems"] - if result["hits"] == 0: - gnd = [] - print("zero hits") - elif result["hits"] == 1: - print("one hit") - result["gnd"] = [r.json()["member"][0]["gndIdentifier"]] - else: - print("{} hits".format(result["hits"])) - result["gnd"] = [x["gndIdentifier"] for x in r.json()["member"]] - else: - result["status"] = r.status_code - return result - - -# do something like below to enrich a csv with lobid - -# import pandas as pd -# from pylobid import * -# -# file = "dump_from_gsheet/ASBW_persName.csv" -# df = pd.read_csv(file) -# df['dateOfBirth'] = df.apply( -# lambda row: create_qs(row, 'Geburtsdatum', q_field="dateOfBirth", char_limit=4), -# axis=1 -# ) -# df['dateOfDeath'] = df.apply( -# lambda row: create_qs(row, 'Todesdatum', q_field="dateOfDeath", char_limit=4), -# axis=1 -# ) -# df['forename'] = df.apply( -# lambda row: create_qs( -# row, 'Vorname', q_field="preferredNameEntityForThePerson.forename", char_limit=0 -# ), -# axis=1 -# ) -# df['surname'] = df.apply( -# lambda row: create_qs( -# row, 'Nachname', q_field="preferredNameEntityForThePerson.surname", char_limit=0 -# ), -# axis=1 -# ) -# df['query'] = df.apply( -# lambda row: lobid_qs(row, add_fields=['forename', 'dateOfBirth', 'dateOfDeath']), -# axis=1 -# ) diff --git a/apis_core/helper_functions/stanbolQueries.py b/apis_core/helper_functions/stanbolQueries.py deleted file mode 100644 index d77f2f5..0000000 --- a/apis_core/helper_functions/stanbolQueries.py +++ /dev/null @@ -1,184 +0,0 @@ -import json - -import requests - -from apis_core.default_settings.NER_settings import ( - StbGeoQuerySettings, - autocomp_settings, -) - - -def decide_score_stanbol(results, dec_diff): - if type(results) == dict: - 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.sort(key=lambda tup: tup[0], reverse=True) - if res2[0][0] > res2[1][0] + dec_diff: - return res2[0][1] - else: - return False - - -def find_geonames2(ca, name, adm=None, **kwargs): - headers = {"Content-Type": "application/json"} - ca_feature = ca.stored_feature - if not ca_feature: - return False - if adm: - ca_data = ca.get_data(name, adm) - else: - ca_data = ca.get_data(name) - ca.get_next_feature() - 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 dec: - return True, dec - else: - return False, res["results"] - else: - return False, False - else: - print(r.content) - - -def find_loc(lst, geonames_chains=False, dec_diff=5): - prev_elem = False - t = False - if not geonames_chains: - geonames_chains = [] - 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"} - 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} - 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(results) > 1: - test = decide_score_stanbol(results, dec_diff=dec_diff) - if test: - return True, test - else: - return False, results - elif len(results) == 1: - return True, results - else: - return False, False - elif len(lst) > 1: - for ind, c in enumerate(lst): - if ind < len(lst) - 1: - if not t: - t = StbGeoQuerySettings("admin") - if prev_elem: - countr = find_geonames2(t, c, prev_elem, dec_diff=dec_diff) - else: - countr = find_geonames2(t, c, dec_diff=dec_diff) - check = True - 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" - ): - prev_elem = ( - 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], - ) - check = False - if not countr[0]: - check = False - else: - check = False - else: - o = StbGeoQuerySettings("place") - if prev_elem: - place = find_geonames2(o, c, prev_elem, dec_diff=dec_diff) - else: - place = find_geonames2(o, c, dec_diff=dec_diff) - while place: - if place[1]: - return place - else: - if prev_elem: - place = find_geonames2(o, c, prev_elem, dec_diff=dec_diff) - else: - place = find_geonames2(o, c, dec_diff=dec_diff) - return False - - -def retrieve_obj(uri): - 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, - ) - if r.status_code == 200: - return r.json() - else: - 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, -): - results = [] - ids = [] - headers = {"Content-Type": "application/json"} - for chain in chains: - data = { - "limit": 100, - "name": q, - "ldpath": """name = ; - \nfeatureClass = ;\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 - ): - results.append(t) - ids.append(t["id"]) - if len(results) > 0: - dec_st = decide_score_stanbol(results, dec_diff) - if dec_st: - return True, dec_st - else: - return False, results - else: - return False, False diff --git a/apis_core/helper_functions/utils.py b/apis_core/helper_functions/utils.py index d7d11d5..9072a18 100644 --- a/apis_core/helper_functions/utils.py +++ b/apis_core/helper_functions/utils.py @@ -1,48 +1,3 @@ -from django.conf import settings -from apis_core.apis_vocabularies.models import PersonPlaceRelation, PersonPersonRelation - - -def access_for_all(self, viewtype="list"): - if self.request.user.is_authenticated: - return self.request.user.is_authenticated - elif viewtype == "list": - try: - access = settings.APIS_LIST_VIEWS_ALLOWED - except AttributeError: - access = False - return access - return access - else: - try: - access = settings.APIS_DETAIL_VIEWS_ALLOWED - except AttributeError: - access = False - return access - return access - - -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) - else: - return True - - -ENTITIES_DEFAULT_COLS = [ - "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/testrunners.py b/apis_core/testrunners.py deleted file mode 100644 index 3163476..0000000 --- a/apis_core/testrunners.py +++ /dev/null @@ -1,148 +0,0 @@ -from django.test.runner import DiscoverRunner -from django.contrib.contenttypes.models import ContentType as ct -from django.db.models import fields as ft_dj -import random -import string - - -def create_data(ft, ln=5): - print(ft) - if ft == ft_dj.CharField or ft == ft_dj.TextField: - return "".join(random.choices(string.ascii_letters + " ", k=ln)) - elif ft == ft_dj.IntegerField or ft == ft_dj.PositiveIntegerField: - return int("".join(random.choices(string.digits, k=ln))) - elif ft == ft_dj.DateField: - return ( - f"{random.randint(1, 30)}.{random.randint(1, 12)}.{random.randint(1, 2020)}" - ) - elif ft == ft_dj.BooleanField: - return bool(random.getrandbits(1)) - else: - print("didnt find any matching dt") - - -class APISTestRunner(DiscoverRunner): - def setup_databases(self, **kwargs): - old_names = super().setup_databases(**kwargs) - - lst_cont = [ - x.model_class() - for x in ct.objects.filter( - app_label__in=[ - "apis_metainfo", - "apis_vocabularies", - "apis_entities", - "apis_relations", - ] - ) - .exclude( - model__in=[ - "tempentityclass", - "texttype_collections", - "vocabnames", - "vocabsuri", - "uricandidate", - ] - ) - .exclude(model__icontains="baseclass") - ] - lst_sort = [ - ct.objects.get(app_label="apis_metainfo", model="uri").model_class() - ] - len_lst_cont = len(lst_cont) - len_lst_sort = len(lst_sort) - - while len(lst_cont) > len(lst_sort): - for c in lst_cont: - if c in lst_sort: - continue - check = True - for fld in c._meta.get_fields() + c._meta.many_to_many: - if "_set" in fld.name or fld.name in [ - "parent_class", - "vocab_name", - "userAdded", - "groups_allowed", - ]: - continue - if fld.__class__.__name__ in ["ForeignKey", "ManyToManyField"]: - if fld.related_model not in lst_sort: - print(f"{c} / {fld}") - check = False - if check: - lst_sort.append(c) - if len_lst_cont == len(lst_cont) and len_lst_sort == len(lst_sort): - print(lst_cont) - print(lst_sort) - print(len(lst_cont), len(lst_sort)) - fails = [x for x in lst_cont if x not in lst_sort] - print(f"the following ents failed: {fails}") - raise ValueError("no change in figures") - len_lst_cont = len(lst_cont) - len_lst_sort = len(lst_sort) - dict_ents = {} - l2 = lst_sort.pop() - lst_sort.append(l2) - print(lst_sort) - for ent in lst_sort[1:]: - print(ent) - print(f"working on {ent}") - c_1 = {} - for fld in ent._meta.get_fields(): - print(f"working on field {fld.name}") - ck = False - for pn in ["_ptr", "set", "baseclass"]: - if pn in fld.name: - ck = True - break - if fld.__class__.__name__ == "DateField" or ck: - continue - elif fld.name in [ - "parent_class", - "userAdded", - "vocab_name", - "id", - "vocabsuri", - ]: - continue - elif "date_written" in fld.name: - c_1[fld.name] = create_data(ft_dj.DateField) - elif fld.__class__.__name__ == "ForeignKey": - c_1[fld.name] = dict_ents[fld.related_model.__name__][ - random.randint( - 0, len(dict_ents[fld.related_model.__name__]) - 1 - ) - ] - elif ( - fld.__class__.__name__ != "ManyToManyField" - and fld.__class__.__name__ != "ManyToOneRel" - ): - c_1[fld.name] = create_data( - fld.__class__, - random.randint( - 1, - (fld.max_length if fld.max_length else 3) - if hasattr(fld, "max_length") - else 3, - ), - ) - print(c_1) - c_1_obj = ent.objects.create(**c_1) - for fld in c._meta.many_to_many: - if "_set" in fld.name: - continue - getattr(c_1_obj, fld.name).add( - dict_ents[fld.related_model.__name__][ - random.randint( - 0, len(dict_ents[fld.related_model.__name__]) - 1 - ) - ] - ) - if ent.__class__.__name__ not in dict_ents.keys(): - dict_ents[ent.__name__] = [ - c_1_obj, - ] - else: - dict_ents[ent.__name__].append(c_1_obj) - print(f"created {c_1_obj}") - return old_names diff --git a/apis_core/urls.py b/apis_core/urls.py index 91c074c..4f37615 100644 --- a/apis_core/urls.py +++ b/apis_core/urls.py @@ -1,11 +1,10 @@ +import os from django.urls import path from django.conf.urls import include from rest_framework import routers from apis_core.api_routers import views -from apis_core.apis_entities.api_views import ( - PlaceGeoJsonViewSet, -) + from apis_core.apis_vocabularies.api_views import UserViewSet from apis_core.helper_functions.ContentType import GetContentTypes from apis_core.apis_metainfo.views import beacon @@ -25,35 +24,39 @@ model_str.lower(), ) except Exception as e: - print("{} not found, skipping".format(model_str.lower())) + print(f"Error: {e}{model_str.lower()} not found, skipping") + print(f"{model_str.lower()} not found, skipping") router.register("users", UserViewSet) -router.register("GeoJsonPlace", PlaceGeoJsonViewSet, "PlaceGeoJson") - -urlpatterns = [ - path("beacon/", beacon, name="beacon"), - path("labels/", include("apis_core.apis_labels.urls", namespace="apis_labels")), - path("tei/", include("apis_core.apis_tei.tei_urls", namespace="apis_tei")), - path( - "entities/", include("apis_core.apis_entities.urls", namespace="apis_entities") - ), - path("openrefine/", include("apis_core.openrefine.urls", namespace="openrefine")), - path( - "relations/", - include("apis_core.apis_relations.urls", namespace="apis_relations"), - ), - path( - "vocabularies/", - include("apis_core.apis_vocabularies.urls", namespace="apis_vocabularies"), - ), - path( - "metainfo/", - include("apis_core.apis_metainfo.urls", namespace="apis_metainfo"), - ), - path( - "metainfo-ac/", - include("apis_core.apis_metainfo.dal_urls", namespace="apis_metainfo-ac"), - ), -] +if os.environ.get("NEW_PMB"): + urlpatterns = [ + path("beacon/", beacon, name="beacon"), + ] +else: + urlpatterns = [ + path("beacon/", beacon, name="beacon"), + path("labels/", include("apis_core.apis_labels.urls", namespace="apis_labels")), + path("tei/", include("apis_core.apis_tei.tei_urls", namespace="apis_tei")), + path( + "entities/", include("apis_core.apis_entities.urls", namespace="apis_entities") + ), + path("openrefine/", include("apis_core.openrefine.urls", namespace="openrefine")), + path( + "relations/", + include("apis_core.apis_relations.urls", namespace="apis_relations"), + ), + path( + "vocabularies/", + include("apis_core.apis_vocabularies.urls", namespace="apis_vocabularies"), + ), + path( + "metainfo/", + include("apis_core.apis_metainfo.urls", namespace="apis_metainfo"), + ), + path( + "metainfo-ac/", + include("apis_core.apis_metainfo.dal_urls", namespace="apis_metainfo-ac"), + ), + ] diff --git a/browsing/migrations/0001_initial.py b/browsing/migrations/0001_initial.py index d652f48..2081612 100644 --- a/browsing/migrations/0001_initial.py +++ b/browsing/migrations/0001_initial.py @@ -4,7 +4,6 @@ class Migration(migrations.Migration): - initial = True dependencies = [] diff --git a/browsing/migrations/0002_delete_browsconf.py b/browsing/migrations/0002_delete_browsconf.py index da66a33..85c0225 100644 --- a/browsing/migrations/0002_delete_browsconf.py +++ b/browsing/migrations/0002_delete_browsconf.py @@ -4,7 +4,6 @@ class Migration(migrations.Migration): - dependencies = [ ("browsing", "0001_initial"), ] diff --git a/browsing/templatetags/browsing_extras.py b/browsing/templatetags/browsing_extras.py index e7c60e4..4c79633 100644 --- a/browsing/templatetags/browsing_extras.py +++ b/browsing/templatetags/browsing_extras.py @@ -6,7 +6,6 @@ @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""" diff --git a/create_fixtures.sh b/create_fixtures.sh new file mode 100755 index 0000000..9058d94 --- /dev/null +++ b/create_fixtures.sh @@ -0,0 +1,9 @@ +#!/bin/bash +fixtures="apis_core/apis_entities/fixtures/db.json" +echo "dumping fixtures into ${fixtures}" +python manage.py dumpdata --natural-primary > ${fixtures} + +echo "modify urls" +sed -i 's/acdh.oeaw.ac.at/hansi4ever/g' ${fixtures} + +echo "done" \ No newline at end of file diff --git a/dump_and_restore.sh b/dump_and_restore.sh new file mode 100755 index 0000000..7460c2b --- /dev/null +++ b/dump_and_restore.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +pg_dump -d pmb -h localhost -p 5432 -U postgres -c -f pmb_dump.sql +pg_dump -d pmb_play -h localhost -p 5432 -U postgres -c -f pmb_play_dump.sql + diff --git a/dumper/management/commands/dump_entities.py b/dumper/management/commands/dump_entities.py index 38e3338..cf5d04e 100644 --- a/dumper/management/commands/dump_entities.py +++ b/dumper/management/commands/dump_entities.py @@ -40,7 +40,6 @@ def add_arguments(self, parser): ) 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") diff --git a/dumper/views.py b/dumper/views.py index 544a4b9..74e9ad8 100644 --- a/dumper/views.py +++ b/dumper/views.py @@ -9,7 +9,6 @@ class HomePageView(TemplateView): - template_name = "dumper/index.html" def get_context_data(self, *args, **kwargs): diff --git a/pmb/settings.py b/pmb/settings.py index 5755aaa..c95b8c7 100644 --- a/pmb/settings.py +++ b/pmb/settings.py @@ -27,6 +27,7 @@ "apis_override_select2js", "dal", "dal_select2", + "django_extensions", "django.contrib.admin", "django.contrib.auth", "django.contrib.contenttypes", @@ -51,11 +52,6 @@ CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5" CRISPY_TEMPLATE_PACK = "bootstrap5" -if os.environ.get("DEV"): - INSTALLED_APPS = INSTALLED_APPS + [ - "django_extensions", - ] - CSRF_USE_SESSIONS = True @@ -182,9 +178,7 @@ OWNCLOUD_PW = os.environ.get("OWNCLOUD_PW") PMB_LOG_FILE = os.path.join(MEDIA_ROOT, "pmb-log.csv") PMB_TIME_PATTERN = "%Y-%m-%d::%H:%M:%S" -PMB_DETAIL_VIEW_PATTERN = ( - "https://pmb.acdh.oeaw.ac.at/apis/entities/entity/{}/{}/detail" -) + APIS_ENTITIES = { "Place": { "merge": True, diff --git a/pmb/urls.py b/pmb/urls.py index 034aa48..83f38f8 100644 --- a/pmb/urls.py +++ b/pmb/urls.py @@ -3,12 +3,9 @@ from django.conf import settings from django.conf.urls.static import static -from apis_core.apis_entities.api_views import GetEntityGeneric - urlpatterns = [ path("apis/", include("apis_core.urls", namespace="apis")), - path("entity//", GetEntityGeneric.as_view(), name="GetEntityGenericRoot"), path("admin/", admin.site.urls), path("arche/", include("archemd.urls")), path("", include("dumper.urls", namespace="dumper")), diff --git a/requirements.txt b/requirements.txt index 247c843..b0ec769 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -apis-override-select2js-0.1 +apis-override-select2js==0.1 acdh-django-browsing acdh-id-reconciler>=0.2,<1 acdh-tei-pyutils>=0.34,<1 -Django>4.1,<5 +Django>4.1,<6 django-admin-csvexport django-autocomplete-light django-crispy-forms @@ -10,11 +10,9 @@ django-extensions django-model-utils django-tables2 djangorestframework -gunicorn==20.1.0 -celery>=5.2.7,<6 pandas psycopg2 pyocclient==0.6 -PyYAML>=6.0.1,<7 -rdflib -icecream \ No newline at end of file +icecream +flake8 +black \ No newline at end of file diff --git a/requirements_dev.txt b/requirements_dev.txt new file mode 100644 index 0000000..e9d4053 --- /dev/null +++ b/requirements_dev.txt @@ -0,0 +1,2 @@ +-r requirements.txt +coverage \ No newline at end of file diff --git a/set_env_variables.sh b/set_env_variables.sh index 77758e8..e0a3156 100644 --- a/set_env_variables.sh +++ b/set_env_variables.sh @@ -1 +1 @@ -export $(grep -v '^#' .secret | xargs) \ No newline at end of file +export $(grep -v '^#' .env | xargs) \ No newline at end of file diff --git a/templates/partials/entity_styles.html b/templates/partials/entity_styles.html new file mode 100644 index 0000000..08ac2ff --- /dev/null +++ b/templates/partials/entity_styles.html @@ -0,0 +1,21 @@ +{% if entity_type %} + +{% endif %} \ No newline at end of file