Module:Messtischblatt/data

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search
Lua
CodeDiscussionEditHistoryLinksLink count Subpages:DocumentationTestsResultsSandboxLive code All modules

Documentation for this module may be created at Module:Messtischblatt/data/doc

Code

-- Messtischblatt map sheets were assigned a grid-id, printed on the sheet.
--   grid-id was introduced by the Reichsamt für Landesaufnahme, Berlin and
--   uniquely identifies the geographical bounding box used on a given sheet

--   E.g.  All map sheets using the grid-id 4640 share a common bbox of
--         limits east=12°20' north=51°24' west=12°30' south=51°18' and
--         are located at row 46 and colum 40 within the whole grid.
--         Its neighbor sheets are   ..     4540     ..
--                                   4639 | 4640 | 4641
--                                   ..     4740     ..

--   Preceeding land surveys did not use a two-dimensional numbering scheme,
--   but rather used a sequential id.  However, the bounding boxes used do
--   not differ from the ones used in later surveys, so more often than not
--   sequential ids could simply be replaced by the corresponding grid-id.

--   This is why you will find physical media that carry more than one id.
--   An extreme are sheets produced after the first prussian land survey,
--   sometimes they were updated twice:
--     * with the id of the sequential numbering system of the 2nd prus. survey
--     * with the grid-id when it was introduced in 1937


-- The data structure uses grid-id as a key in an associative array/table.
-- Accessible values will contain a list/table of metadata about all sheet
-- editions that depict a map of the geographic region implied by grid-id.

-- Fields for a grid-id value are
--   title .. the predominant title used in map sheet prints for the region
--   t_now .. optional. current TK25 title, if different from predominant title
--   bavar .. optional.        bavarian land survey sequential id
--   saxon .. optional.           saxon land survey sequential id
--   prus1 .. optional.  first prussian land survey sequential id
--   prus2 .. optional. second prussian land survey sequential id
--   { editions } .. optional. see below

-- Fields for each edition, i.e. each sheet published, are
--   year_pub    .. the year the map was published (as printed on the map sheet)
--   year_rec    .. the year the data was recorded (as printed on the map sheet)
--   rec_office  .. the map office                 (as printed on the map sheet)
--   sheet_title .. title of the map   (if different to predominant title above)
--   { urls }    .. a table with permalinks to online images of the map sheet,
--                  may include a link to commons

-- Note: re-released sheets with official corrections (denoted with "Nachtrag",
--       "einzelne Nachträge" on the sheet) are treated as separate editions,
--       i.e. year_pub must always be the latest year /printed/ on the sheet.
--       try to avoid interpreting pencil marks, esp. regarding dates.


local mtb = {
    ["0192"] = {
      title = "Nimmersatt",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051490",
          },
        },
      },
    },
    ["0193"] = {
      title = "Deutsch Crottingen",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051491",
          },
        },
      },
    },
    ["0194"] = {
      title = "Jakubowo",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051492",
          },
        },
      },
    },
    ["0292"] = {
      title = "Memel",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051493",
          },
        },
      },
    },
    ["0293"] = {
      title = "Plicken",
      editions = { 
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051494",
          },
        },
      },
    },
    ["0294"] = {
      title = "Laugallen",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051495",
          },
        },
      },
    },
    ["0392"] = {
      title = "Schmelz",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051496",
          },
        },
      },
    },
    ["0393"] = {
      title = "Götzhöfen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051497",
          },
        },
      },
    },
    ["0394"] = {
      title = "Dawillen",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051498",
          },
        },
      },
    },
    ["0492"] = {
      title = "Schwarzort",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051499",
          },
        },
      },
    },
    ["0493"] = {
      title = "Prökuls",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051500",
          },
        },
      },
    },
    ["0494"] = {
      title = "Wilkieten",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051501",
          },
        },
      },
    },
    ["0495"] = {
      title = "Grünheide bei Wilkieten",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051502",
          },
        },
      },
    },
    ["0519"] = {
      title = "Lintrup",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051503",
          },
        },
      },
    },
    ["0520"] = {
      title = "Schottburg",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051504",
          },
        },
      },
    },
    ["0521"] = {
      title = "Skudstrup",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051505",
          },
        },
      },
    },
    ["0592"] = {
      title = "Perwelk",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051506",
          },
        },
      },
    },
    ["0593"] = {
      title = "Kinten",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051507",
          },
        },
      },
    },
    ["0594"] = {
      title = "Kukoreiten",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051508",
          },
        },
      },
    },
    ["0595"] = {
      title = "Berzischken",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051509",
          },
        },
      },
    },
    ["0619"] = {
      title = "Hügum",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051510",
          },
        },
      },
    },
    ["0620"] = {
      title = "Rödding",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051511",
          },
        },
      },
    },
    ["0621"] = {
      title = "Jels",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051512",
          },
        },
      },
    },
    ["0622"] = {
      title = "Christiansfeld",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051513",
          },
        },
      },
    },
    ["0623"] = {
      title = "Aller",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051514",
          },
        },
      },
    },
    ["0692"] = {
      title = "Nidden",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051515",
          },
        },
      },
    },
    ["0693"] = {
      title = "Minge",
      editions = { 
        { 
          pub_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051516",
          },
        },
      },
    },
    ["0694"] = {
      title = "Heydekrug",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051517",
          },
        },
      },
    },
    ["0695"] = {
      title = "Gaidellen",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051518",
          },
        },
      },
    },
    ["0696"] = {
      title = "Wersmeninken",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051519",
          },
        },
      },
    },
    ["0697"] = {
      title = "Ackmonischken",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051520",
          },
        },
      },
    },
    ["0717"] = {
      title = "Hvidding-Ufer",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051521",
          },
        },
      },
    },
    ["0718"] = {
      title = "Hvidding",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051522",
          },
        },
      },
    },
    ["0719"] = {
      title = "Spandet",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051523",
          },
        },
      },
    },
    ["0720"] = {
      title = "Gramm",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051524",
          },
        },
      },
    },
    ["0721"] = {
      title = "Skrydstrup",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051525",
          },
        },
      },
    },
    ["0722"] = {
      title = "Hadersleben",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051526",
          },
        },
      },
    },
    ["0723"] = {
      title = "Grarup",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051527",
          },
        },
      },
    },
    ["0724"] = {
      title = "Aarö",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051528",
          },
        },
      },
    },
    ["0791"] = {
      title = "Pillkoppen",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051529",
          },
        },
      },
    },
    ["0793"] = {
      title = "Skirwiet",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051530",
          },
        },
      },
    },
    ["0794"] = {
      title = "Ruß",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051531",
          },
        },
      },
    },
    ["0795"] = {
      title = "Uszlöknen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051532",
          },
        },
      },
    },
    ["0796"] = {
      title = "Coadjuthen",
      editions = { 
        { 
          pub_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051533",
          },
        },
      },
    },
    ["0797"] = {
      title = "Nattkischken",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051534",
          },
        },
      },
    },
    ["0798"] = {
      title = "Uszkullmen",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051535",
          },
        },
      },
    },
    ["0799"] = {
      title = "Laugszargen",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051536",
          },
        },
      },
    },
    ["0816"] = {
      title = "Haff-Sand",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051539",
          },
        },
      },
    },
    ["0817"] = {
      title = "Kirkeby",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051540",
          },
        },
      },
    },
    ["0818"] = {
      title = "Bröns",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051541",
          },
        },
      },
    },
    ["0819"] = {
      title = "Arrild",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051542",
          },
        },
      },
    },
    ["0820"] = {
      title = "Toftlund",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051543",
          },
        },
      },
    },
    ["0821"] = {
      title = "Rauberg",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051544",
          },
        },
      },
    },
    ["0822"] = {
      title = "Hoptrup",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051545",
          },
        },
      },
    },
    ["0823"] = {
      title = "Süder Wilstrup",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051546",
          },
        },
      },
    },
    ["0824"] = {
      title = "Halkerhöft",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051547",
          },
        },
      },
    },
    ["0890"] = {
      title = "Kunzen",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051548",
          },
        },
      },
    },
    ["0891"] = {
      title = "Rossitten",
      editions = { 
        { 
          pub_year = 1933,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051549",
          },
        },
      },
    },
    ["0893"] = {
      title = "Kallningken",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051550",
          },
        },
      },
    },
    ["0894"] = {
      title = "Spucken",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051551",
          },
        },
      },
    },
    ["0895"] = {
      title = "Kuckerneese",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051552",
          },
        },
      },
    },
    ["0896"] = {
      title = "Rucken",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051553",
          },
        },
      },
    },
    ["0897"] = {
      title = "Pogegen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051554",
          },
        },
      },
    },
    ["0898"] = {
      title = "Willkischken",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051555",
          },
        },
      },
    },
    ["0899"] = {
      title = "Szugken",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051556",
          },
        },
      },
    },
    ["08100"] = {
      title = "Leibgirren",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051537",
          },
        },
      },
    },
    ["08101"] = {
      title = "Forst Schmalleningken",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051538",
          },
        },
      },
    },
    ["0916"] = {
      title = "List (Insel Sylt)",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051559",
          },
        },
      },
    },
    ["0917"] = {
      title = "Jerpstedt",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051560",
          },
        },
      },
    },
    ["0918"] = {
      title = "Schads",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051561",
          },
        },
      },
    },
    ["0919"] = {
      title = "Lügumkloster",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051562",
          },
        },
      },
    },
    ["0920"] = {
      title = "Bedstedt",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051563",
          },
        },
      },
    },
    ["0921"] = {
      title = "Jordkirch",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051564",
          },
        },
      },
    },
    ["0922"] = {
      title = "Apenrade",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051565",
          },
        },
      },
    },
    ["0923"] = {
      title = "Warnitz",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051566",
          },
        },
      },
    },
    ["0924"] = {
      title = "Norburg (Insel Alsen)",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051567",
          },
        },
      },
    },
    ["0925"] = {
      title = "Tarup (Insel Alsen)",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051568",
          },
        },
      },
    },
    ["0989"] = {
      title = "Sarkau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051569",
          },
        },
      },
    },
    ["0990"] = {
      title = "Mövenhaken",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051570",
          },
        },
      },
    },
    ["0993"] = {
      title = "Gilge",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051571",
          },
        },
      },
    },
    ["0994"] = {
      title = "Rauterskirch",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051572",
          },
        },
      },
    },
    ["0995"] = {
      title = "Neukirch",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051573",
          },
        },
      },
    },
    ["0996"] = {
      title = "Heinrichswalde",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051574",
          },
        },
      },
    },
    ["0997"] = {
      title = "Tilsit",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051575",
          },
        },
      },
    },
    ["0998"] = {
      title = "Ragnit",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051576",
          },
        },
      },
    },
    ["0999"] = {
      title = "Baltupönen",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051577",
          },
        },
      },
    },
    ["09100"] = {
      title = "Wischwill",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051557",
          },
        },
      },
    },
    ["09101"] = {
      title = "Schmalleningken",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051558",
          },
        },
      },
    },
    ["1015"] = {
      title = "Westerland (Insel Sylt)",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051581",
          },
        },
      },
    },
    ["1016"] = {
      title = "Kampen (Insel Sylt)",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051582",
          },
        },
      },
    },
    ["1017"] = {
      title = "Rodenäs",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051583",
          },
        },
      },
    },
    ["1018"] = {
      title = "Hoyer",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051584",
          },
        },
      },
    },
    ["1019"] = {
      title = "Tondern",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051585",
          },
        },
      },
    },
    ["1020"] = {
      title = "Bülderup",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051586",
          },
        },
      },
    },
    ["1021"] = {
      title = "Tingleff",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051587",
          },
        },
      },
    },
    ["1022"] = {
      title = "Klipleff",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051588",
          },
        },
      },
    },
    ["1023"] = {
      title = "Gravenstein",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051589",
          },
        },
      },
    },
    ["1024"] = {
      title = "Sonderburg",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051590",
          },
        },
      },
    },
    ["1025"] = {
      title = "Augustenburg",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051591",
          },
        },
      },
    },
    ["1026"] = {
      title = "Mummark (Insel Alsen)",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051592",
          },
        },
      },
    },
    ["1085"] = {
      title = "Groß Dirschkeim",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051593",
          },
        },
      },
    },
    ["1086"] = {
      title = "Rauschen",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051594",
          },
        },
      },
    },
    ["1087"] = {
      title = "Neukuhren",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051595",
          },
        },
      },
    },
    ["1088"] = {
      title = "Cranz",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051596",
          },
        },
      },
    },
    ["1089"] = {
      title = "Bledau",
      editions = { 
        { 
          pub_year = 1922,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051597",
          },
        },
      },
    },
    ["1090"] = {
      title = "Postnicken (West)",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051598",
          },
        },
      },
    },
    ["1091"] = {
      title = "Postnicken (Ost)",
      editions = { 
        { 
          pub_year = 1922,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051599",
          },
        },
      },
    },
    ["1092"] = {
      title = "Rinderort",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051600",
          },
        },
      },
    },
    ["1093"] = {
      title = "Nemonien",
      editions = { 
        { 
          pub_year = 1922,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051601",
          },
        },
      },
    },
    ["1094"] = {
      title = "Lauknen",
      editions = { 
        { 
          pub_year = 1922,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051602",
          },
        },
      },
    },
    ["1095"] = {
      title = "Osseninken",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051603",
          },
        },
      },
    },
    ["1096"] = {
      title = "Königskirch",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051604",
          },
        },
      },
    },
    ["1097"] = {
      title = "Schillen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051605",
          },
        },
      },
    },
    ["1098"] = {
      title = "Hohensalzburg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051606",
          },
        },
      },
    },
    ["1099"] = {
      title = "Altenkirch",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051607",
          },
        },
      },
    },
    ["10100"] = {
      title = "Haselberg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051578",
          },
        },
      },
    },
    ["10101"] = {
      title = "Tulpeningen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051579",
          },
        },
      },
    },
    ["10102"] = {
      title = "Grenzhöhe",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051580",
          },
        },
      },
    },
    ["1115"] = {
      title = "Rantum (Insel Sylt)",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051612",
          },
        },
      },
    },
    ["1116"] = {
      title = "Morsum (Insel Sylt)",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051613",
          },
        },
      },
    },
    ["1117"] = {
      title = "Horsbüll",
      t_now = "Friedrich-Wilhelm-Lübke-Koog",
      editions = { 
        { 
          pub_year = 1930,
          rec_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051614",
          },
        },
      },
    },
    ["1118"] = {
      title = "Neukirchen in Schleswig",
      t_now = "Neukirchen",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051615",
          },
        },
      },
    },
    ["1119"] = {
      title = "Süder-Lügum",
      t_now = "Süderlügum",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051616",
          },
        },
      },
    },
    ["1120"] = {
      title = "Ladelund",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051617",
          },
        },
      },
    },
    ["1121"] = {
      title = "Weibek",
      t_now = "Medelby",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051618",
          },
        },
      },
    },
    ["1122"] = {
      title = "Bau",
      t_now = "Flensburg (Nord)",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051619",
          },
        },
      },
    },
    ["1123"] = {
      title = "Glücksburg",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051620",
          },
        },
      },
    },
    ["1124"] = {
      title = "Broacker",
      t_now = "Westerholz",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051621",
          },
        },
      },
    },
    ["1125"] = {
      title = "Kekenis (Insel Alsen)",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051622",
          },
        },
      },
    },
    ["1126"] = {
      title = "Lysabbel (Insel Alsen)",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051623",
          },
        },
      },
    },
    ["1173"] = {
      title = "Wittenberg in Pommern",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051624",
          },
        },
      },
    },
    ["1174"] = {
      title = "Dembeck",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051625",
          },
        },
      },
    },
    ["1175"] = {
      title = "Ostrau",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051626",
          },
        },
      },
    },
    ["1176"] = {
      title = "Rixhöft",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051627",
          },
        },
      },
    },
    ["1185"] = {
      title = "Palmnicken",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051628",
          },
        },
      },
    },
    ["1186"] = {
      title = "Germau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051629",
          },
        },
      },
    },
    ["1187"] = {
      title = "Pobethen",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051630",
          },
        },
      },
    },
    ["1188"] = {
      title = "Rudau",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051631",
          },
        },
      },
    },
    ["1189"] = {
      title = "Powunden",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051632",
          },
        },
      },
    },
    ["1190"] = {
      title = "Schaaken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051633",
          },
        },
      },
    },
    ["1191"] = {
      title = "Lablacken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051634",
          },
        },
      },
    },
    ["1192"] = {
      title = "Labiau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051635",
          },
        },
      },
    },
    ["1193"] = {
      title = "Laukischken",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051636",
          },
        },
      },
    },
    ["1194"] = {
      title = "Eichenrode in Ostpreußen",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051637",
          },
        },
      },
    },
    ["1195"] = {
      title = "Kreuzingen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051638",
          },
        },
      },
    },
    ["1196"] = {
      title = "Aulenbach in Ostpreußen",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051639",
          },
        },
      },
    },
    ["1197"] = {
      title = "Grünheide",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051640",
          },
        },
      },
    },
    ["1198"] = {
      title = "Breitenstein in Ostpreußen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051641",
          },
        },
      },
    },
    ["1199"] = {
      title = "Rautenberg",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051642",
          },
        },
      },
    },
    ["11100"] = {
      title = "Schmilgen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051608",
          },
        },
      },
    },
    ["11101"] = {
      title = "Grumbkowsfelde",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051609",
          },
        },
      },
    },
    ["11102"] = {
      title = "Schillfelde",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051610",
          },
        },
      },
    },
    ["11103"] = {
      title = "Brämerhusen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051611",
          },
        },
      },
    },
    ["1215"] = {
      title = "Hörnum-Odde",
      t_now = "Hörnum (Insel Sylt)",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051647",
          },
        },
      },
    },
    ["1216"] = {
      title = "Borgsum",
      t_now = "Borgsum (Insel Föhr)",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051648",
          },
        },
      },
    },
    ["1217"] = {
      title = "Midlum (Insel Föhr)",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051649",
          },
        },
      },
    },
    ["1218"] = {
      title = "Deezbüll",
      t_now = "Niebüll",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051650",
          },
        },
      },
    },
    ["1219"] = {
      title = "Leck",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051651",
          },
        },
      },
    },
    ["1220"] = {
      title = "Achtrup",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051652",
          },
        },
      },
    },
    ["1221"] = {
      title = "Wallsbüll",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051653",
          },
        },
      },
    },
    ["1222"] = {
      title = "Flensburg",
      t_now = "Flensburg (Süd)",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051654",
          },
        },
      },
    },
    ["1223"] = {
      title = "Husby",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051655",
          },
        },
      },
    },
    ["1224"] = {
      title = "Sterup",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051656",
          },
        },
      },
    },
    ["1225"] = {
      title = "Gelting",
      t_now = "Gelting; Oehe",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051657",
          },
        },
      },
    },
    ["1226"] = {
      title = "Öhe",
      t_now = "Gelting; Oehe (Anhang)",
      editions = { 
        { 
          pub_year = 1922,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051658",
          },
        },
      },
    },
    ["1269"] = {
      title = "Scholpin",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051659",
          },
        },
      },
    },
    ["1270"] = {
      title = "Leba-See",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051660",
          },
        },
      },
    },
    ["1271"] = {
      title = "Leba",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051661",
          },
        },
      },
    },
    ["1272"] = {
      title = "Sassin",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051662",
          },
        },
      },
    },
    ["1273"] = {
      title = "Ossecken",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015215",
          },
        },
      },
    },
    ["1274"] = {
      title = "Zarnowitz",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051663",
          },
        },
      },
    },
    ["1275"] = {
      title = "Mechau",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051664",
          },
        },
      },
    },
    ["1276"] = {
      title = "Putzig",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051665",
          },
        },
      },
    },
    ["1277"] = {
      title = "Kußfeld",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051666",
          },
        },
      },
    },
    ["1285"] = {
      title = "Lochstädt",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051667",
          },
        },
      },
    },
    ["1286"] = {
      title = "Fischhausen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051668",
          },
        },
      },
    },
    ["1287"] = {
      title = "Medenau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051669",
          },
        },
      },
    },
    ["1288"] = {
      title = "Königsberg in Preußen (West)",
      editions = { 
        { 
          pub_year = 1930,
          sheet_title = "Königsberg in Preußen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051670",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051671",
          },
        },
      },
    },
    ["1289"] = {
      title = "Königsberg in Preußen (Ost)",
      editions = { 
        { 
          pub_year = 1933,
          sheet_title = "Königsberg in Preußen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051672",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051673",
          },
        },
      },
    },
    ["1290"] = {
      title = "Schönwalde in Ostpreußen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051674",
          },
        },
      },
    },
    ["1291"] = {
      title = "Kaimen",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051675",
          },
        },
      },
    },
    ["1292"] = {
      title = "Goldbach",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051676",
          },
        },
      },
    },
    ["1293"] = {
      title = "Alt Gertlauken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051677",
          },
        },
      },
    },
    ["1294"] = {
      title = "Schirrau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051678",
          },
        },
      },
    },
    ["1295"] = {
      title = "Gutfließ",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051679",
          },
        },
      },
    },
    ["1296"] = {
      title = "Birken in Ostpreußen",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051680",
          },
        },
      },
    },
    ["1297"] = {
      title = "Neunassau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051681",
          },
        },
      },
    },
    ["1298"] = {
      title = "Stablacken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051682",
          },
        },
      },
    },
    ["1299"] = {
      title = "Mallwen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051683",
          },
        },
      },
    },
    ["12100"] = {
      title = "Kussen",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051643",
          },
        },
      },
    },
    ["12101"] = {
      title = "Pillkallen",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051644",
          },
        },
      },
    },
    ["12102"] = {
      title = "Sodargen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051645",
          },
        },
      },
    },
    ["12103"] = {
      title = "Schirwindt",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051646",
          },
        },
      },
    },
    ["1315"] = {
      title = "Kniep-Hafen",
      t_now = "Kniepsand (Insel Amrum)",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051687",
          },
        },
      },
    },
    ["1316"] = {
      title = "Nieblum",
      t_now = "Nieblum (Insel Föhr)",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051688",
          },
        },
      },
    },
    ["1317"] = {
      title = "Wyk (Insel Föhr)",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051689",
          },
        },
      },
    },
    ["1318"] = {
      title = "Ockholm",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051690",
          },
        },
      },
    },
    ["1319"] = {
      title = "Bredstedt",
      editions = { 
        { 
          pub_year = 1931,
          rec_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051691",
          },
        },
      },
    },
    ["1320"] = {
      title = "Drelsdorf",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051692",
          },
        },
      },
    },
    ["1321"] = {
      title = "Groß Jörl",
      t_now = "Jörl",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051693",
          },
        },
      },
    },
    ["1322"] = {
      title = "Eggebek",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051694",
          },
        },
      },
    },
    ["1323"] = {
      title = "Ülsby",
      t_now = "Satrup",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051695",
          },
        },
      },
    },
    ["1324"] = {
      title = "Süderbrarup",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051696",
          },
        },
      },
    },
    ["1325"] = {
      title = "Kappeln",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051697",
          },
        },
      },
    },
    ["1326"] = {
      title = "Schönhagen",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051698",
          },
        },
      },
    },
    ["1344"] = {
      title = "Kloster (Anhang)",
    },
    ["1345"] = {
      title = "Wiek",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051699",
          },
        },
      },
    },
    ["1346"] = {
      title = "Altenkirchen",
      editions = { 
        { 
          pub_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051701",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051700",
          },
        },
      },
    },
    ["1367"] = {
      title = "Neu-Strand",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051702",
          },
        },
      },
    },
    ["1368"] = {
      title = "Wobesde",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051703",
          },
        },
      },
    },
    ["1369"] = {
      title = "Schmolsin",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051704",
          },
        },
      },
    },
    ["1370"] = {
      title = "Glowitz",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051705",
          },
        },
      },
    },
    ["1371"] = {
      title = "Degendorf",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051706",
          },
        },
      },
    },
    ["1372"] = {
      title = "Tauenzin",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051707",
          },
        },
      },
    },
    ["1373"] = {
      title = "Saulin",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051708",
          },
        },
      },
    },
    ["1374"] = {
      title = "Gohra",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051709",
          },
        },
      },
    },
    ["1375"] = {
      title = "Neustadt in Westpreußen",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051710",
          },
        },
      },
    },
    ["1376"] = {
      title = "Rheda",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051711",
          },
        },
      },
    },
    ["1378"] = {
      title = "Hela",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051712",
          },
        },
      },
    },
    ["1385"] = {
      title = "Pillau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051713",
          },
        },
      },
    },
    ["1386"] = {
      title = "Zimmerbude",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051714",
          },
        },
      },
    },
    ["1387"] = {
      title = "Brandenburg (Frisches Haff)",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051715",
          },
        },
      },
    },
    ["1388"] = {
      title = "Ponarth",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051716",
          },
        },
      },
    },
    ["1389"] = {
      title = "Ludwigswalde",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051717",
          },
        },
      },
    },
    ["1390"] = {
      title = "Löwenhagen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051718",
          },
        },
      },
    },
    ["1391"] = {
      title = "Groß Lindenau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051719",
          },
        },
      },
    },
    ["1392"] = {
      title = "Tapiau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051720",
          },
        },
      },
    },
    ["1393"] = {
      title = "Wehlau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051721",
          },
        },
      },
    },
    ["1394"] = {
      title = "Puschdorf",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051722",
          },
        },
      },
    },
    ["1395"] = {
      title = "Norkitten",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051723",
          },
        },
      },
    },
    ["1396"] = {
      title = "Insterburg",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051724",
          },
        },
      },
    },
    ["1397"] = {
      title = "Luisenberg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051725",
          },
        },
      },
    },
    ["1398"] = {
      title = "Gerwen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051726",
          },
        },
      },
    },
    ["1399"] = {
      title = "Roßlinde",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051727",
          },
        },
      },
    },
    ["13100"] = {
      title = "Kattenau",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051684",
          },
        },
      },
    },
    ["13101"] = {
      title = "Stallupönen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051685",
          },
        },
      },
    },
    ["13102"] = {
      title = "Eydtkau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051686",
          },
        },
      },
    },
    ["1416"] = {
      title = "Seesand",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051731",
          },
        },
      },
    },
    ["1417"] = {
      title = "Hooge",
      t_now = "Pellworm",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051732",
          },
        },
      },
    },
    ["1418"] = {
      title = "Nordstrandischmoor",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051733",
          },
        },
      },
    },
    ["1419"] = {
      title = "Wobbenbüll",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051734",
          },
        },
      },
    },
    ["1420"] = {
      title = "Hattstedt",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051735",
          },
        },
      },
    },
    ["1421"] = {
      title = "Viöl",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051736",
          },
        },
      },
    },
    ["1422"] = {
      title = "Jübek",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051737",
          },
        },
      },
    },
    ["1423"] = {
      title = "Schleswig",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051738",
          },
        },
      },
    },
    ["1424"] = {
      title = "Brodersby",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051739",
          },
        },
      },
    },
    ["1425"] = {
      title = "Sieseby",
      t_now = "Holzdorf",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051740",
          },
        },
      },
    },
    ["1426"] = {
      title = "Dorotheenthal",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051741",
          },
        },
      },
    },
    ["1432"] = {
      title = "Westermarkelsdorf (Insel Fehmarn)",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051742",
          },
        },
      },
    },
    ["1433"] = {
      title = "Krummensiek (Insel Fehmarn)",
      t_now = "Puttgarden (Insel Fehmarn)",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051743",
          },
        },
      },
    },
    ["1444"] = {
      title = "Kloster",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051744",
          },
        },
      },
    },
    ["1445"] = {
      title = "Trent",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051745",
          },
        },
      },
    },
    ["1446"] = {
      title = "Rappin",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051746",
          },
        },
      },
    },
    ["1447"] = {
      title = "Sagard",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051747",
          },
        },
      },
    },
    ["1448"] = {
      title = "Sagard (Anhang)",
    },
    ["1464"] = {
      title = "Vitte",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051748",
          },
        },
      },
    },
    ["1465"] = {
      title = "Lanzig",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051749",
          },
        },
      },
    },
    ["1466"] = {
      title = "Saleske",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051750",
          },
        },
      },
    },
    ["1467"] = {
      title = "Stolpmünde",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051751",
          },
        },
      },
    },
    ["1468"] = {
      title = "Freist",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051752",
          },
        },
      },
    },
    ["1469"] = {
      title = "Dammen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051753",
          },
        },
      },
    },
    ["1470"] = {
      title = "Stojentin",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051754",
          },
        },
      },
    },
    ["1471"] = {
      title = "Schurow",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051755",
          },
        },
      },
    },
    ["1472"] = {
      title = "Lauenburg in Pommern",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051756",
          },
        },
      },
    },
    ["1473"] = {
      title = "Roslasin",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051757",
          },
        },
      },
    },
    ["1474"] = {
      title = "Lusin",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051758",
          },
        },
      },
    },
    ["1475"] = {
      title = "Soppieschin",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051759",
          },
        },
      },
    },
    ["1476"] = {
      title = "Kielau",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051760",
          },
        },
      },
    },
    ["1477"] = {
      title = "Gotenhafen",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051761",
          },
        },
      },
    },
    ["1484"] = {
      title = "Groß Bruch",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051762",
          },
        },
      },
    },
    ["1485"] = {
      title = "Balga",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051763",
          },
        },
      },
    },
    ["1486"] = {
      title = "Bladiau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051764",
          },
        },
      },
    },
    ["1487"] = {
      title = "Pörschken",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051765",
          },
        },
      },
    },
    ["1488"] = {
      title = "Mahnsfeld",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051766",
          },
        },
      },
    },
    ["1489"] = {
      title = "Tharau",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051767",
          },
        },
      },
    },
    ["1490"] = {
      title = "Uderwangen",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051768",
          },
        },
      },
    },
    ["1491"] = {
      title = "Grünbaum",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051769",
          },
        },
      },
    },
    ["1492"] = {
      title = "Groß Engelau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051770",
          },
        },
      },
    },
    ["1493"] = {
      title = "Paterswalde",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051771",
          },
        },
      },
    },
    ["1494"] = {
      title = "Muldschen",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051772",
          },
        },
      },
    },
    ["1495"] = {
      title = "Schulzenhof",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051773",
          },
        },
      },
    },
    ["1496"] = {
      title = "Jänichen",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051774",
          },
        },
      },
    },
    ["1497"] = {
      title = "Sodehnen",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051775",
          },
        },
      },
    },
    ["1498"] = {
      title = "Nemmersdorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051776",
          },
        },
      },
    },
    ["1499"] = {
      title = "Gumbinnen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051777",
          },
        },
      },
    },
    ["14100"] = {
      title = "Groß Trakehnen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051728",
          },
        },
      },
    },
    ["14101"] = {
      title = "Schloßbach",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051729",
          },
        },
      },
    },
    ["14102"] = {
      title = "Grenzen in Ostpreußen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051730",
          },
        },
      },
    },
    ["1517"] = {
      title = "Süderoog",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051781",
          },
        },
      },
    },
    ["1518"] = {
      title = "Südfall",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051782",
          },
        },
      },
    },
    ["1519"] = {
      title = "Simonsberg",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051783",
          },
        },
      },
    },
    ["1520"] = {
      title = "Husum",
      editions = { 
        { 
          pub_year = 1931,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051784",
          },
        },
      },
    },
    ["1521"] = {
      title = "Ostenfeld",
      t_now = "Ostenfeld bei Husum",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051785",
          },
        },
      },
    },
    ["1522"] = {
      title = "Hollingstedt",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051786",
          },
        },
      },
    },
    ["1523"] = {
      title = "Kropp",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051787",
          },
        },
      },
    },
    ["1524"] = {
      title = "Hütten",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051788",
          },
        },
      },
    },
    ["1525"] = {
      title = "Eckernförde",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051789",
          },
        },
      },
    },
    ["1526"] = {
      title = "Krusendorf",
      t_now = "Dänischenhagen",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051790",
          },
        },
      },
    },
    ["1527"] = {
      title = "Barsbek",
      t_now = "Laboe",
      editions = { 
        { 
          pub_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051791",
          },
        },
      },
    },
    ["1528"] = {
      title = "Wisch",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051792",
          },
        },
      },
    },
    ["1532"] = {
      title = "Petersdorf (Insel Fehmarn)",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051793",
          },
        },
      },
    },
    ["1533"] = {
      title = "Burg (Insel Fehmarn)",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051794",
          },
        },
      },
    },
    ["1540"] = {
      title = "Ibenhorst",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051795",
          },
        },
      },
    },
    ["1541"] = {
      title = "Prerow",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051796",
          },
        },
      },
    },
    ["1542"] = {
      title = "Zingst",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051797",
          },
        },
      },
    },
    ["1543"] = {
      title = "Pramort",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051798",
          },
        },
      },
    },
    ["1544"] = {
      title = "Klausdorf",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051799",
          },
        },
      },
    },
    ["1545"] = {
      title = "Gingst",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051800",
          },
        },
      },
    },
    ["1546"] = {
      title = "Bergen auf Rügen",
      t_now = "Bergen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051801",
          },
        },
      },
    },
    ["1547"] = {
      title = "Lubkow",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051802",
          },
        },
      },
    },
    ["1548"] = {
      title = "Middelhagen (Anhang)",
    },
    ["1564"] = {
      title = "Rügenwalde",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051803",
          },
        },
      },
    },
    ["1565"] = {
      title = "Grupenhagen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051804",
          },
        },
      },
    },
    ["1566"] = {
      title = "Peest",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051805",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051806",
          },
        },
      },
    },
    ["1567"] = {
      title = "Zitzewitz",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051807",
          },
        },
      },
    },
    ["1568"] = {
      title = "Stolp",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051808",
          },
        },
      },
    },
    ["1569"] = {
      title = "Sageritz",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051809",
          },
        },
      },
    },
    ["1570"] = {
      title = "Lupow",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051810",
          },
        },
      },
    },
    ["1571"] = {
      title = "Mickrow",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051811",
          },
        },
      },
    },
    ["1572"] = {
      title = "Zewitz",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051812",
          },
        },
      },
    },
    ["1573"] = {
      title = "Linde",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051813",
          },
        },
      },
    },
    ["1574"] = {
      title = "Poblotz",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051814",
          },
        },
      },
    },
    ["1575"] = {
      title = "Schönwalde",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051815",
          },
        },
      },
    },
    ["1576"] = {
      title = "Quaschin",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051816",
          },
        },
      },
    },
    ["1577"] = {
      title = "Zoppot",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051817",
          },
        },
      },
    },
    ["1583"] = {
      title = "Neukrug",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051818",
          },
        },
      },
    },
    ["1584"] = {
      title = "Alt Passarge",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051819",
          },
        },
      },
    },
    ["1585"] = {
      title = "Heiligenbeil",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051820",
          },
        },
      },
    },
    ["1586"] = {
      title = "Deutsch Thierau",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051821",
          },
        },
      },
    },
    ["1587"] = {
      title = "Zinten",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051822",
          },
        },
      },
    },
    ["1588"] = {
      title = "Creuzburg in Ostpreußen",
      editions = { 
        { 
          pub_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051823",
          },
        },
      },
    },
    ["1589"] = {
      title = "Mühlhausen",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051824",
          },
        },
      },
    },
    ["1590"] = {
      title = "Domnau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051825",
          },
        },
      },
    },
    ["1591"] = {
      title = "Georgenau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051826",
          },
        },
      },
    },
    ["1592"] = {
      title = "Friedland in Ostpreußen",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051827",
          },
        },
      },
    },
    ["1593"] = {
      title = "Allenburg",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051828",
          },
        },
      },
    },
    ["1594"] = {
      title = "Kleingnie",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051829",
          },
        },
      },
    },
    ["1595"] = {
      title = "Bokellen",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051830",
          },
        },
      },
    },
    ["1596"] = {
      title = "Schwalbental",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051831",
          },
        },
      },
    },
    ["1597"] = {
      title = "Ballethen",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051832",
          },
        },
      },
    },
    ["1598"] = {
      title = "Angerapp",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051833",
          },
        },
      },
    },
    ["1599"] = {
      title = "Praßlauken",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1920,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051834",
          },
        },
      },
    },
    ["15100"] = {
      title = "Tollmingen",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1920,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051778",
          },
        },
      },
    },
    ["15101"] = {
      title = "Birkenmühle",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1920,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051779",
          },
        },
      },
    },
    ["15102"] = {
      title = "Groß Kallweitschen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051780",
          },
        },
      },
    },
    ["1617"] = {
      title = "Übersichtskarte des Hermann-Göring-Kooges",
      t_now = "St. Peter-Ording",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051838",
          },
        },
      },
    },
    ["1618"] = {
      title = "Garding",
    },
    ["1619"] = {
      title = "Tönning",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051839",
          },
        },
      },
    },
    ["1620"] = {
      title = "Friedrichstadt",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051840",
          },
        },
      },
    },
    ["1621"] = {
      title = "Süderstapel",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051841",
          },
        },
      },
    },
    ["1622"] = {
      title = "Meggerdorf",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051842",
          },
        },
      },
    },
    ["1623"] = {
      title = "Owschlag",
      editions = { 
        { 
          pub_year = 1921,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051843",
          },
        },
      },
    },
    ["1624"] = {
      title = "Rendsburg",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051844",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051845",
          },
        },
      },
    },
    ["1625"] = {
      title = "Flemhude",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051846",
          },
        },
      },
    },
    ["1626"] = {
      title = "Kiel",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051847",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051848",
          },
        },
      },
    },
    ["1627"] = {
      title = "Friedrichsort",
      t_now = "Heikendorf",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051849",
          },
        },
      },
    },
    ["1628"] = {
      title = "Bendfeld",
      t_now = "Schönberg in Holstein",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051850",
          },
        },
      },
    },
    ["1629"] = {
      title = "Giekau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051851",
          },
        },
      },
    },
    ["1630"] = {
      title = "Hohwacht",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051852",
          },
        },
      },
    },
    ["1631"] = {
      title = "Heiligenhafen",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051853",
          },
        },
      },
    },
    ["1632"] = {
      title = "Großenbrode",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051854",
          },
        },
      },
    },
    ["1640"] = {
      title = "Wustrow",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051855",
          },
        },
      },
    },
    ["1641"] = {
      title = "Lüdershagen",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051856",
          },
        },
      },
    },
    ["1642"] = {
      title = "Barth",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051857",
          },
        },
      },
    },
    ["1643"] = {
      title = "Niepars",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051858",
          },
        },
      },
    },
    ["1644"] = {
      title = "Stralsund",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051859",
          },
        },
      },
    },
    ["1645"] = {
      title = "Samtens",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051860",
          },
        },
      },
    },
    ["1646"] = {
      title = "Putbus",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015216",
          },
        },
      },
    },
    ["1647"] = {
      title = "Vilmnitz",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051861",
          },
        },
      },
    },
    ["1648"] = {
      title = "Middelhagen",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051862",
          },
        },
      },
    },
    ["1663"] = {
      title = "Beelkow",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051863",
          },
        },
      },
    },
    ["1664"] = {
      title = "Altenhagen",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051864",
          },
        },
      },
    },
    ["1665"] = {
      title = "Karwitz",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051865",
          },
        },
      },
    },
    ["1666"] = {
      title = "Schlawe",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051866",
          },
        },
      },
    },
    ["1667"] = {
      title = "Kulsow",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051867",
          },
        },
      },
    },
    ["1668"] = {
      title = "Rathsdamnitz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051868",
          },
        },
      },
    },
    ["1669"] = {
      title = "Groß Dübsow",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051869",
          },
        },
      },
    },
    ["1670"] = {
      title = "Budow",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051870",
          },
        },
      },
    },
    ["1671"] = {
      title = "Schwarz Damerkow",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015217",
          },
        },
      },
    },
    ["1672"] = {
      title = "Groß Rakitt",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051871",
          },
        },
      },
    },
    ["1673"] = {
      title = "Sierakowitz",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051872",
          },
        },
      },
    },
    ["1674"] = {
      title = "Chmelno",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051873",
          },
        },
      },
    },
    ["1675"] = {
      title = "Karthaus",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051874",
          },
        },
      },
    },
    ["1676"] = {
      title = "Zuckau",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051875",
          },
        },
      },
    },
    ["1677"] = {
      title = "Danzig",
      editions = { 
        { 
          pub_year = 1929,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051876",
          },
        },
      },
    },
    ["1678"] = {
      title = "Weichselmünde",
      editions = { 
        { 
          pub_year = 1929,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051877",
          },
        },
      },
    },
    ["1679"] = {
      title = "Nickelswalde",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051878",
          },
        },
      },
    },
    ["1680"] = {
      title = "Steegen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051879",
          },
        },
      },
    },
    ["1681"] = {
      title = "Stutthof",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051880",
          },
        },
      },
    },
    ["1682"] = {
      title = "Kahlberg-Liep",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051881",
          },
        },
      },
    },
    ["1683"] = {
      title = "Tolkemit",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051882",
          },
        },
      },
    },
    ["1684"] = {
      title = "Braunsberg (West)",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051883",
          },
        },
      },
    },
    ["1685"] = {
      title = "Braunsberg (Ost)",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051884",
          },
        },
      },
    },
    ["1686"] = {
      title = "Eisenberg in Ostpreußen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051885",
          },
        },
      },
    },
    ["1687"] = {
      title = "Lichtenfeld",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051886",
          },
        },
      },
    },
    ["1688"] = {
      title = "Canditten",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051887",
          },
        },
      },
    },
    ["1689"] = {
      title = "Preußisch Eylau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051888",
          },
        },
      },
    },
    ["1690"] = {
      title = "Glommen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051889",
          },
        },
      },
    },
    ["1691"] = {
      title = "Schönbruch",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051890",
          },
        },
      },
    },
    ["1692"] = {
      title = "Groß Schönau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051891",
          },
        },
      },
    },
    ["1693"] = {
      title = "Gerdauen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051892",
          },
        },
      },
    },
    ["1694"] = {
      title = "Wandlacken",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051893",
          },
        },
      },
    },
    ["1695"] = {
      title = "Nordenburg",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051894",
          },
        },
      },
    },
    ["1696"] = {
      title = "Kanitz",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051895",
          },
        },
      },
    },
    ["1697"] = {
      title = "Groß Sobrost",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051896",
          },
        },
      },
    },
    ["1698"] = {
      title = "Almental",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051897",
          },
        },
      },
    },
    ["1699"] = {
      title = "Goldap",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051898",
          },
        },
      },
    },
    ["16100"] = {
      title = "Hardteck",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051835",
          },
        },
      },
    },
    ["16101"] = {
      title = "Rominten",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1920,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051836",
          },
        },
      },
    },
    ["16102"] = {
      title = "Wehrkirchen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051837",
          },
        },
      },
    },
    ["1717"] = {
      title = "Böhl im Kreis Husum-Eiderstedt",
      t_now = "Böhl",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051902",
          },
        },
      },
    },
    ["1718"] = {
      title = "Vollerwiek",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051903",
          },
        },
      },
    },
    ["1719"] = {
      title = "Wesselburen",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051904",
          },
        },
      },
    },
    ["1720"] = {
      title = "Weddingstedt",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051905",
          },
        },
      },
    },
    ["1721"] = {
      title = "Tellingstedt",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051906",
          },
        },
      },
    },
    ["1722"] = {
      title = "Dellstedt",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051907",
          },
        },
      },
    },
    ["1723"] = {
      title = "Hamdorf im Kreis Rendsburg",
      t_now = "Hamdorf bei Rendsburg",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051908",
          },
        },
      },
    },
    ["1724"] = {
      title = "Bokelholm",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051909",
          },
        },
      },
    },
    ["1725"] = {
      title = "Westensee",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051910",
          },
        },
      },
    },
    ["1726"] = {
      title = "Groß Flintbek",
      t_now = "Flintbek",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051911",
          },
        },
      },
    },
    ["1727"] = {
      title = "Preetz",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051912",
          },
        },
      },
    },
    ["1728"] = {
      title = "Selent",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051913",
          },
        },
      },
    },
    ["1729"] = {
      title = "Lütjenburg",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051914",
          },
        },
      },
    },
    ["1730"] = {
      title = "Hansühn",
      t_now = "Hanshühn",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051915",
          },
        },
      },
    },
    ["1731"] = {
      title = "Oldenburg in Holstein",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051916",
          },
        },
      },
    },
    ["1732"] = {
      title = "Grube",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051917",
          },
        },
      },
    },
    ["1738"] = {
      title = "Fischer-Buden",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051918",
          },
        },
      },
    },
    ["1739"] = {
      title = "Müritz",
      t_now = "Bad Müritz",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051919",
          },
        },
      },
    },
    ["1740"] = {
      title = "Ribnitz",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051920",
          },
        },
      },
    },
    ["1741"] = {
      title = "Ahrenshagen",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051921",
          },
        },
      },
    },
    ["1742"] = {
      title = "Velgast",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051922",
          },
        },
      },
    },
    ["1743"] = {
      title = "Richtenberg",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051923",
          },
        },
      },
    },
    ["1744"] = {
      title = "Elmenhorst",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051924",
          },
        },
      },
    },
    ["1745"] = {
      title = "Stahlbrode",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051925",
          },
        },
      },
    },
    ["1746"] = {
      title = "Zudar",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051926",
          },
        },
      },
    },
    ["1747"] = {
      title = "Zickersches Höft",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051927",
          },
        },
      },
    },
    ["1748"] = {
      title = "Groß Zicker",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051928",
          },
        },
      },
    },
    ["1749"] = {
      title = "Greifswalder Oie",
      editions = { 
        { 
          pub_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051929",
          },
        },
      },
    },
    ["1760"] = {
      title = "Lassehne",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051930",
          },
        },
      },
    },
    ["1761"] = {
      title = "Sorenbohm",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051931",
          },
        },
      },
    },
    ["1762"] = {
      title = "Großmöllen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051932",
          },
        },
      },
    },
    ["1763"] = {
      title = "Zanow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051933",
          },
        },
      },
    },
    ["1764"] = {
      title = "Damerow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051934",
          },
        },
      },
    },
    ["1765"] = {
      title = "Zirchow",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051935",
          },
        },
      },
    },
    ["1766"] = {
      title = "Wussow",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051936",
          },
        },
      },
    },
    ["1767"] = {
      title = "Varzin",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051937",
          },
        },
      },
    },
    ["1768"] = {
      title = "Zuckers",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051938",
          },
        },
      },
    },
    ["1769"] = {
      title = "Alt-Kolziglow",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051939",
          },
        },
      },
    },
    ["1770"] = {
      title = "Wundichow",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051940",
          },
        },
      },
    },
    ["1771"] = {
      title = "Jassen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051941",
          },
        },
      },
    },
    ["1772"] = {
      title = "Sullenschin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051942",
          },
        },
      },
    },
    ["1773"] = {
      title = "Stendsitz",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051943",
          },
        },
      },
    },
    ["1774"] = {
      title = "Schönberg in Westpreußen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051944",
          },
        },
      },
    },
    ["1775"] = {
      title = "Kelpin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051945",
          },
        },
      },
    },
    ["1776"] = {
      title = "Prangenau",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051946",
          },
        },
      },
    },
    ["1777"] = {
      title = "Praust",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051947",
          },
        },
      },
    },
    ["1778"] = {
      title = "Trutenau",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051948",
          },
        },
      },
    },
    ["1779"] = {
      title = "Schöneberg",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051949",
          },
        },
      },
    },
    ["1780"] = {
      title = "Tiegenhof",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051950",
          },
        },
      },
    },
    ["1781"] = {
      title = "Jungfer",
      editions = { 
        { 
          pub_year = 1922,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051951",
          },
        },
      },
    },
    ["1782"] = {
      title = "Cadinen",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051952",
          },
        },
      },
    },
    ["1783"] = {
      title = "Trunz",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051953",
          },
        },
      },
    },
    ["1784"] = {
      title = "Tiedmannsdorf",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051954",
          },
        },
      },
    },
    ["1785"] = {
      title = "Plaßwich",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051955",
          },
        },
      },
    },
    ["1786"] = {
      title = "Mehlsack",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051956",
          },
        },
      },
    },
    ["1787"] = {
      title = "Lichtenau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051957",
          },
        },
      },
    },
    ["1788"] = {
      title = "Landsberg in Ostpreußen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051958",
          },
        },
      },
    },
    ["1789"] = {
      title = "Grünwalde",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051959",
          },
        },
      },
    },
    ["1790"] = {
      title = "Bartenstein",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051960",
          },
        },
      },
    },
    ["1791"] = {
      title = "Landskron",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051961",
          },
        },
      },
    },
    ["1792"] = {
      title = "Schippenbeil",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051962",
          },
        },
      },
    },
    ["1793"] = {
      title = "Dönhofstädt",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051963",
          },
        },
      },
    },
    ["1794"] = {
      title = "Barten",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051964",
          },
        },
      },
    },
    ["1795"] = {
      title = "Drengfurth",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051965",
          },
        },
      },
    },
    ["1796"] = {
      title = "Angerburg",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1923,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051966",
          },
        },
      },
    },
    ["1797"] = {
      title = "Buddern",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051967",
          },
        },
      },
    },
    ["1798"] = {
      title = "Benkheim",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051968",
          },
        },
      },
    },
    ["1799"] = {
      title = "Arnswald",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051969",
          },
        },
      },
    },
    ["17100"] = {
      title = "Gurnen",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051899",
          },
        },
      },
    },
    ["17101"] = {
      title = "Dubeningen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051900",
          },
        },
      },
    },
    ["17102"] = {
      title = "Unterfelde",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1922,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051901",
          },
        },
      },
    },
    ["1813"] = {
      title = "Helgoland",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051972",
          },
        },
      },
    },
    ["1818"] = {
      title = "Blauort",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051973",
          },
        },
      },
    },
    ["1819"] = {
      title = "Büsum",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051974",
          },
        },
      },
    },
    ["1820"] = {
      title = "Heide",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051975",
          },
        },
      },
    },
    ["1821"] = {
      title = "Nordhastedt",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051976",
          },
        },
      },
    },
    ["1822"] = {
      title = "Hademarschen",
      t_now = "Hanerau-Hademarschen",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051977",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051978",
          },
        },
      },
    },
    ["1823"] = {
      title = "Todenbüttel",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051979",
          },
        },
      },
    },
    ["1824"] = {
      title = "Holtdorf",
      t_now = "Bargstedt",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051980",
          },
        },
      },
    },
    ["1825"] = {
      title = "Nortorf",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051981",
          },
        },
      },
    },
    ["1826"] = {
      title = "Brügge",
      t_now = "Bordesholm",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051982",
          },
        },
      },
    },
    ["1827"] = {
      title = "Stolpe in Schleswig",
      t_now = "Stolpe",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051983",
          },
        },
      },
    },
    ["1828"] = {
      title = "Plön",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051984",
          },
        },
      },
    },
    ["1829"] = {
      title = "Eutin",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051985",
          },
        },
      },
    },
    ["1830"] = {
      title = "Neustadt in Holstein",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051986",
          },
        },
      },
    },
    ["1831"] = {
      title = "Grömitz",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051987",
          },
        },
      },
    },
    ["1832"] = {
      title = "Klostersee",
      t_now = "Kellenhusen",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051988",
          },
        },
      },
    },
    ["1835"] = {
      title = "Rerik",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          sheet_title = "Alt-Gaarz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051989",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051990",
          },
        },
      },
    },
    ["1836"] = {
      title = "Kühlungsborn (Ostseebad)",
      t_now = "Brunshaupten",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051991",
          },
        },
      },
    },
    ["1837"] = {
      title = "Doberan",
      t_now = "Bad Doberan",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051992",
          },
        },
        { 
          pub_year = 1927,
          sheet_title = "Bad Doberan",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051993",
          },
        },
      },
    },
    ["1838"] = {
      title = "Warnemünde",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051994",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051995",
          },
        },
      },
    },
    ["1839"] = {
      title = "Bentwisch",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051996",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051997",
          },
        },
      },
    },
    ["1840"] = {
      title = "Dänschenburg",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051998",
          },
        },
        { 
          pub_year = 1892,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051999",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052000",
          },
        },
      },
    },
    ["1841"] = {
      title = "Marlow",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052001",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052002",
          },
        },
      },
    },
    ["1842"] = {
      title = "Drechow",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052003",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052004",
          },
        },
      },
    },
    ["1843"] = {
      title = "Franzburg",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052005",
          },
        },
      },
    },
    ["1844"] = {
      title = "Grimmen",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052006",
          },
        },
        { 
          pub_year = 1937,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052007",
          },
        },
      },
    },
    ["1845"] = {
      title = "Horst",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052008",
          },
        },
      },
    },
    ["1846"] = {
      title = "Neuenkirchen im Kreis Greifswald",
      t_now = "Neuenkirchen",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052009",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052010",
          },
        },
      },
    },
    ["1847"] = {
      title = "Wusterhusen",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052011",
          },
        },
      },
    },
    ["1848"] = {
      title = "Cröslin",
      t_now = "Kröslin",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052012",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052013",
          },
        },
      },
    },
    ["1849"] = {
      title = "Karlshagen",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052014",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052015",
          },
        },
      },
    },
    ["1856"] = {
      title = "Kirchhagener Fichten",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052016",
          },
        },
      },
    },
    ["1857"] = {
      title = "Robe",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052017",
          },
        },
      },
    },
    ["1858"] = {
      title = "Langenhagen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052018",
          },
        },
      },
    },
    ["1859"] = {
      title = "Kolberg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052019",
          },
        },
      },
    },
    ["1860"] = {
      title = "Degow",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052020",
          },
        },
      },
    },
    ["1861"] = {
      title = "Kordeshagen",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052021",
          },
        },
      },
    },
    ["1862"] = {
      title = "Alt Belz",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052022",
          },
        },
      },
    },
    ["1863"] = {
      title = "Köslin",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052023",
          },
        },
      },
    },
    ["1864"] = {
      title = "Kösternitz",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052024",
          },
        },
      },
    },
    ["1865"] = {
      title = "Alt-Zowen",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052025",
          },
        },
        { 
          pub_year = 1935,
          sheet_title = "Alt Zowen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052026",
          },
        },
      },
    },
    ["1866"] = {
      title = "Pollnow",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052027",
          },
        },
      },
    },
    ["1867"] = {
      title = "Brotzen",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052028",
          },
        },
      },
    },
    ["1868"] = {
      title = "Friedrichshuld",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052029",
          },
        },
      },
    },
    ["1869"] = {
      title = "Lubben",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052030",
          },
        },
      },
    },
    ["1870"] = {
      title = "Bütow",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052031",
          },
        },
      },
    },
    ["1871"] = {
      title = "Bernsdorf",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052032",
          },
        },
      },
    },
    ["1872"] = {
      title = "Nakel",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052033",
          },
        },
      },
    },
    ["1873"] = {
      title = "Berent in Westpreußen",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052034",
          },
        },
      },
    },
    ["1874"] = {
      title = "Alt-Grabau",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052035",
          },
        },
      },
    },
    ["1875"] = {
      title = "Schönfließ in Westpreußen",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052036",
          },
        },
      },
    },
    ["1876"] = {
      title = "Groß Paglau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052037",
          },
        },
      },
    },
    ["1877"] = {
      title = "Sobbowitz",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052038",
          },
        },
      },
    },
    ["1878"] = {
      title = "Mühlbanz",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052039",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052040",
          },
        },
      },
    },
    ["1879"] = {
      title = "Groß Lichtenau",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052041",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052042",
          },
        },
      },
    },
    ["1880"] = {
      title = "Neuteich",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052043",
          },
        },
      },
    },
    ["1881"] = {
      title = "Zeyer",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052044",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052045",
          },
        },
      },
    },
    ["1882"] = {
      title = "Elbing",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052046",
          },
        },
      },
    },
    ["1883"] = {
      title = "Pomehrendorf",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052047",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052048",
          },
        },
      },
    },
    ["1884"] = {
      title = "Mühlhausen in Ostpreußen",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052049",
          },
        },
      },
    },
    ["1885"] = {
      title = "Wusen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052050",
          },
        },
      },
    },
    ["1886"] = {
      title = "Wormditt",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052051",
          },
        },
      },
    },
    ["1887"] = {
      title = "Migehnen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052052",
          },
        },
      },
    },
    ["1888"] = {
      title = "Raunau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052053",
          },
        },
      },
    },
    ["1889"] = {
      title = "Heilsberg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052054",
          },
        },
      },
    },
    ["1890"] = {
      title = "Gallingen",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052055",
          },
        },
      },
    },
    ["1891"] = {
      title = "Groß Schwansfeld",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052056",
          },
        },
      },
    },
    ["1892"] = {
      title = "Korschen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052057",
          },
        },
      },
    },
    ["1893"] = {
      title = "Lamgarben",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052058",
          },
        },
      },
    },
    ["1894"] = {
      title = "Wenden in Ostpreußen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052059",
          },
        },
      },
    },
    ["1895"] = {
      title = "Rosengarten",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052060",
          },
        },
      },
    },
    ["1896"] = {
      title = "Groß Steinort",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052061",
          },
        },
      },
    },
    ["1897"] = {
      title = "Großgarten",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052062",
          },
        },
      },
    },
    ["1898"] = {
      title = "Kerschken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052063",
          },
        },
      },
    },
    ["1899"] = {
      title = "Halldorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052064",
          },
        },
      },
    },
    ["18100"] = {
      title = "Reimannswalde",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1926,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051970",
          },
        },
      },
    },
    ["18101"] = {
      title = "Merunen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1926,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71051971",
          },
        },
      },
    },
    ["1917"] = {
      title = "Trischen",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052068",
          },
        },
      },
    },
    ["1918"] = {
      title = "Trischen",
    },
    ["1919"] = {
      title = "Übersichtskarte des Adolf-Hitler-Kooges",
      t_now = "Dieksand",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052069",
          },
        },
      },
    },
    ["1920"] = {
      title = "Meldorf",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052070",
          },
        },
      },
    },
    ["1921"] = {
      title = "Süderhastedt",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052071",
          },
        },
      },
    },
    ["1922"] = {
      title = "Schenefeld",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052072",
          },
        },
      },
    },
    ["1923"] = {
      title = "Hohenwestedt",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052073",
          },
        },
      },
    },
    ["1924"] = {
      title = "Hennstedt",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052074",
          },
        },
      },
    },
    ["1925"] = {
      title = "Neumünster",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052075",
          },
        },
      },
    },
    ["1926"] = {
      title = "Groß Kummerfeld",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052076",
          },
        },
      },
    },
    ["1927"] = {
      title = "Bornhöved",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052077",
          },
        },
      },
    },
    ["1928"] = {
      title = "Schlamersdorf",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052078",
          },
        },
      },
    },
    ["1929"] = {
      title = "Ahrensbök",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052079",
          },
        },
      },
    },
    ["1930"] = {
      title = "Süsel",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052080",
          },
        },
      },
    },
    ["1931"] = {
      title = "Rettin",
      t_now = "Pelzerhaken",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052081",
          },
        },
      },
    },
    ["1932"] = {
      title = "Warnkenhagen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052082",
          },
        },
      },
    },
    ["1933"] = {
      title = "Groß Klütz-Höved",
      editions = { 
        { 
          pub_year = 1954,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052083",
          },
        },
      },
    },
    ["1934"] = {
      title = "Kaltenhof (Insel Poel)",
      t_now = "Kaltenhof",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052084",
          },
        },
      },
    },
    ["1935"] = {
      title = "Russow",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052085",
          },
        },
      },
    },
    ["1936"] = {
      title = "Kröpelin",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052086",
          },
        },
      },
    },
    ["1937"] = {
      title = "Hanstorf",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052087",
          },
        },
      },
    },
    ["1938"] = {
      title = "Rostock",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052088",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052089",
          },
        },
      },
    },
    ["1939"] = {
      title = "Petschow",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052090",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052091",
          },
        },
      },
    },
    ["1940"] = {
      title = "Tessin",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052092",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052093",
          },
        },
      },
    },
    ["1941"] = {
      title = "Thelkow",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052094",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052095",
          },
        },
      },
    },
    ["1942"] = {
      title = "Tribsees",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052096",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052097",
          },
        },
      },
    },
    ["1943"] = {
      title = "Glewitz",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052098",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052099",
          },
        },
      },
    },
    ["1944"] = {
      title = "Groß Rakow",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052100",
          },
        },
      },
    },
    ["1945"] = {
      title = "Griebenow",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052101",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052102",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052103",
          },
        },
      },
    },
    ["1946"] = {
      title = "Greifswald",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052104",
          },
        },
      },
    },
    ["1947"] = {
      title = "Hanshagen",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052105",
          },
        },
      },
    },
    ["1948"] = {
      title = "Wolgast",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052106",
          },
        },
      },
    },
    ["1949"] = {
      title = "Zinnowitz",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052107",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052108",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052109",
          },
        },
      },
    },
    ["1950"] = {
      title = "Ückeritz",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052110",
          },
        },
      },
    },
    ["1954"] = {
      title = "Fritzow",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052111",
          },
        },
      },
    },
    ["1955"] = {
      title = "Groß Justin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052112",
          },
        },
      },
    },
    ["1956"] = {
      title = "Karnitz",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052113",
          },
        },
      },
    },
    ["1957"] = {
      title = "Treptow an der Rega",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052114",
          },
        },
      },
    },
    ["1958"] = {
      title = "Gützlaffshagen",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052115",
          },
        },
      },
    },
    ["1959"] = {
      title = "Groß Jestin",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052116",
          },
        },
      },
    },
    ["1960"] = {
      title = "Kerstin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052117",
          },
        },
      },
    },
    ["1961"] = {
      title = "Belgard (Persante)",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052118",
          },
        },
      },
    },
    ["1962"] = {
      title = "Bulgrin",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052119",
          },
        },
      },
    },
    ["1963"] = {
      title = "Seeger",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052120",
          },
        },
      },
    },
    ["1964"] = {
      title = "Klannin",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052121",
          },
        },
      },
    },
    ["1965"] = {
      title = "Kurow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052122",
          },
        },
      },
    },
    ["1966"] = {
      title = "Sydow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052123",
          },
        },
      },
    },
    ["1967"] = {
      title = "Rummelsburg",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052124",
          },
        },
      },
    },
    ["1968"] = {
      title = "Rohr",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052125",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052126",
          },
        },
      },
    },
    ["1969"] = {
      title = "Cremerbruch",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052127",
          },
        },
      },
    },
    ["1970"] = {
      title = "Borczyskowo",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052128",
          },
        },
      },
    },
    ["1971"] = {
      title = "Sommin",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052129",
          },
        },
      },
    },
    ["1972"] = {
      title = "Kalisch",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052130",
          },
        },
      },
    },
    ["1973"] = {
      title = "Funkelkau",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052131",
          },
        },
      },
    },
    ["1974"] = {
      title = "Neu-Paleschken",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052132",
          },
        },
      },
    },
    ["1975"] = {
      title = "Liniewo",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052133",
          },
        },
      },
    },
    ["1976"] = {
      title = "Schöneck",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052134",
          },
        },
      },
    },
    ["1977"] = {
      title = "Swaroschin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052135",
          },
        },
      },
    },
    ["1978"] = {
      title = "Dirschau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052136",
          },
        },
      },
    },
    ["1979"] = {
      title = "Gnojau",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052137",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052138",
          },
        },
      },
    },
    ["1980"] = {
      title = "Marienburg",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052139",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052140",
          },
        },
      },
    },
    ["1981"] = {
      title = "Posilge",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052141",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052142",
          },
        },
      },
    },
    ["1982"] = {
      title = "Thiergart",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052143",
          },
        },
      },
    },
    ["1983"] = {
      title = "Preußisch Holland",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052144",
          },
        },
      },
    },
    ["1984"] = {
      title = "Rogehnen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052145",
          },
        },
      },
    },
    ["1985"] = {
      title = "Sommerfeld in Ostpreußen",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052146",
          },
        },
      },
    },
    ["1986"] = {
      title = "Liebstadt",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052147",
          },
        },
      },
    },
    ["1987"] = {
      title = "Arnsdorf",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052148",
          },
        },
      },
    },
    ["1988"] = {
      title = "Schmolainen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052149",
          },
        },
      },
    },
    ["1989"] = {
      title = "Wernegitten",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052150",
          },
        },
      },
    },
    ["1990"] = {
      title = "Frankenau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052151",
          },
        },
      },
    },
    ["1991"] = {
      title = "Bischofstein",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052152",
          },
        },
      },
    },
    ["1992"] = {
      title = "Rößel",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052153",
          },
        },
      },
    },
    ["1993"] = {
      title = "Heiligelinde",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052154",
          },
        },
      },
    },
    ["1994"] = {
      title = "Rastenburg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052155",
          },
        },
      },
    },
    ["1995"] = {
      title = "Groß Stürlack",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052156",
          },
        },
      },
    },
    ["1996"] = {
      title = "Lötzen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052157",
          },
        },
      },
    },
    ["1997"] = {
      title = "Kruglanken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052158",
          },
        },
      },
    },
    ["1998"] = {
      title = "Adlersdorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052159",
          },
        },
      },
    },
    ["1999"] = {
      title = "Rogonnen",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1926,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052160",
          },
        },
      },
    },
    ["19100"] = {
      title = "Reinkental",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1926,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052065",
          },
        },
      },
    },
    ["19101"] = {
      title = "Treuburg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052066",
          },
        },
      },
    },
    ["19102"] = {
      title = "Woinassen",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052067",
          },
        },
      },
    },
    ["2016"] = {
      title = "Neuwerk (West)",
    },
    ["2017"] = {
      title = "Neuwerk (Ost)",
    },
    ["2019"] = {
      title = "Kaiser-Wilhelm-Koog",
      editions = { 
        { 
          pub_year = 1931,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052164",
          },
        },
      },
    },
    ["2020"] = {
      title = "Marne",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052165",
          },
        },
      },
    },
    ["2021"] = {
      title = "Burg in Dithmarschen",
      editions = { 
        { 
          pub_year = 1931,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052166",
          },
        },
      },
    },
    ["2022"] = {
      title = "Wilster",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052167",
          },
        },
      },
    },
    ["2023"] = {
      title = "Itzehoe",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052168",
          },
        },
      },
    },
    ["2024"] = {
      title = "Kellinghusen",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052169",
          },
        },
      },
    },
    ["2025"] = {
      title = "Bad Bramstedt",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052170",
          },
        },
      },
    },
    ["2026"] = {
      title = "Heidmühlen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052171",
          },
        },
      },
    },
    ["2027"] = {
      title = "Bad Segeberg",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052172",
          },
        },
      },
    },
    ["2028"] = {
      title = "Warder",
      t_now = "Pronstorf",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052173",
          },
        },
      },
    },
    ["2029"] = {
      title = "Curau",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052174",
          },
        },
      },
    },
    ["2030"] = {
      title = "Schwartau",
      t_now = "Bad Schwartau",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052175",
          },
        },
      },
    },
    ["2031"] = {
      title = "Travemünde",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052176",
          },
        },
      },
    },
    ["2032"] = {
      title = "Kalkhorst",
      editions = { 
        { 
          pub_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052177",
          },
        },
      },
    },
    ["2033"] = {
      title = "Hohenkirchen in Mecklenburg",
      t_now = "Hohenkirchen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052178",
          },
        },
      },
    },
    ["2034"] = {
      title = "Kirchdorf",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052179",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052180",
          },
        },
      },
    },
    ["2035"] = {
      title = "Neuburg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052181",
          },
        },
      },
    },
    ["2036"] = {
      title = "Kirch Mulsow",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052182",
          },
        },
      },
    },
    ["2037"] = {
      title = "Neu-Kirchen",
      t_now = "Satow",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052183",
          },
        },
      },
    },
    ["2038"] = {
      title = "Schwaan",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052184",
          },
        },
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052185",
          },
        },
      },
    },
    ["2039"] = {
      title = "Hohen Sprenz",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052186",
          },
        },
      },
    },
    ["2040"] = {
      title = "Laage",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052187",
          },
        },
      },
    },
    ["2041"] = {
      title = "Walkendorf",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052189",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052188",
          },
        },
      },
    },
    ["2042"] = {
      title = "Gnoien",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052190",
          },
        },
      },
    },
    ["2043"] = {
      title = "Nossendorf",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015584",
          },
        },
      },
    },
    ["2044"] = {
      title = "Demmin",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052191",
          },
        },
      },
    },
    ["2045"] = {
      title = "Bentzin",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052192",
          },
        },
      },
    },
    ["2046"] = {
      title = "Gützkow",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052193",
          },
        },
      },
    },
    ["2047"] = {
      title = "Züssow",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052194",
          },
        },
      },
    },
    ["2048"] = {
      title = "Rubkow",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052196",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052195",
          },
        },
      },
    },
    ["2049"] = {
      title = "Lassan",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052199",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052197",
          },
        },
      },
    },
    ["2050"] = {
      title = "Benz",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052200",
          },
        },
      },
    },
    ["2051"] = {
      title = "Swinemünde",
      t_now = "Ahlbeck",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052201",
          },
        },
      },
    },
    ["2052"] = {
      title = "Misdroy",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052202",
          },
        },
      },
    },
    ["2053"] = {
      title = "Kolzow",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052203",
          },
        },
      },
    },
    ["2054"] = {
      title = "Cammin",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052204",
          },
        },
      },
    },
    ["2055"] = {
      title = "Schwirsen",
      editions = { 
        { 
          pub_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052205",
          },
        },
      },
    },
    ["2056"] = {
      title = "Stuchow",
      editions = { 
        { 
          pub_year = 1929,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052206",
          },
        },
      },
    },
    ["2057"] = {
      title = "Greifenberg",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052207",
          },
        },
      },
    },
    ["2058"] = {
      title = "Kölpin",
      editions = { 
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052208",
          },
        },
      },
    },
    ["2059"] = {
      title = "Roman",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052209",
          },
        },
      },
    },
    ["2060"] = {
      title = "Ramelow",
      editions = { 
        { 
          pub_year = 1943,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052210",
          },
        },
      },
    },
    ["2061"] = {
      title = "Standemin",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052211",
          },
        },
      },
    },
    ["2062"] = {
      title = "Boissin",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052212",
          },
        },
      },
    },
    ["2063"] = {
      title = "Groß Tychow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052213",
          },
        },
      },
    },
    ["2064"] = {
      title = "Groß Voldekow",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052214",
          },
        },
      },
    },
    ["2065"] = {
      title = "Bublitz",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052215",
          },
        },
      },
    },
    ["2066"] = {
      title = "Groß Karzenburg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052216",
          },
        },
      },
    },
    ["2067"] = {
      title = "Falkenhagen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052217",
          },
        },
      },
    },
    ["2068"] = {
      title = "Flötenstein",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052218",
          },
        },
      },
    },
    ["2069"] = {
      title = "Eisenbrück",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052219",
          },
        },
      },
    },
    ["2070"] = {
      title = "Karpno",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052220",
          },
        },
      },
    },
    ["2071"] = {
      title = "Rollbick",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052221",
          },
        },
      },
    },
    ["2072"] = {
      title = "Lesno",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052222",
          },
        },
      },
    },
    ["2073"] = {
      title = "Wielle",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052223",
          },
        },
      },
    },
    ["2074"] = {
      title = "Wigonin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052224",
          },
        },
      },
    },
    ["2075"] = {
      title = "Hoch-Stüblau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052225",
          },
        },
      },
    },
    ["2076"] = {
      title = "Pinschin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052226",
          },
        },
      },
    },
    ["2077"] = {
      title = "Preußisch Stargard",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052227",
          },
        },
      },
    },
    ["2078"] = {
      title = "Pelplin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052228",
          },
        },
      },
    },
    ["2079"] = {
      title = "Wernersdorf",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052198",
          },
        },
      },
    },
    ["2080"] = {
      title = "Stuhm",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052229",
          },
        },
      },
    },
    ["2081"] = {
      title = "Groß Waplitz",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052230",
          },
        },
      },
    },
    ["2082"] = {
      title = "Christburg",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052231",
          },
        },
      },
    },
    ["2083"] = {
      title = "Miswalde",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052232",
          },
        },
      },
    },
    ["2084"] = {
      title = "Hagenau",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052233",
          },
        },
      },
    },
    ["2085"] = {
      title = "Mohrungen",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052234",
          },
        },
      },
    },
    ["2086"] = {
      title = "Reichau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052235",
          },
        },
      },
    },
    ["2087"] = {
      title = "Heiligenthal",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052236",
          },
        },
      },
    },
    ["2088"] = {
      title = "Guttstadt",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052237",
          },
        },
      },
    },
    ["2089"] = {
      title = "Freudenberg",
      editions = { 
        { 
          pub_year = 1915,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052238",
          },
        },
      },
    },
    ["2090"] = {
      title = "Seeburg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052239",
          },
        },
      },
    },
    ["2091"] = {
      title = "Rothfließ",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052240",
          },
        },
      },
    },
    ["2092"] = {
      title = "Kabienen",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052241",
          },
        },
      },
    },
    ["2093"] = {
      title = "Giesenau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052242",
          },
        },
      },
    },
    ["2094"] = {
      title = "Weißenburg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052243",
          },
        },
      },
    },
    ["2095"] = {
      title = "Rhein",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052244",
          },
        },
      },
    },
    ["2096"] = {
      title = "Goldensee",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052245",
          },
        },
      },
    },
    ["2097"] = {
      title = "Milken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052246",
          },
        },
      },
    },
    ["2098"] = {
      title = "Widminnen",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052247",
          },
        },
      },
    },
    ["2099"] = {
      title = "Fließdorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052248",
          },
        },
      },
    },
    ["20100"] = {
      title = "Herzogskirchen",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052161",
          },
        },
      },
    },
    ["20101"] = {
      title = "Wallenrode",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052162",
          },
        },
      },
    },
    ["20102"] = {
      title = "Reuß",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052163",
          },
        },
      },
    },
    ["2117"] = {
      title = "Altenwalde",
      t_now = "Cuxhaven (West)",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052252",
          },
        },
      },
    },
    ["2118"] = {
      title = "Cuxhaven",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052253",
          },
        },
      },
    },
    ["2119"] = {
      title = "Otterndorf",
    },
    ["2120"] = {
      title = "Brunsbüttel",
    },
    ["2121"] = {
      title = "Freiburg an der Elbe",
      editions = { 
        { 
          pub_year = 1944,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052254",
          },
        },
      },
    },
    ["2122"] = {
      title = "Krempe",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052255",
          },
        },
      },
    },
    ["2123"] = {
      title = "Hohenfelde",
      t_now = "Lägerdorf",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052256",
          },
        },
      },
    },
    ["2124"] = {
      title = "Hörnerkirchen",
      t_now = "Brande-Hörnerkirchen",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052257",
          },
        },
      },
    },
    ["2125"] = {
      title = "Kaltenkirchen",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052258",
          },
        },
      },
    },
    ["2126"] = {
      title = "Stuvenborn",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052259",
          },
        },
      },
    },
    ["2127"] = {
      title = "Leezen",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052260",
          },
        },
      },
    },
    ["2128"] = {
      title = "Oldeslohe",
      t_now = "Bad Oldesloe",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052261",
          },
        },
      },
    },
    ["2129"] = {
      title = "Hamberge",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052262",
          },
        },
      },
    },
    ["2130"] = {
      title = "Lübeck",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052263",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052264",
          },
        },
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052265",
          },
        },
      },
    },
    ["2131"] = {
      title = "Schönberg in Mecklenburg",
      t_now = "Schönberg",
      editions = { 
        { 
          pub_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052266",
          },
        },
      },
    },
    ["2132"] = {
      title = "Mummendorf",
      editions = { 
        { 
          pub_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052267",
          },
        },
      },
    },
    ["2133"] = {
      title = "Grevesmühlen",
      t_now = "Grewesmühlen",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052268",
          },
        },
      },
    },
    ["2134"] = {
      title = "Wismar",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052269",
          },
        },
      },
    },
    ["2135"] = {
      title = "Zurow",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052270",
          },
        },
      },
    },
    ["2136"] = {
      title = "Warin",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052271",
          },
        },
      },
    },
    ["2137"] = {
      title = "Bützow",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052272",
          },
        },
      },
    },
    ["2138"] = {
      title = "Lüssow",
      editions = { 
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052273",
          },
        },
      },
    },
    ["2139"] = {
      title = "Kritzkow",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052274",
          },
        },
      },
    },
    ["2140"] = {
      title = "Schlieffenberg",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052275",
          },
        },
      },
    },
    ["2141"] = {
      title = "Thürkow",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052276",
          },
        },
      },
    },
    ["2142"] = {
      title = "Neukalen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052277",
          },
        },
      },
    },
    ["2143"] = {
      title = "Verchen",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052278",
          },
        },
      },
    },
    ["2144"] = {
      title = "Leistenow",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052279",
          },
        },
      },
    },
    ["2145"] = {
      title = "Daberkow",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052280",
          },
        },
      },
    },
    ["2146"] = {
      title = "Krien",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052281",
          },
        },
      },
    },
    ["2147"] = {
      title = "Medow",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052282",
          },
        },
      },
    },
    ["2148"] = {
      title = "Anklam",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052283",
          },
        },
      },
    },
    ["2149"] = {
      title = "Usedom",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052284",
          },
        },
      },
    },
    ["2150"] = {
      title = "Zirchow im Kreis Usedom-Wollin",
      t_now = "Zirchow",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052285",
          },
        },
      },
    },
    ["2151"] = {
      title = "Caseburg",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015588",
          },
        },
      },
    },
    ["2152"] = {
      title = "Lebbin",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052286",
          },
        },
      },
    },
    ["2153"] = {
      title = "Wollin",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052287",
          },
        },
      },
    },
    ["2154"] = {
      title = "Dobberphul",
      editions = { 
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052288",
          },
        },
      },
    },
    ["2155"] = {
      title = "Gülzow",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052289",
          },
        },
      },
    },
    ["2156"] = {
      title = "Schwessow",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052290",
          },
        },
      },
    },
    ["2157"] = {
      title = "Plathe an der Rega",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052291",
          },
        },
      },
    },
    ["2158"] = {
      title = "Witzmitz",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052292",
          },
        },
      },
    },
    ["2159"] = {
      title = "Petershagen",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052293",
          },
        },
      },
    },
    ["2160"] = {
      title = "Stolzenberg",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052294",
          },
        },
      },
    },
    ["2161"] = {
      title = "Arnhausen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052295",
          },
        },
      },
    },
    ["2162"] = {
      title = "Wusterbarth",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052296",
          },
        },
      },
    },
    ["2163"] = {
      title = "Groß Krössin",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052297",
          },
        },
      },
    },
    ["2164"] = {
      title = "Gramenz",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052298",
          },
        },
      },
    },
    ["2165"] = {
      title = "Wurchow",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052299",
          },
        },
      },
    },
    ["2166"] = {
      title = "Kasimirshof",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052300",
          },
        },
      },
    },
    ["2167"] = {
      title = "Baldenburg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052301",
          },
        },
      },
    },
    ["2168"] = {
      title = "Bölzig",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052302",
          },
        },
      },
    },
    ["2169"] = {
      title = "Prechlau",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052303",
          },
        },
      },
    },
    ["2170"] = {
      title = "Sampohl",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052304",
          },
        },
      },
    },
    ["2171"] = {
      title = "Drzewitz",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052305",
          },
        },
      },
    },
    ["2172"] = {
      title = "Bruß",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052306",
          },
        },
      },
    },
    ["2173"] = {
      title = "Malachin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052307",
          },
        },
      },
    },
    ["2174"] = {
      title = "Long",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052308",
          },
        },
      },
    },
    ["2175"] = {
      title = "Occippel",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052309",
          },
        },
      },
    },
    ["2176"] = {
      title = "Lubichow",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052310",
          },
        },
      },
    },
    ["2177"] = {
      title = "Bobau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052311",
          },
        },
      },
    },
    ["2178"] = {
      title = "Mewe",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052312",
          },
        },
      },
    },
    ["2179"] = {
      title = "Rehhof",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052313",
          },
        },
      },
    },
    ["2180"] = {
      title = "Pestlin",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052314",
          },
        },
      },
    },
    ["2181"] = {
      title = "Groß Rohdau",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052315",
          },
        },
      },
    },
    ["2182"] = {
      title = "Alt Christburg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052316",
          },
        },
      },
    },
    ["2183"] = {
      title = "Saalfeld",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052317",
          },
        },
      },
    },
    ["2184"] = {
      title = "Simnau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052318",
          },
        },
      },
    },
    ["2185"] = {
      title = "Sonnenborn",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052319",
          },
        },
      },
    },
    ["2186"] = {
      title = "Locken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052320",
          },
        },
      },
    },
    ["2187"] = {
      title = "Jonkendorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052321",
          },
        },
      },
    },
    ["2188"] = {
      title = "Göttkendorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052322",
          },
        },
      },
    },
    ["2189"] = {
      title = "Alt Wartenburg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052323",
          },
        },
      },
    },
    ["2190"] = {
      title = "Wartenburg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052324",
          },
        },
      },
    },
    ["2191"] = {
      title = "Bischofsburg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052325",
          },
        },
      },
    },
    ["2192"] = {
      title = "Bredinken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052326",
          },
        },
      },
    },
    ["2193"] = {
      title = "Sensburg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052327",
          },
        },
      },
    },
    ["2194"] = {
      title = "Rechenberg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052328",
          },
        },
      },
    },
    ["2195"] = {
      title = "Nikolaiken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052329",
          },
        },
      },
    },
    ["2196"] = {
      title = "Eichendorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052330",
          },
        },
      },
    },
    ["2197"] = {
      title = "Arys",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052331",
          },
        },
      },
    },
    ["2198"] = {
      title = "Dippelsee",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052332",
          },
        },
      },
    },
    ["2199"] = {
      title = "Grabnick",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052333",
          },
        },
      },
    },
    ["21100"] = {
      title = "Lyck",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052249",
          },
        },
      },
    },
    ["21101"] = {
      title = "Ebenfelde",
      editions = { 
        { 
          pub_year = 1930,
          rec_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052250",
          },
        },
      },
    },
    ["21102"] = {
      title = "Borschimmen",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052251",
          },
        },
      },
    },
    ["2208"] = {
      title = "Norderney (Anhang)",
    },
    ["2209"] = {
      title = "Norderney",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052334",
          },
        },
      },
    },
    ["2210"] = {
      title = "Baltrum",
      t_now = "Langeoog (West)",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052335",
          },
        },
      },
    },
    ["2211"] = {
      title = "Langeoog",
      t_now = "Langeoog (Ost)",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052339",
          },
        },
      },
    },
    ["2212"] = {
      title = "Spiekeroog",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052340",
          },
        },
      },
    },
    ["2213"] = {
      title = "Wangerooge",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052341",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052342",
          },
        },
      },
    },
    ["2214"] = {
      title = "Mellum",
    },
    ["2215"] = {
      title = "Mellum (Anhang)",
    },
    ["2216"] = {
      title = "Nordholz (Anhang)",
    },
    ["2217"] = {
      title = "Midlum",
      t_now = "Nordholz",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052343",
          },
        },
      },
    },
    ["2218"] = {
      title = "Westerwanna",
      t_now = "Wanna",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052344",
          },
        },
      },
    },
    ["2219"] = {
      title = "Ihlienworth",
    },
    ["2220"] = {
      title = "Kadenberge",
      t_now = "Cadenberge",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052345",
          },
        },
      },
    },
    ["2221"] = {
      title = "Hamelwörden",
      t_now = "Wischhafen",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052346",
          },
        },
      },
    },
    ["2222"] = {
      title = "Glückstadt",
    },
    ["2223"] = {
      title = "Elmshorn",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052347",
          },
        },
      },
    },
    ["2224"] = {
      title = "Barmstedt",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052348",
          },
        },
      },
    },
    ["2225"] = {
      title = "Quickborn",
      t_now = "Quickborn im Kreis Pinneberg",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052349",
          },
        },
      },
    },
    ["2226"] = {
      title = "Wakendorf",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052350",
          },
        },
      },
    },
    ["2227"] = {
      title = "Bargteheide",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052351",
          },
        },
      },
    },
    ["2228"] = {
      title = "Eichede",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052352",
          },
        },
      },
    },
    ["2229"] = {
      title = "Crummesse",
      t_now = "Krummesse",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052353",
          },
        },
      },
    },
    ["2230"] = {
      title = "Ratzeburg",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052355",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052354",
          },
        },
      },
    },
    ["2231"] = {
      title = "Carlow",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052356",
          },
        },
      },
    },
    ["2232"] = {
      title = "Gadebusch",
      editions = { 
        { 
          pub_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052357",
          },
        },
      },
    },
    ["2233"] = {
      title = "Mühlen-Eichsen",
      editions = { 
        { 
          pub_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052358",
          },
        },
      },
    },
    ["2234"] = {
      title = "Dambeck",
      editions = { 
        { 
          pub_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052359",
          },
        },
      },
    },
    ["2235"] = {
      title = "Hohen-Viecheln",
      editions = { 
        { 
          pub_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052360",
          },
        },
      },
    },
    ["2236"] = {
      title = "Brüel",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052361",
          },
        },
      },
    },
    ["2237"] = {
      title = "Groß Raden",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052362",
          },
        },
      },
    },
    ["2238"] = {
      title = "Zehna",
      editions = { 
        { 
          pub_year = 1950,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052363",
          },
        },
      },
    },
    ["2239"] = {
      title = "Güstrow",
      editions = { 
        { 
          pub_year = 1950,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052364",
          },
        },
      },
    },
    ["2240"] = {
      title = "Lalendorf",
      editions = { 
        { 
          pub_year = 1950,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052365",
          },
        },
      },
    },
    ["2241"] = {
      title = "Teterow",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052366",
          },
        },
      },
    },
    ["2242"] = {
      title = "Malchin",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052367",
          },
        },
      },
    },
    ["2243"] = {
      title = "Ivenack",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052368",
          },
        },
      },
    },
    ["2244"] = {
      title = "Törpin",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052369",
          },
        },
      },
    },
    ["2245"] = {
      title = "Gültz",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052370",
          },
        },
      },
    },
    ["2246"] = {
      title = "Siedenbollentin",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052371",
          },
        },
      },
    },
    ["2247"] = {
      title = "Spantekow",
      editions = { 
        { 
          pub_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052372",
          },
        },
      },
    },
    ["2248"] = {
      title = "Ducherow",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052373",
          },
        },
      },
    },
    ["2249"] = {
      title = "Leopoldshagen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052374",
          },
        },
      },
    },
    ["2250"] = {
      title = "Ueckermünde",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052375",
          },
        },
      },
    },
    ["2251"] = {
      title = "Neuwarp",
      editions = { 
        { 
          pub_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052376",
          },
        },
      },
    },
    ["2253"] = {
      title = "Paulsdorf",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052377",
          },
        },
      },
    },
    ["2254"] = {
      title = "Pribbernow",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052378",
          },
        },
      },
    },
    ["2255"] = {
      title = "Moratz",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052379",
          },
        },
      },
    },
    ["2256"] = {
      title = "Zickerke",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052380",
          },
        },
      },
    },
    ["2257"] = {
      title = "Groß Sabow",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052381",
          },
        },
      },
    },
    ["2258"] = {
      title = "Regenwalde",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052382",
          },
        },
      },
    },
    ["2259"] = {
      title = "Rützenhagen",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052383",
          },
        },
      },
    },
    ["2260"] = {
      title = "Schivelbein",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052384",
          },
        },
      },
    },
    ["2261"] = {
      title = "Reinfeld",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052385",
          },
        },
      },
    },
    ["2262"] = {
      title = "Bad Polzin",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052386",
          },
        },
      },
    },
    ["2263"] = {
      title = "Kollatz",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052387",
          },
        },
      },
    },
    ["2264"] = {
      title = "Bärwalde",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052388",
          },
        },
      },
    },
    ["2265"] = {
      title = "Persanzig",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052389",
          },
        },
      },
    },
    ["2266"] = {
      title = "Neustettin",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052390",
          },
        },
      },
    },
    ["2267"] = {
      title = "Demmin",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052391",
          },
        },
      },
    },
    ["2268"] = {
      title = "Stegers",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052392",
          },
        },
      },
    },
    ["2269"] = {
      title = "Förstenau",
      editions = { 
        { 
          pub_year = 1935,
          rec_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052393",
          },
        },
      },
    },
    ["2270"] = {
      title = "Pollnitz",
      editions = { 
        { 
          pub_year = 1935,
          rec_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052394",
          },
        },
      },
    },
    ["2271"] = {
      title = "Niesewanz",
      editions = { 
        { 
          pub_year = 1935,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052395",
          },
        },
      },
    },
    ["2272"] = {
      title = "Rittel",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052396",
          },
        },
      },
    },
    ["2273"] = {
      title = "Czersk",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052397",
          },
        },
      },
    },
    ["2274"] = {
      title = "Schlachta",
      editions = { 
        { 
          pub_year = 1935,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052398",
          },
        },
      },
    },
    ["2275"] = {
      title = "Groß Schliewitz",
      editions = { 
        { 
          pub_year = 1935,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052399",
          },
        },
      },
    },
    ["2276"] = {
      title = "Ossiek",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052400",
          },
        },
      },
    },
    ["2277"] = {
      title = "Skurz",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052401",
          },
        },
      },
    },
    ["2278"] = {
      title = "Münsterwalde",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052402",
          },
        },
      },
    },
    ["2279"] = {
      title = "Marienwerder",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052403",
          },
        },
      },
    },
    ["2280"] = {
      title = "Groß Krebs",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052404",
          },
        },
      },
    },
    ["2281"] = {
      title = "Riesenburg",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052405",
          },
        },
      },
    },
    ["2282"] = {
      title = "Rosenberg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052406",
          },
        },
      },
    },
    ["2283"] = {
      title = "Schwalgendorf",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052407",
          },
        },
      },
    },
    ["2284"] = {
      title = "Schnellwalde",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052408",
          },
        },
      },
    },
    ["2285"] = {
      title = "Osterode",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052409",
          },
        },
      },
    },
    ["2286"] = {
      title = "Thierberg",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052410",
          },
        },
      },
    },
    ["2287"] = {
      title = "Dietrichswalde",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052411",
          },
        },
      },
    },
    ["2288"] = {
      title = "Allenstein",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052412",
          },
        },
      },
    },
    ["2289"] = {
      title = "Groß Kleeberg",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052413",
          },
        },
      },
    },
    ["2290"] = {
      title = "Groß Purden",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052414",
          },
        },
      },
    },
    ["2291"] = {
      title = "Mensguth",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052415",
          },
        },
      },
    },
    ["2292"] = {
      title = "Ribben",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052416",
          },
        },
      },
    },
    ["2293"] = {
      title = "Aweyden",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052417",
          },
        },
      },
    },
    ["2294"] = {
      title = "Peitschendorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052418",
          },
        },
      },
    },
    ["2295"] = {
      title = "Biebern",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052419",
          },
        },
      },
    },
    ["2296"] = {
      title = "Dorren",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052420",
          },
        },
      },
    },
    ["2297"] = {
      title = "Stollendorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052421",
          },
        },
      },
    },
    ["2298"] = {
      title = "Seebrücken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052422",
          },
        },
      },
    },
    ["2299"] = {
      title = "Monethen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052423",
          },
        },
      },
    },
    ["22100"] = {
      title = "Scharfenrade",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052336",
          },
        },
      },
    },
    ["22101"] = {
      title = "Kölmersdorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052337",
          },
        },
      },
    },
    ["22102"] = {
      title = "Lyssewen",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052338",
          },
        },
      },
    },
    ["2301"] = {
      title = "Himmelpforten",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052424",
          },
        },
      },
    },
    ["2304"] = {
      title = "Riffgat",
    },
    ["2305"] = {
      title = "Borkumriff",
    },
    ["2306"] = {
      title = "Insel Borkum",
      t_now = "Borkum (Nord)",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052425",
          },
        },
        { 
          pub_year = 1936,
          sheet_title = "Borkum",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052426",
          },
        },
      },
    },
    ["2307"] = {
      title = "Juist (West)",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052427",
          },
        },
      },
    },
    ["2308"] = {
      title = "Juist (Ost)",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052428",
          },
        },
      },
    },
    ["2309"] = {
      title = "Hage",
      editions = { 
        { 
          pub_year = 1933,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052429",
          },
        },
      },
    },
    ["2310"] = {
      title = "Dornum",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052430",
          },
        },
      },
    },
    ["2311"] = {
      title = "Esens",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052433",
          },
        },
      },
    },
    ["2312"] = {
      title = "Karolinensiel",
      t_now = "Carolinensiel",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052434",
          },
        },
      },
    },
    ["2313"] = {
      title = "Hohenkirchen",
      t_now = "Wangerland",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052435",
          },
        },
      },
    },
    ["2314"] = {
      title = "Hooksiel",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052436",
          },
        },
      },
    },
    ["2315"] = {
      title = "Langwarden",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052437",
          },
        },
      },
    },
    ["2316"] = {
      title = "Schmarren",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052438",
          },
        },
      },
    },
    ["2317"] = {
      title = "Dorum",
      t_now = "Langen",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052439",
          },
        },
      },
    },
    ["2318"] = {
      title = "Neuenwalde",
      t_now = "Drangstedt",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052440",
          },
        },
      },
    },
    ["2319"] = {
      title = "Bederkesa",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052441",
          },
        },
      },
    },
    ["2320"] = {
      title = "Lamstedt",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052442",
          },
        },
      },
    },
    ["2321"] = {
      title = "Himmelpforten",
    },
    ["2322"] = {
      title = "Stade",
      t_now = "Stade (Nord)",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052443",
          },
        },
      },
    },
    ["2323"] = {
      title = "Ütersen",
      t_now = "Uetersen",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052444",
          },
        },
      },
    },
    ["2324"] = {
      title = "Pinneberg",
      editions = { 
        { 
          pub_year = 1927,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052445",
          },
        },
      },
    },
    ["2325"] = {
      title = "Niendorf",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052446",
          },
        },
      },
    },
    ["2326"] = {
      title = "Bergstedt",
      t_now = "Fuhlsbüttel",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052447",
          },
        },
      },
    },
    ["2327"] = {
      title = "Ahrensburg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052448",
          },
        },
      },
    },
    ["2328"] = {
      title = "Trittau",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052449",
          },
        },
      },
    },
    ["2329"] = {
      title = "Nusse",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052450",
          },
        },
      },
    },
    ["2330"] = {
      title = "Mölln",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052451",
          },
        },
      },
    },
    ["2331"] = {
      title = "Seedorf",
      editions = { 
        { 
          pub_year = 1954,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052452",
          },
        },
      },
    },
    ["2332"] = {
      title = "Groß Salitz",
      editions = { 
        { 
          pub_year = 1954,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052453",
          },
        },
      },
    },
    ["2333"] = {
      title = "Groß Brütz",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052454",
          },
        },
      },
    },
    ["2334"] = {
      title = "Schwerin in Mecklenburg",
      t_now = "Schwerin",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052456",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052455",
          },
        },
      },
    },
    ["2335"] = {
      title = "Langen Brütz",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052457",
          },
        },
      },
    },
    ["2336"] = {
      title = "Demen",
    },
    ["2337"] = {
      title = "Borkow",
      editions = { 
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052458",
          },
        },
      },
    },
    ["2338"] = {
      title = "Dobbertin",
      editions = { 
        { 
          pub_year = 1950,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052459",
          },
        },
      },
    },
    ["2339"] = {
      title = "Krakow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052460",
          },
        },
      },
    },
    ["2340"] = {
      title = "Serrahn",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052461",
          },
        },
      },
    },
    ["2341"] = {
      title = "Dahmen",
      editions = { 
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052462",
          },
        },
      },
    },
    ["2342"] = {
      title = "Schwinkendorf",
      editions = { 
        { 
          pub_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052463",
          },
        },
      },
    },
    ["2343"] = {
      title = "Stavenhagen",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052464",
          },
        },
      },
    },
    ["2344"] = {
      title = "Rosenow",
      editions = { 
        { 
          pub_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052465",
          },
        },
      },
    },
    ["2345"] = {
      title = "Treptow",
      editions = { 
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052466",
          },
        },
      },
    },
    ["2346"] = {
      title = "Roga",
      editions = { 
        { 
          pub_year = 1954,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052467",
          },
        },
      },
    },
    ["2347"] = {
      title = "Friedland",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052468",
          },
        },
      },
    },
    ["2348"] = {
      title = "Galenbeck",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052469",
          },
        },
      },
    },
    ["2349"] = {
      title = "Ferdinandshof",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052470",
          },
        },
      },
    },
    ["2350"] = {
      title = "Eggesin",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052471",
          },
        },
      },
    },
    ["2351"] = {
      title = "Rieth",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052472",
          },
        },
      },
    },
    ["2352"] = {
      title = "Althagen",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052473",
          },
        },
      },
    },
    ["2353"] = {
      title = "Groß Stepenitz",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052474",
          },
        },
      },
    },
    ["2354"] = {
      title = "Münchendorf",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052475",
          },
        },
      },
    },
    ["2355"] = {
      title = "Basenthin",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052476",
          },
        },
      },
    },
    ["2356"] = {
      title = "Naugard",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052477",
          },
        },
      },
    },
    ["2357"] = {
      title = "Farbezin",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052478",
          },
        },
      },
    },
    ["2358"] = {
      title = "Groß Borckenhagen",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052479",
          },
        },
      },
    },
    ["2359"] = {
      title = "Labes",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052480",
          },
        },
      },
    },
    ["2360"] = {
      title = "Labenz",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052481",
          },
        },
      },
    },
    ["2361"] = {
      title = "Wusterwitz",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052482",
          },
        },
      },
    },
    ["2362"] = {
      title = "Neu-Wuhrow",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052483",
          },
        },
      },
    },
    ["2363"] = {
      title = "Pöhlen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052484",
          },
        },
      },
    },
    ["2364"] = {
      title = "Pielburg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052485",
          },
        },
      },
    },
    ["2365"] = {
      title = "Gellen",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052486",
          },
        },
      },
    },
    ["2366"] = {
      title = "Thurow",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052487",
          },
        },
      },
    },
    ["2367"] = {
      title = "Hammerstein",
      editions = { 
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052488",
          },
        },
      },
    },
    ["2368"] = {
      title = "Ruthenberg",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052489",
          },
        },
      },
    },
    ["2369"] = {
      title = "Christfelde",
      editions = { 
        { 
          pub_year = 1935,
          rec_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052490",
          },
        },
      },
    },
    ["2370"] = {
      title = "Schlochau",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052491",
          },
        },
      },
    },
    ["2371"] = {
      title = "Konitz",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052492",
          },
        },
      },
    },
    ["2372"] = {
      title = "Reetz",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052493",
          },
        },
      },
    },
    ["2373"] = {
      title = "Schüttenwalde",
      editions = { 
        { 
          pub_year = 1933,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052494",
          },
        },
      },
    },
    ["2374"] = {
      title = "Zalesie",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052495",
          },
        },
      },
    },
    ["2375"] = {
      title = "Lonsk",
      editions = { 
        { 
          pub_year = 1935,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052496",
          },
        },
      },
    },
    ["2376"] = {
      title = "Osche",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052497",
          },
        },
      },
    },
    ["2377"] = {
      title = "Rinkowken",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052498",
          },
        },
      },
    },
    ["2378"] = {
      title = "Neuenburg",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052499",
          },
        },
      },
    },
    ["2379"] = {
      title = "Garnsee",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016360",
          },
        },
      },
    },
    ["2380"] = {
      title = "Nieder Zehren",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052501",
          },
        },
      },
    },
    ["2381"] = {
      title = "Freystadt",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052502",
          },
        },
      },
    },
    ["2382"] = {
      title = "Sommerau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052503",
          },
        },
      },
    },
    ["2383"] = {
      title = "Tillwalde",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052504",
          },
        },
      },
    },
    ["2384"] = {
      title = "Bergfriede",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052505",
          },
        },
      },
    },
    ["2385"] = {
      title = "Seubersdorf",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052506",
          },
        },
      },
    },
    ["2386"] = {
      title = "Hirschberg",
      editions = { 
        { 
          pub_year = 1929,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052507",
          },
        },
      },
    },
    ["2387"] = {
      title = "Gilgenau",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052508",
          },
        },
      },
    },
    ["2388"] = {
      title = "Grieslienen",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052509",
          },
        },
      },
    },
    ["2389"] = {
      title = "Wuttrienen",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052510",
          },
        },
      },
    },
    ["2390"] = {
      title = "Passenheim",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052511",
          },
        },
      },
    },
    ["2391"] = {
      title = "Grammen",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1915,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052512",
          },
        },
      },
    },
    ["2392"] = {
      title = "Mingfen",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052513",
          },
        },
      },
    },
    ["2393"] = {
      title = "Babienten",
      editions = { 
        { 
          pub_year = 1929,
          rec_year = 1915,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052514",
          },
        },
      },
    },
    ["2394"] = {
      title = "Eckertsdorf",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1922,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052515",
          },
        },
      },
    },
    ["2395"] = {
      title = "Niedersee",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052516",
          },
        },
      },
    },
    ["2396"] = {
      title = "Johannisburg",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052517",
          },
        },
      },
    },
    ["2397"] = {
      title = "Groß Kessel",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052518",
          },
        },
      },
    },
    ["2398"] = {
      title = "Gehlenburg",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052519",
          },
        },
      },
    },
    ["2399"] = {
      title = "Großrosen",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052520",
          },
        },
      },
    },
    ["23100"] = {
      title = "Prostken",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052431",
          },
        },
      },
    },
    ["23101"] = {
      title = "Kölmersdorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052432",
          },
        },
      },
    },
    ["2403"] = {
      title = "Schiermonnikoog",
    },
    ["2404"] = {
      title = "Rottumerplaat",
    },
    ["2405"] = {
      title = "Rottumeroog",
    },
    ["2406"] = {
      title = "Borkum (Süd)",
    },
    ["2407"] = {
      title = "Lütje Hörn",
    },
    ["2408"] = {
      title = "Westermarsch",
      t_now = "Greetsiel",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052521",
          },
        },
      },
    },
    ["2409"] = {
      title = "Norden",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052522",
          },
        },
      },
    },
    ["2410"] = {
      title = "Westerholt",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052523",
          },
        },
      },
    },
    ["2411"] = {
      title = "Blomberg",
    },
    ["2412"] = {
      title = "Wittmund",
    },
    ["2413"] = {
      title = "Jever",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052524",
          },
        },
      },
    },
    ["2414"] = {
      title = "Wilhelmshaven",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052525",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052526",
          },
        },
      },
    },
    ["2415"] = {
      title = "Eckwarden",
      t_now = "Butjadingen (West)",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052527",
          },
        },
      },
    },
    ["2416"] = {
      title = "Stollhamm",
      t_now = "Butjadingen (Ost)",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052528",
          },
        },
      },
    },
    ["2417"] = {
      title = "Bremerhaven",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052529",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052530",
          },
        },
      },
    },
    ["2418"] = {
      title = "Bramel",
      t_now = "Kührstedt",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052531",
          },
        },
      },
    },
    ["2419"] = {
      title = "Köhlen",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052532",
          },
        },
      },
    },
    ["2420"] = {
      title = "Ebersdorf",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052533",
          },
        },
      },
    },
    ["2421"] = {
      title = "Mulsum",
      t_now = "Oldendorf",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052534",
          },
        },
      },
    },
    ["2422"] = {
      title = "Hagen",
      t_now = "Stade (Süd)",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052535",
          },
        },
      },
    },
    ["2423"] = {
      title = "Horneburg",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052536",
          },
        },
      },
    },
    ["2424"] = {
      title = "Wedel",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052537",
          },
        },
      },
    },
    ["2425"] = {
      title = "Hamburg",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052538",
          },
        },
        { 
          pub_year = 1933,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052539",
          },
        },
      },
    },
    ["2426"] = {
      title = "Wandsbek",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052540",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052541",
          },
        },
      },
    },
    ["2427"] = {
      title = "Glinde",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052542",
          },
        },
      },
    },
    ["2428"] = {
      title = "Schwarzenbek",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052543",
          },
        },
      },
    },
    ["2429"] = {
      title = "Siebeneichen",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052544",
          },
        },
      },
    },
    ["2430"] = {
      title = "Gudow",
      editions = { 
        { 
          pub_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052545",
          },
        },
      },
    },
    ["2431"] = {
      title = "Zarrentin",
      editions = { 
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052546",
          },
        },
      },
    },
    ["2432"] = {
      title = "Wittenburg",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052547",
          },
        },
      },
    },
    ["2433"] = {
      title = "Parum",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052548",
          },
        },
      },
    },
    ["2434"] = {
      title = "Sülstorf",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052549",
          },
        },
      },
    },
    ["2435"] = {
      title = "Crivitz",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052550",
          },
        },
      },
    },
    ["2436"] = {
      title = "Frauenmark",
      editions = { 
        { 
          pub_year = 1951,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052551",
          },
        },
      },
    },
    ["2437"] = {
      title = "Herzberg in Mecklenburg",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052552",
          },
        },
      },
    },
    ["2438"] = {
      title = "Goldberg in Mecklenburg",
      t_now = "Goldberg",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052553",
          },
        },
      },
    },
    ["2439"] = {
      title = "Karow",
      editions = { 
        { 
          pub_year = 1951,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052554",
          },
        },
      },
    },
    ["2440"] = {
      title = "Nossentin",
      editions = { 
        { 
          pub_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052555",
          },
        },
      },
    },
    ["2441"] = {
      title = "Jabel",
      editions = { 
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052556",
          },
        },
      },
    },
    ["2442"] = {
      title = "Waren",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052558",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052557",
          },
        },
      },
    },
    ["2443"] = {
      title = "Möllenhagen",
      editions = { 
        { 
          pub_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052559",
          },
        },
      },
    },
    ["2444"] = {
      title = "Penzlin",
      editions = { 
        { 
          pub_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052560",
          },
        },
      },
    },
    ["2445"] = {
      title = "Neubrandenburg",
      editions = { 
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052561",
          },
        },
      },
    },
    ["2446"] = {
      title = "Pragsdorf",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052562",
          },
        },
      },
    },
    ["2447"] = {
      title = "Golm",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052563",
          },
        },
      },
    },
    ["2448"] = {
      title = "Strasburg in der Uckermark",
      t_now = "Strasburg",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052564",
          },
        },
      },
    },
    ["2449"] = {
      title = "Pasewalk",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052565",
          },
        },
      },
    },
    ["2450"] = {
      title = "Krugsdorf",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052566",
          },
        },
      },
    },
    ["2451"] = {
      title = "Stolzenburg",
      t_now = "Rothenklempenow",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052567",
          },
        },
      },
    },
    ["2452"] = {
      title = "Falkenwalde",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052569",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052568",
          },
        },
      },
    },
    ["2453"] = {
      title = "Pölitz",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052570",
          },
        },
      },
    },
    ["2454"] = {
      title = "Gollnow",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052571",
          },
        },
      },
    },
    ["2455"] = {
      title = "Speck",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052572",
          },
        },
      },
    },
    ["2456"] = {
      title = "Eichenwalde",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052573",
          },
        },
      },
    },
    ["2457"] = {
      title = "Daber",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052574",
          },
        },
      },
    },
    ["2458"] = {
      title = "Silligsdorf",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052575",
          },
        },
      },
    },
    ["2459"] = {
      title = "Wangerin",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052576",
          },
        },
      },
    },
    ["2460"] = {
      title = "Dramburg",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052577",
          },
        },
      },
    },
    ["2461"] = {
      title = "Zülshagen",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052578",
          },
        },
      },
    },
    ["2462"] = {
      title = "Falkenburg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052579",
          },
        },
      },
    },
    ["2463"] = {
      title = "Tempelburg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052580",
          },
        },
      },
    },
    ["2464"] = {
      title = "Neblin",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052581",
          },
        },
      },
    },
    ["2465"] = {
      title = "Groß Born",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052582",
          },
        },
      },
    },
    ["2466"] = {
      title = "Barkenbrügge",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052583",
          },
        },
      },
    },
    ["2467"] = {
      title = "Ratzebuhr",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052584",
          },
        },
      },
    },
    ["2468"] = {
      title = "Peterswalde",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052585",
          },
        },
      },
    },
    ["2469"] = {
      title = "Preußisch Friedland",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052586",
          },
        },
      },
    },
    ["2470"] = {
      title = "Grunau",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052587",
          },
        },
      },
    },
    ["2471"] = {
      title = "Kamin",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052588",
          },
        },
      },
    },
    ["2472"] = {
      title = "Jehlenz",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052589",
          },
        },
      },
    },
    ["2473"] = {
      title = "Tuchel",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052590",
          },
        },
      },
    },
    ["2474"] = {
      title = "Lindenbusch",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052591",
          },
        },
      },
    },
    ["2475"] = {
      title = "Dritschmin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1873,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052592",
          },
        },
      },
    },
    ["2476"] = {
      title = "Jeschewo",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052593",
          },
        },
      },
    },
    ["2477"] = {
      title = "Warlubien",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052594",
          },
        },
      },
    },
    ["2478"] = {
      title = "Feste Courbière",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052595",
          },
        },
      },
    },
    ["2479"] = {
      title = "Roggenhausen",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052596",
          },
        },
      },
    },
    ["2480"] = {
      title = "Lessen",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052597",
          },
        },
      },
    },
    ["2481"] = {
      title = "Schwenten",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052598",
          },
        },
      },
    },
    ["2482"] = {
      title = "Bischofswerder",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052599",
          },
        },
      },
    },
    ["2483"] = {
      title = "Deutsch Eylau",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052600",
          },
        },
      },
    },
    ["2484"] = {
      title = "Löbau",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052601",
          },
        },
      },
    },
    ["2485"] = {
      title = "Peterswalde",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052602",
          },
        },
      },
    },
    ["2486"] = {
      title = "Geierswalde",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052603",
          },
        },
      },
    },
    ["2487"] = {
      title = "Hohenstein in Ostpreußen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052604",
          },
        },
      },
    },
    ["2488"] = {
      title = "Kurken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052605",
          },
        },
      },
    },
    ["2489"] = {
      title = "Gimmendorf",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052606",
          },
        },
      },
    },
    ["2490"] = {
      title = "Gedwangen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052607",
          },
        },
      },
    },
    ["2491"] = {
      title = "Ortelsburg (West)",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052608",
          },
        },
      },
    },
    ["2492"] = {
      title = "Ortelsburg",
      editions = { 
        { 
          pub_year = 1915,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052609",
          },
        },
      },
    },
    ["2493"] = {
      title = "Schwentainen",
      editions = { 
        { 
          pub_year = 1915,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052610",
          },
        },
      },
    },
    ["2494"] = {
      title = "Farienen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052611",
          },
        },
      },
    },
    ["2495"] = {
      title = "Mittenheide",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052612",
          },
        },
      },
    },
    ["2496"] = {
      title = "Mittel-Pogauen",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052613",
          },
        },
      },
    },
    ["2497"] = {
      title = "Morgen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052614",
          },
        },
      },
    },
    ["2498"] = {
      title = "Kölmerfelde",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052615",
          },
        },
      },
    },
    ["2499"] = {
      title = "Schwiddern",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052616",
          },
        },
      },
    },
    ["2506"] = {
      title = "Uithuizerwad",
    },
    ["2507"] = {
      title = "Emshörnplate",
    },
    ["2508"] = {
      title = "Krummhörn",
    },
    ["2509"] = {
      title = "Hinte",
    },
    ["2510"] = {
      title = "Aurich",
      t_now = "Aurich in Ostfriesland",
      editions = { 
        { 
          pub_year = 1933,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052617",
          },
        },
      },
    },
    ["2511"] = {
      title = "Holtrop",
      t_now = "Ostgroßefehn",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052618",
          },
        },
      },
    },
    ["2512"] = {
      title = "Wiesede",
      t_now = "Wiesmoor",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052619",
          },
        },
      },
    },
    ["2513"] = {
      title = "Neustadt-Gödens",
      t_now = "Zetel",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052620",
          },
        },
      },
    },
    ["2514"] = {
      title = "Steinhausen",
      t_now = "Varel (Nord)",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052621",
          },
        },
      },
    },
    ["2515"] = {
      title = "Jadebusen",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052622",
          },
        },
      },
    },
    ["2516"] = {
      title = "Nordenham",
    },
    ["2517"] = {
      title = "Loxstedt",
    },
    ["2518"] = {
      title = "Beverstedt",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052623",
          },
        },
      },
    },
    ["2519"] = {
      title = "Frelsdorf",
    },
    ["2520"] = {
      title = "Bremervörde",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052624",
          },
        },
      },
    },
    ["2521"] = {
      title = "Kutenholz",
    },
    ["2522"] = {
      title = "Bargstedt",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052625",
          },
        },
      },
    },
    ["2523"] = {
      title = "Harsefeld",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052626",
          },
        },
      },
    },
    ["2524"] = {
      title = "Buxtehude",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052627",
          },
        },
      },
    },
    ["2525"] = {
      title = "Harburg-Wilhelmsburg",
      t_now = "Harburg",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052628",
          },
        },
      },
    },
    ["2526"] = {
      title = "Allermöhe",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052629",
          },
        },
      },
    },
    ["2527"] = {
      title = "Bergedorf",
      editions = { 
        { 
          pub_year = 1922,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052630",
          },
        },
      },
    },
    ["2528"] = {
      title = "Hamwarde",
      t_now = "Geesthacht",
      editions = { 
        { 
          pub_year = 1922,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052631",
          },
        },
      },
    },
    ["2529"] = {
      title = "Büchen",
      editions = { 
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052632",
          },
        },
      },
    },
    ["2530"] = {
      title = "Gresse",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052633",
          },
        },
      },
    },
    ["2531"] = {
      title = "Camin",
      editions = { 
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052634",
          },
        },
      },
    },
    ["2532"] = {
      title = "Körchow",
      editions = { 
        { 
          pub_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052635",
          },
        },
      },
    },
    ["2533"] = {
      title = "Hagenow",
      editions = { 
        { 
          pub_year = 1950,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052636",
          },
        },
      },
    },
    ["2534"] = {
      title = "Lüblow",
      editions = { 
        { 
          pub_year = 1951,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052637",
          },
        },
      },
    },
    ["2535"] = {
      title = "Hohewisch",
      editions = { 
        { 
          pub_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052638",
          },
        },
      },
    },
    ["2536"] = {
      title = "Spornitz",
      editions = { 
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052639",
          },
        },
      },
    },
    ["2537"] = {
      title = "Parchim",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052640",
          },
        },
      },
    },
    ["2538"] = {
      title = "Lübz",
      editions = { 
        { 
          pub_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052641",
          },
        },
      },
    },
    ["2539"] = {
      title = "Plau",
      editions = { 
        { 
          pub_year = 1951,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052642",
          },
        },
      },
    },
    ["2540"] = {
      title = "Malchow",
      editions = { 
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052643",
          },
        },
      },
    },
    ["2541"] = {
      title = "Klink",
      editions = { 
        { 
          pub_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052644",
          },
        },
      },
    },
    ["2542"] = {
      title = "Federow",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052646",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052645",
          },
        },
      },
    },
    ["2543"] = {
      title = "Kratzeburg",
      editions = { 
        { 
          pub_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052647",
          },
        },
      },
    },
    ["2544"] = {
      title = "Hohenzieritz",
      editions = { 
        { 
          pub_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052648",
          },
        },
      },
    },
    ["2545"] = {
      title = "Burg Stargard",
      editions = { 
        { 
          pub_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052649",
          },
        },
      },
    },
    ["2546"] = {
      title = "Ballin",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052650",
          },
        },
      },
    },
    ["2547"] = {
      title = "Woldegk",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052651",
          },
        },
      },
    },
    ["2548"] = {
      title = "Fahrenholz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052652",
          },
        },
      },
    },
    ["2549"] = {
      title = "Nechlin",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052653",
          },
        },
      },
    },
    ["2550"] = {
      title = "Brüssow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052654",
          },
        },
      },
    },
    ["2551"] = {
      title = "Löcknitz",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052656",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052655",
          },
        },
      },
    },
    ["2552"] = {
      title = "Kreckow",
      editions = { 
        { 
          pub_year = 1921,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052657",
          },
        },
      },
    },
    ["2553"] = {
      title = "Stettin",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052658",
          },
        },
      },
    },
    ["2554"] = {
      title = "Groß Christinenberg",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052659",
          },
        },
      },
    },
    ["2555"] = {
      title = "Priemhausen",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052660",
          },
        },
      },
    },
    ["2556"] = {
      title = "Massow",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052661",
          },
        },
      },
    },
    ["2557"] = {
      title = "Schönebeck",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052662",
          },
        },
      },
    },
    ["2558"] = {
      title = "Freienwalde",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052663",
          },
        },
      },
    },
    ["2559"] = {
      title = "Nörenberg",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052664",
          },
        },
      },
    },
    ["2560"] = {
      title = "Zamzow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052665",
          },
        },
      },
    },
    ["2561"] = {
      title = "Groß Lübbesee",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052666",
          },
        },
      },
    },
    ["2562"] = {
      title = "Virchow",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052667",
          },
        },
      },
    },
    ["2563"] = {
      title = "Groß Linichen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052668",
          },
        },
      },
    },
    ["2564"] = {
      title = "Rederitz",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052669",
          },
        },
      },
    },
    ["2565"] = {
      title = "Zippnow",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052670",
          },
        },
      },
    },
    ["2566"] = {
      title = "Jastrow",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052671",
          },
        },
      },
    },
    ["2567"] = {
      title = "Flederborn",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052672",
          },
        },
      },
    },
    ["2568"] = {
      title = "Buschdorf",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052673",
          },
        },
      },
    },
    ["2569"] = {
      title = "Linde",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052674",
          },
        },
      },
    },
    ["2570"] = {
      title = "Wilhelmsbruch",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052675",
          },
        },
      },
    },
    ["2571"] = {
      title = "Zempelburg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052676",
          },
        },
      },
    },
    ["2572"] = {
      title = "Monkowarsk",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052677",
          },
        },
      },
    },
    ["2573"] = {
      title = "Klonowo",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052678",
          },
        },
      },
    },
    ["2574"] = {
      title = "Lubiewo",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052679",
          },
        },
      },
    },
    ["2575"] = {
      title = "Heinrichsdorf",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052680",
          },
        },
      },
    },
    ["2576"] = {
      title = "Schwetz",
      editions = { 
        { 
          pub_year = 1933,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052681",
          },
        },
      },
    },
    ["2577"] = {
      title = "Sartowitz",
      editions = { 
        { 
          pub_year = 1928,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052682",
          },
        },
      },
    },
    ["2578"] = {
      title = "Graudenz",
      editions = { 
        { 
          pub_year = 1928,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052683",
          },
        },
      },
    },
    ["2579"] = {
      title = "Okonin",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052684",
          },
        },
      },
    },
    ["2580"] = {
      title = "Königlich Lindenau",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052685",
          },
        },
      },
    },
    ["2581"] = {
      title = "Groß Plowenz",
      editions = { 
        { 
          pub_year = 1929,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052686",
          },
        },
      },
    },
    ["2582"] = {
      title = "Skarlin",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052687",
          },
        },
      },
    },
    ["2583"] = {
      title = "Neumark",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052688",
          },
        },
      },
    },
    ["2584"] = {
      title = "Pronikau",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052689",
          },
        },
      },
    },
    ["2585"] = {
      title = "Rumian",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052690",
          },
        },
      },
    },
    ["2586"] = {
      title = "Gilgenburg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052691",
          },
        },
      },
    },
    ["2587"] = {
      title = "Gardienen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052692",
          },
        },
      },
    },
    ["2588"] = {
      title = "Grünfließ",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052693",
          },
        },
      },
    },
    ["2589"] = {
      title = "Seehag",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052694",
          },
        },
      },
    },
    ["2590"] = {
      title = "Malga",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052695",
          },
        },
      },
    },
    ["2591"] = {
      title = "Willenberg (Nord)",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052696",
          },
        },
      },
    },
    ["2592"] = {
      title = "Lindenort",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052697",
          },
        },
      },
    },
    ["2593"] = {
      title = "Liebenberg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052698",
          },
        },
      },
    },
    ["2594"] = {
      title = "Friedrichshof",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052699",
          },
        },
      },
    },
    ["2595"] = {
      title = "Karpa",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052700",
          },
        },
      },
    },
    ["2596"] = {
      title = "Wondollek",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052701",
          },
        },
      },
    },
    ["2597"] = {
      title = "Gehsen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052702",
          },
        },
      },
    },
    ["2607"] = {
      title = "Paapsand",
    },
    ["2608"] = {
      title = "Emden (West)",
    },
    ["2609"] = {
      title = "Emden",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052703",
          },
        },
      },
    },
    ["2610"] = {
      title = "Moormerland",
    },
    ["2611"] = {
      title = "Hesel",
    },
    ["2612"] = {
      title = "Uplengen",
    },
    ["2613"] = {
      title = "Neuenburg",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052704",
          },
        },
      },
    },
    ["2614"] = {
      title = "Varel",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052705",
          },
        },
      },
    },
    ["2615"] = {
      title = "Jaderberg",
      t_now = "Jade",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052706",
          },
        },
      },
    },
    ["2616"] = {
      title = "Brake",
      t_now = "Brake an der Unterweser",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052707",
          },
        },
      },
    },
    ["2617"] = {
      title = "Hagen",
      t_now = "Hagen im Bremischen",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052708",
          },
        },
      },
    },
    ["2618"] = {
      title = "Hambergen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052709",
          },
        },
      },
    },
    ["2619"] = {
      title = "Kuhstedt",
      t_now = "Vollersode",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052710",
          },
        },
      },
    },
    ["2620"] = {
      title = "Rhade",
      t_now = "Gnarrenburg",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052711",
          },
        },
      },
    },
    ["2621"] = {
      title = "Selsingen",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052712",
          },
        },
      },
    },
    ["2622"] = {
      title = "Heeslingen",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052713",
          },
        },
      },
    },
    ["2623"] = {
      title = "Everstorf",
      t_now = "Heidenau",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052714",
          },
        },
      },
    },
    ["2624"] = {
      title = "Hollenstedt",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052715",
          },
        },
      },
    },
    ["2625"] = {
      title = "Hittfeld",
      t_now = "Buchholz in der Nordheide",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052716",
          },
        },
      },
    },
    ["2626"] = {
      title = "Stelle",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052717",
          },
        },
      },
    },
    ["2627"] = {
      title = "Winsen",
      t_now = "Winsen an der Luhe",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052718",
          },
        },
      },
    },
    ["2628"] = {
      title = "Artlenburg",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052719",
          },
        },
      },
    },
    ["2629"] = {
      title = "Lauenburg",
      t_now = "Lauenburg an der Elbe",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052720",
          },
        },
      },
    },
    ["2630"] = {
      title = "Boizenburg an der Elbe",
      editions = { 
        { 
          pub_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052721",
          },
        },
      },
    },
    ["2631"] = {
      title = "Besitz",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052722",
          },
        },
      },
    },
    ["2632"] = {
      title = "Lübtheen",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016617",
          },
        },
      },
    },
    ["2633"] = {
      title = "Redefin",
      editions = { 
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052723",
          },
        },
      },
    },
    ["2634"] = {
      title = "Ludwigslust",
      editions = { 
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052724",
          },
        },
      },
    },
    ["2635"] = {
      title = "Neustadt bei Ludwigslust",
      t_now = "Neustadt-Glewe",
      editions = { 
        { 
          pub_year = 1951,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052725",
          },
        },
      },
    },
    ["2636"] = {
      title = "Karenzin",
      t_now = "Karrenzin",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052726",
          },
        },
      },
    },
    ["2637"] = {
      title = "Marnitz",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052727",
          },
        },
      },
    },
    ["2638"] = {
      title = "Stepenitz",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052728",
          },
        },
      },
    },
    ["2639"] = {
      title = "Meyenburg",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052729",
          },
        },
      },
    },
    ["2640"] = {
      title = "Dammwolde",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052730",
          },
        },
      },
    },
    ["2641"] = {
      title = "Röbel",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052731",
          },
        },
      },
    },
    ["2642"] = {
      title = "Rechlin",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052733",
          },
        },
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052732",
          },
        },
      },
    },
    ["2643"] = {
      title = "Blankenförde",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052734",
          },
        },
      },
    },
    ["2644"] = {
      title = "Neustrelitz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052735",
          },
        },
      },
    },
    ["2645"] = {
      title = "Thurow in Mecklenburg",
      editions = { 
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052736",
          },
        },
      },
    },
    ["2646"] = {
      title = "Feldberg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052737",
          },
        },
      },
    },
    ["2647"] = {
      title = "Fürstenwerder",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052738",
          },
        },
      },
    },
    ["2648"] = {
      title = "Dedelow",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052739",
          },
        },
      },
    },
    ["2649"] = {
      title = "Prenzlau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052740",
          },
        },
      },
    },
    ["2650"] = {
      title = "Wallmow",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052742",
          },
        },
        { 
          pub_year = 1957,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052741",
          },
        },
      },
    },
    ["2651"] = {
      title = "Hohenholz",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052743",
          },
        },
      },
    },
    ["2652"] = {
      title = "Kolbitzow",
      t_now = "Nadrensee",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052744",
          },
        },
      },
    },
    ["2653"] = {
      title = "Podejuch",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052745",
          },
        },
      },
    },
    ["2654"] = {
      title = "Altdamm",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016983",
          },
        },
      },
    },
    ["2655"] = {
      title = "Kublank",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90017016",
          },
        },
      },
    },
    ["2656"] = {
      title = "Stargard in Pommern",
      editions = { 
        { 
          pub_year = 1922,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052746",
          },
        },
      },
    },
    ["2657"] = {
      title = "Marienfließ",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052747",
          },
        },
      },
    },
    ["2658"] = {
      title = "Jacobshagen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052748",
          },
        },
      },
    },
    ["2659"] = {
      title = "Groß Mellen",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052749",
          },
        },
      },
    },
    ["2660"] = {
      title = "Rahnwerder",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052750",
          },
        },
      },
    },
    ["2661"] = {
      title = "Groß Spiegel",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052751",
          },
        },
      },
    },
    ["2662"] = {
      title = "Märkisch Friedland",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052752",
          },
        },
      },
    },
    ["2663"] = {
      title = "Petznick",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052753",
          },
        },
      },
    },
    ["2664"] = {
      title = "Neugolz",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052754",
          },
        },
      },
    },
    ["2665"] = {
      title = "Freudenfier",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052755",
          },
        },
      },
    },
    ["2666"] = {
      title = "Betkenhammer",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052756",
          },
        },
      },
    },
    ["2667"] = {
      title = "Tarnowke",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052757",
          },
        },
      },
    },
    ["2668"] = {
      title = "Flatow",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052758",
          },
        },
      },
    },
    ["2669"] = {
      title = "Kujan",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052759",
          },
        },
      },
    },
    ["2670"] = {
      title = "Vandsburg",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052760",
          },
        },
      },
    },
    ["2671"] = {
      title = "Pempersin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052761",
          },
        },
      },
    },
    ["2672"] = {
      title = "Wiskitno",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052762",
          },
        },
      },
    },
    ["2673"] = {
      title = "Crone an der Brahe",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052763",
          },
        },
      },
    },
    ["2674"] = {
      title = "Schirotzken",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052764",
          },
        },
      },
    },
    ["2675"] = {
      title = "Grutschno",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052765",
          },
        },
      },
    },
    ["2676"] = {
      title = "Kulm",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052766",
          },
        },
      },
    },
    ["2677"] = {
      title = "Wabcz",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052767",
          },
        },
      },
    },
    ["2678"] = {
      title = "Blandau",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052768",
          },
        },
      },
    },
    ["2679"] = {
      title = "Rehden",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052769",
          },
        },
      },
    },
    ["2680"] = {
      title = "Goßlershausen",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052770",
          },
        },
      },
    },
    ["2681"] = {
      title = "Lemberg",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052771",
          },
        },
      },
    },
    ["2682"] = {
      title = "Pokrzydowo",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052772",
          },
        },
      },
    },
    ["2683"] = {
      title = "Kauernik",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052773",
          },
        },
      },
    },
    ["2684"] = {
      title = "Mroczno",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052774",
          },
        },
      },
    },
    ["2685"] = {
      title = "Rybno",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052775",
          },
        },
      },
    },
    ["2686"] = {
      title = "Usdau",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052776",
          },
        },
      },
    },
    ["2687"] = {
      title = "Groß Schläfken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052777",
          },
        },
      },
    },
    ["2688"] = {
      title = "Neidenburg",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052778",
          },
        },
      },
    },
    ["2689"] = {
      title = "Muschaken",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052779",
          },
        },
      },
    },
    ["2690"] = {
      title = "Roggen",
      editions = { 
        { 
          pub_year = 1922,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052780",
          },
        },
      },
    },
    ["2691"] = {
      title = "Willenberg (Süd)",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052781",
          },
        },
      },
    },
    ["2692"] = {
      title = "Groß Leschienen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052782",
          },
        },
      },
    },
    ["2709"] = {
      title = "Landschaftspolder",
      t_now = "Dollart",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052783",
          },
        },
      },
    },
    ["2710"] = {
      title = "Leer",
      t_now = "Leer in Ostfriesland",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052784",
          },
        },
      },
    },
    ["2711"] = {
      title = "Nortmoor",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052785",
          },
        },
      },
    },
    ["2712"] = {
      title = "Apen",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052786",
          },
        },
      },
    },
    ["2713"] = {
      title = "Westerstede",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052787",
          },
        },
      },
    },
    ["2714"] = {
      title = "Wiefelstede",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052788",
          },
        },
      },
    },
    ["2715"] = {
      title = "Rastede",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052789",
          },
        },
      },
    },
    ["2716"] = {
      title = "Elsfleth",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052790",
          },
        },
      },
    },
    ["2717"] = {
      title = "Schwanewede",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052791",
          },
        },
      },
    },
    ["2718"] = {
      title = "Osterholz",
      t_now = "Osterholz-Scharmbeck",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052792",
          },
        },
      },
    },
    ["2719"] = {
      title = "Worpswede",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052793",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052794",
          },
        },
      },
    },
    ["2720"] = {
      title = "Kirchtimke",
      t_now = "Tarmstedt",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052795",
          },
        },
      },
    },
    ["2721"] = {
      title = "Zeven",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052796",
          },
        },
      },
    },
    ["2722"] = {
      title = "Elsdorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052797",
          },
        },
      },
    },
    ["2723"] = {
      title = "Groß Sittensen",
      t_now = "Sittensen",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052798",
          },
        },
      },
    },
    ["2724"] = {
      title = "Tostedt",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052799",
          },
        },
      },
    },
    ["2725"] = {
      title = "Holm",
      t_now = "Handeloh",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052800",
          },
        },
      },
    },
    ["2726"] = {
      title = "Garlstorf",
      t_now = "Hanstedt",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052801",
          },
        },
      },
    },
    ["2727"] = {
      title = "Kirchgellersen",
      t_now = "Salzhausen",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1878,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052802",
          },
        },
      },
    },
    ["2728"] = {
      title = "Lüneburg",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052803",
          },
        },
        { 
          pub_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052804",
          },
        },
      },
    },
    ["2729"] = {
      title = "Neetze",
      t_now = "Scharnebeck",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052805",
          },
        },
      },
    },
    ["2730"] = {
      title = "Bleckede",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052806",
          },
        },
      },
    },
    ["2731"] = {
      title = "Neuhaus an der Elbe",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052808",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052807",
          },
        },
      },
    },
    ["2732"] = {
      title = "Jessenitz",
      editions = { 
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052809",
          },
        },
      },
    },
    ["2733"] = {
      title = "Leussow",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052810",
          },
        },
      },
    },
    ["2734"] = {
      title = "Eldena",
      editions = { 
        { 
          pub_year = 1957,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052811",
          },
        },
      },
    },
    ["2735"] = {
      title = "Grabow an der Elde",
      editions = { 
        { 
          pub_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052812",
          },
        },
      },
    },
    ["2736"] = {
      title = "Balow",
      editions = { 
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052813",
          },
        },
      },
    },
    ["2737"] = {
      title = "Hülsebeck",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052814",
          },
        },
      },
    },
    ["2738"] = {
      title = "Putlitz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052815",
          },
        },
      },
    },
    ["2739"] = {
      title = "Schmolde",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052816",
          },
        },
      },
    },
    ["2740"] = {
      title = "Freyenstein",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052817",
          },
        },
      },
    },
    ["2741"] = {
      title = "Wredenhagen",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052818",
          },
        },
      },
    },
    ["2742"] = {
      title = "Mirow",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052819",
          },
        },
      },
    },
    ["2743"] = {
      title = "Wesenberg",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052820",
          },
        },
      },
    },
    ["2744"] = {
      title = "Ahrensberg",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052821",
          },
        },
      },
    },
    ["2745"] = {
      title = "Lychen",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052822",
          },
        },
      },
    },
    ["2746"] = {
      title = "Thomsdorf",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052823",
          },
        },
      },
    },
    ["2747"] = {
      title = "Boitzenburg in der Uckermark",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052824",
          },
        },
      },
    },
    ["2748"] = {
      title = "Lindenhagen",
      t_now = "Hindenburg in der Mark",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052825",
          },
        },
      },
    },
    ["2749"] = {
      title = "Bietikow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052826",
          },
        },
      },
    },
    ["2750"] = {
      title = "Gramzow",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052827",
          },
        },
      },
    },
    ["2751"] = {
      title = "Penkun",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052828",
          },
        },
      },
    },
    ["2752"] = {
      title = "Greifenhagen",
      t_now = "Gartz",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052829",
          },
        },
      },
    },
    ["2753"] = {
      title = "Woltin",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052830",
          },
        },
      },
    },
    ["2754"] = {
      title = "Neumark in Pommern",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052831",
          },
        },
      },
    },
    ["2755"] = {
      title = "Werben in Pommern",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052832",
          },
        },
      },
    },
    ["2756"] = {
      title = "Kollin",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052833",
          },
        },
      },
    },
    ["2757"] = {
      title = "Zachan",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052834",
          },
        },
      },
    },
    ["2758"] = {
      title = "Ravenstein",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052835",
          },
        },
      },
    },
    ["2759"] = {
      title = "Reetz",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052836",
          },
        },
      },
    },
    ["2760"] = {
      title = "Neuwedell",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052837",
          },
        },
      },
    },
    ["2761"] = {
      title = "Kallies",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052838",
          },
        },
      },
    },
    ["2762"] = {
      title = "Spechtsdorf",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052839",
          },
        },
      },
    },
    ["2763"] = {
      title = "Marzdorf",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052840",
          },
        },
      },
    },
    ["2764"] = {
      title = "Deutsch Krone",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052841",
          },
        },
      },
    },
    ["2765"] = {
      title = "Breitenstein",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052842",
          },
        },
      },
    },
    ["2766"] = {
      title = "Lebehnke",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052843",
          },
        },
      },
    },
    ["2767"] = {
      title = "Krojanke",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052844",
          },
        },
      },
    },
    ["2768"] = {
      title = "Preußenfeld",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052845",
          },
        },
      },
    },
    ["2769"] = {
      title = "Wilhelmshof",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052846",
          },
        },
      },
    },
    ["2770"] = {
      title = "Dembno",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052847",
          },
        },
      },
    },
    ["2771"] = {
      title = "Mrotschen",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1874,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052848",
          },
        },
      },
    },
    ["2772"] = {
      title = "Hohenwalde",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052849",
          },
        },
      },
    },
    ["2773"] = {
      title = "Wtelno",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052850",
          },
        },
      },
    },
    ["2774"] = {
      title = "Zolondowo",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052851",
          },
        },
      },
    },
    ["2775"] = {
      title = "Rasmushausen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052852",
          },
        },
      },
    },
    ["2776"] = {
      title = "Unislaw",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052853",
          },
        },
      },
    },
    ["2777"] = {
      title = "Papau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052854",
          },
        },
      },
    },
    ["2778"] = {
      title = "Lissewo",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052855",
          },
        },
      },
    },
    ["2779"] = {
      title = "Briesen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016913",
          },
        },
      },
    },
    ["2780"] = {
      title = "Wittenburg in Westpreußen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052856",
          },
        },
      },
    },
    ["2781"] = {
      title = "Wrotzk",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052857",
          },
        },
      },
    },
    ["2782"] = {
      title = "Strasburg in Westpreußen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052858",
          },
        },
      },
    },
    ["2783"] = {
      title = "Radosk",
      editions = { 
        { 
          pub_year = 1930,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052859",
          },
        },
      },
    },
    ["2784"] = {
      title = "Lautenburg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052860",
          },
        },
      },
    },
    ["2785"] = {
      title = "Groß Lensk",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052861",
          },
        },
      },
    },
    ["2786"] = {
      title = "Heinrichsdorf",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052862",
          },
        },
      },
    },
    ["2787"] = {
      title = "Soldau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052863",
          },
        },
      },
    },
    ["2788"] = {
      title = "Bartkenguth",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052864",
          },
        },
      },
    },
    ["2791"] = {
      title = "Flammberg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052865",
          },
        },
      },
    },
    ["2809"] = {
      title = "Bunde",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052866",
          },
        },
      },
    },
    ["2810"] = {
      title = "Weener",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052867",
          },
        },
      },
    },
    ["2811"] = {
      title = "West-Rhauderfehn",
      t_now = "Rhauderfehn",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052868",
          },
        },
      },
    },
    ["2812"] = {
      title = "Barßel",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052869",
          },
        },
      },
    },
    ["2813"] = {
      title = "Edewecht",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052870",
          },
        },
      },
    },
    ["2814"] = {
      title = "Bad Zwischenahn",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052871",
          },
        },
      },
    },
    ["2815"] = {
      title = "Oldenburg",
      t_now = "Oldenburg (Oldenburg)",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052872",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052873",
          },
        },
      },
    },
    ["2816"] = {
      title = "Berne",
      t_now = "Hude (Oldenburg)",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052874",
          },
        },
      },
    },
    ["2817"] = {
      title = "Vegesack",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052875",
          },
        },
      },
    },
    ["2818"] = {
      title = "Lesum",
      t_now = "Bremen (Nord)",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052876",
          },
        },
      },
    },
    ["2819"] = {
      title = "Lilienthal",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052877",
          },
        },
      },
    },
    ["2820"] = {
      title = "Ottersberg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052878",
          },
        },
      },
    },
    ["2821"] = {
      title = "Groß Sottrum",
      t_now = "Sottrum",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016914",
          },
        },
      },
    },
    ["2822"] = {
      title = "Rotenburg",
      t_now = "Rotenburg an der Wümme",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052879",
          },
        },
      },
    },
    ["2823"] = {
      title = "Ostervesede",
      t_now = "Vahlde",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052880",
          },
        },
      },
    },
    ["2824"] = {
      title = "Schneverdingen",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052881",
          },
        },
      },
    },
    ["2825"] = {
      title = "Behringen",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052882",
          },
        },
      },
    },
    ["2826"] = {
      title = "Evendorf",
      t_now = "Egestorf",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052883",
          },
        },
      },
    },
    ["2827"] = {
      title = "Amelinghausen",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052884",
          },
        },
      },
    },
    ["2828"] = {
      title = "Bienenbüttel",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052885",
          },
        },
      },
    },
    ["2829"] = {
      title = "Altenmedingen",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052886",
          },
        },
      },
    },
    ["2830"] = {
      title = "Dahlenburg",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052887",
          },
        },
      },
    },
    ["2831"] = {
      title = "Bredenbock",
      t_now = "Göhrde",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052888",
          },
        },
      },
    },
    ["2832"] = {
      title = "Dannenberg",
      t_now = "Dannenberg an der Elbe (Nord)",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052889",
          },
        },
      },
    },
    ["2833"] = {
      title = "Dömitz",
      editions = { 
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052890",
          },
        },
      },
    },
    ["2834"] = {
      title = "Gorlosen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052891",
          },
        },
      },
    },
    ["2835"] = {
      title = "Rambow",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052892",
          },
        },
      },
    },
    ["2836"] = {
      title = "Karstädt",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052893",
          },
        },
      },
    },
    ["2837"] = {
      title = "Bäck",
      editions = { 
        { 
          pub_year = 1926,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052894",
          },
        },
      },
    },
    ["2838"] = {
      title = "Groß Pankow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052895",
          },
        },
      },
    },
    ["2839"] = {
      title = "Pritzwalk",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052896",
          },
        },
      },
    },
    ["2840"] = {
      title = "Wittstock",
      editions = { 
        { 
          pub_year = 1944,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052897",
          },
        },
      },
    },
    ["2841"] = {
      title = "Babitz",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052898",
          },
        },
      },
    },
    ["2842"] = {
      title = "Zechlin",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052899",
          },
        },
      },
    },
    ["2843"] = {
      title = "Rheinsberg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052900",
          },
        },
      },
    },
    ["2844"] = {
      title = "Fürstenberg",
      t_now = "Fürstenberg in Mecklenburg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052901",
          },
        },
      },
    },
    ["2845"] = {
      title = "Himmelpfort",
      editions = { 
        { 
          pub_year = 1944,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052902",
          },
        },
      },
    },
    ["2846"] = {
      title = "Gandenitz",
      editions = { 
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052903",
          },
        },
      },
    },
    ["2847"] = {
      title = "Templin",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052905",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052904",
          },
        },
      },
    },
    ["2848"] = {
      title = "Gerswalde",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052906",
          },
        },
      },
    },
    ["2849"] = {
      title = "Polßen",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052907",
          },
        },
      },
    },
    ["2850"] = {
      title = "Passow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052908",
          },
        },
      },
    },
    ["2851"] = {
      title = "Kunow",
      editions = { 
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052909",
          },
        },
      },
    },
    ["2852"] = {
      title = "Fiddichow",
      t_now = "Gatow",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052910",
          },
        },
      },
    },
    ["2853"] = {
      title = "Bahn",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052911",
          },
        },
      },
    },
    ["2854"] = {
      title = "Schwochow",
      editions = { 
        { 
          pub_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052912",
          },
        },
      },
    },
    ["2855"] = {
      title = "Pyritz",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052913",
          },
        },
      },
    },
    ["2856"] = {
      title = "Prillwitz",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052914",
          },
        },
      },
    },
    ["2857"] = {
      title = "Dölitz in Pommern",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052915",
          },
        },
      },
    },
    ["2858"] = {
      title = "Arnswalde",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052916",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052917",
          },
        },
      },
    },
    ["2859"] = {
      title = "Sellnow",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052918",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052919",
          },
        },
      },
    },
    ["2860"] = {
      title = "Fürstenau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052920",
          },
        },
      },
    },
    ["2861"] = {
      title = "Zatten",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052921",
          },
        },
      },
    },
    ["2862"] = {
      title = "Tütz",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052922",
          },
        },
      },
    },
    ["2863"] = {
      title = "Ruschendorf",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052923",
          },
        },
      },
    },
    ["2864"] = {
      title = "Arnsfelde",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052924",
          },
        },
      },
    },
    ["2865"] = {
      title = "Groß Wittenberg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052925",
          },
        },
      },
    },
    ["2866"] = {
      title = "Schneidemühl",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052926",
          },
        },
      },
    },
    ["2867"] = {
      title = "Schmilau",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052927",
          },
        },
      },
    },
    ["2868"] = {
      title = "Wissek",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052928",
          },
        },
      },
    },
    ["2869"] = {
      title = "Wirsitz",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052929",
          },
        },
      },
    },
    ["2870"] = {
      title = "Sadke",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052930",
          },
        },
      },
    },
    ["2871"] = {
      title = "Nakel an der Netze",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1877,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052931",
          },
        },
      },
    },
    ["2872"] = {
      title = "Slesin",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052932",
          },
        },
      },
    },
    ["2873"] = {
      title = "Bromberg",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052933",
          },
        },
      },
    },
    ["2874"] = {
      title = "Bromberg (Ost)",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052934",
          },
        },
      },
    },
    ["2875"] = {
      title = "Fordon",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052935",
          },
        },
      },
    },
    ["2876"] = {
      title = "Birglau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052936",
          },
        },
      },
    },
    ["2877"] = {
      title = "Culmsee",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052937",
          },
        },
      },
    },
    ["2878"] = {
      title = "Kielbasin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052938",
          },
        },
      },
    },
    ["2879"] = {
      title = "Schönsee",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052939",
          },
        },
      },
    },
    ["2880"] = {
      title = "Gollub",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052940",
          },
        },
      },
    },
    ["2881"] = {
      title = "Hammer",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052941",
          },
        },
      },
    },
    ["2882"] = {
      title = "Wilhelmsdank",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052942",
          },
        },
      },
    },
    ["2883"] = {
      title = "Gorzno",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052943",
          },
        },
      },
    },
    ["2884"] = {
      title = "Adlig Brinsk",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052944",
          },
        },
      },
    },
    ["2885"] = {
      title = "Neu-Zielun",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052945",
          },
        },
      },
    },
    ["2886"] = {
      title = "Königshagen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052946",
          },
        },
      },
    },
    ["2887"] = {
      title = "Illowo",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052947",
          },
        },
      },
    },
    ["2888"] = {
      title = "Mlawa",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052948",
          },
        },
      },
    },
    ["2909"] = {
      title = "Rhede an der Ems",
    },
    ["2910"] = {
      title = "Papenburg",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052949",
          },
        },
      },
    },
    ["2911"] = {
      title = "Burlage; Scharrel",
      t_now = "Burlage",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052950",
          },
        },
      },
    },
    ["2912"] = {
      title = "Scharrel",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052951",
          },
        },
      },
    },
    ["2913"] = {
      title = "Friesoythe",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052952",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052953",
          },
        },
      },
    },
    ["2914"] = {
      title = "Littel",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052954",
          },
        },
      },
    },
    ["2915"] = {
      title = "Wardenburg",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052955",
          },
        },
      },
    },
    ["2916"] = {
      title = "Kirchhatten",
      t_now = "Hatten",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052956",
          },
        },
      },
    },
    ["2917"] = {
      title = "Delmenhorst",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052957",
          },
        },
      },
    },
    ["2918"] = {
      title = "Bremen",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052958",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052959",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052960",
          },
        },
      },
    },
    ["2919"] = {
      title = "Hemelingen",
      t_now = "Bremen (Ost)",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052961",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052962",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052963",
          },
        },
      },
    },
    ["2920"] = {
      title = "Achim",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052964",
          },
        },
      },
    },
    ["2921"] = {
      title = "Ahausen",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052965",
          },
        },
      },
    },
    ["2922"] = {
      title = "Kirchwalsede",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052966",
          },
        },
      },
    },
    ["2923"] = {
      title = "Wittorf",
      t_now = "Bothel",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052967",
          },
        },
      },
    },
    ["2924"] = {
      title = "Neuenkirchen im Lüneburgischen",
      t_now = "Neuenkirchen",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052968",
          },
        },
      },
    },
    ["2925"] = {
      title = "Bispingen",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052969",
          },
        },
      },
    },
    ["2926"] = {
      title = "Breloh",
      t_now = "Munster (Nord)",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052970",
          },
        },
      },
    },
    ["2927"] = {
      title = "Wriedel",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052971",
          },
        },
      },
    },
    ["2928"] = {
      title = "Ebstorf",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052972",
          },
        },
      },
    },
    ["2929"] = {
      title = "Bevensen",
      t_now = "Bad Bevensen",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052973",
          },
        },
      },
    },
    ["2930"] = {
      title = "Himbergen",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052974",
          },
        },
      },
    },
    ["2931"] = {
      title = "Gülden",
      t_now = "Zernien",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052975",
          },
        },
      },
    },
    ["2932"] = {
      title = "Breese",
      t_now = "Dannenberg an der Elbe (Süd)",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052976",
          },
        },
      },
    },
    ["2933"] = {
      title = "Groß Gusborn",
      t_now = "Gusborn",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052977",
          },
        },
      },
    },
    ["2934"] = {
      title = "Lenzen",
      t_now = "Lenzen an der Elbe",
      editions = { 
        { 
          pub_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052978",
          },
        },
      },
    },
    ["2935"] = {
      title = "Schnackenburg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052979",
          },
        },
      },
    },
    ["2936"] = {
      title = "Schilde",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052980",
          },
        },
      },
    },
    ["2937"] = {
      title = "Perleberg",
      editions = { 
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052981",
          },
        },
      },
    },
    ["2938"] = {
      title = "Lindenberg",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052982",
          },
        },
      },
    },
    ["2939"] = {
      title = "Kolrep",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052983",
          },
        },
      },
    },
    ["2940"] = {
      title = "Wutike",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052984",
          },
        },
      },
    },
    ["2941"] = {
      title = "Rossow",
      editions = { 
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052985",
          },
        },
      },
    },
    ["2942"] = {
      title = "Zühlen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052986",
          },
        },
      },
    },
    ["2943"] = {
      title = "Dierberg",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052988",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052987",
          },
        },
      },
    },
    ["2944"] = {
      title = "Gransee",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052989",
          },
        },
      },
    },
    ["2945"] = {
      title = "Dannenwalde",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052990",
          },
        },
      },
    },
    ["2946"] = {
      title = "Hammelspring",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052991",
          },
        },
      },
    },
    ["2947"] = {
      title = "Gollin",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052992",
          },
        },
      },
    },
    ["2948"] = {
      title = "Ringenwalde",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052993",
          },
        },
      },
    },
    ["2949"] = {
      title = "Greiffenberg",
      t_now = "Greiffenberg in der Uckermark",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052994",
          },
        },
      },
    },
    ["2950"] = {
      title = "Angermünde",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052995",
          },
        },
      },
    },
    ["2951"] = {
      title = "Schwedt",
      editions = { 
        { 
          pub_year = 1921,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052996",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052997",
          },
        },
      },
    },
    ["2952"] = {
      title = "Uchtdorf",
      t_now = "Schwedt (Ost)",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052998",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71052999",
          },
        },
      },
    },
    ["2953"] = {
      title = "Wildenbruch in Pommern",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053000",
          },
        },
      },
    },
    ["2954"] = {
      title = "Beyersdorf",
      editions = { 
        { 
          pub_year = 1927,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053001",
          },
        },
      },
    },
    ["2955"] = {
      title = "Lippehne",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053002",
          },
        },
      },
    },
    ["2956"] = {
      title = "Schönow",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053003",
          },
        },
      },
    },
    ["2957"] = {
      title = "Bernstein",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053004",
          },
        },
      },
    },
    ["2958"] = {
      title = "Granow",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053005",
          },
        },
      },
    },
    ["2959"] = {
      title = "Schwachenwalde",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053006",
          },
        },
      },
    },
    ["2960"] = {
      title = "Bernsee",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053007",
          },
        },
      },
    },
    ["2961"] = {
      title = "Regenthin",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053008",
          },
        },
      },
    },
    ["2962"] = {
      title = "Schloppe",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053009",
          },
        },
      },
    },
    ["2963"] = {
      title = "Klein Drensen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053010",
          },
        },
      },
    },
    ["2964"] = {
      title = "Schönlanke",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053011",
          },
        },
      },
    },
    ["2965"] = {
      title = "Radolin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053012",
          },
        },
      },
    },
    ["2966"] = {
      title = "Usch",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053013",
          },
        },
      },
    },
    ["2967"] = {
      title = "Morzewo",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053014",
          },
        },
      },
    },
    ["2968"] = {
      title = "Samotschin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053015",
          },
        },
      },
    },
    ["2969"] = {
      title = "Jaktorowo",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053016",
          },
        },
      },
    },
    ["2970"] = {
      title = "Gromaden",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053017",
          },
        },
      },
    },
    ["2971"] = {
      title = "Szaradowo",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053018",
          },
        },
      },
    },
    ["2972"] = {
      title = "Schubin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053019",
          },
        },
      },
    },
    ["2973"] = {
      title = "Wolfhals",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053020",
          },
        },
      },
    },
    ["2974"] = {
      title = "Hopfengarten",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053021",
          },
        },
      },
    },
    ["2975"] = {
      title = "Schulitz",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053022",
          },
        },
      },
    },
    ["2976"] = {
      title = "Pensau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053023",
          },
        },
      },
    },
    ["2977"] = {
      title = "Thorn",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053024",
          },
        },
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053025",
          },
        },
      },
    },
    ["2978"] = {
      title = "Gramtschen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053026",
          },
        },
      },
    },
    ["2979"] = {
      title = "Preußisch Lanke",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053027",
          },
        },
      },
    },
    ["2980"] = {
      title = "Neuburg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053028",
          },
        },
      },
    },
    ["3008"] = {
      title = "Dörpen",
      t_now = "Dörpen (Anhang)",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053029",
          },
        },
      },
    },
    ["3009"] = {
      title = "Dörpen",
    },
    ["3010"] = {
      title = "Wippingen",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053030",
          },
        },
      },
    },
    ["3011"] = {
      title = "Börger",
      t_now = "Esterwegen",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053031",
          },
        },
      },
    },
    ["3012"] = {
      title = "Neu-Arenberg",
      t_now = "Rastdorf",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053032",
          },
        },
      },
    },
    ["3013"] = {
      title = "Markhausen",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053033",
          },
        },
      },
    },
    ["3014"] = {
      title = "Garrel",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053034",
          },
        },
      },
    },
    ["3015"] = {
      title = "Großenkneten",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053035",
          },
        },
      },
    },
    ["3016"] = {
      title = "Dötlingen",
      t_now = "Wildeshausen (Nord)",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053036",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053037",
          },
        },
      },
    },
    ["3017"] = {
      title = "Harpstedt",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053038",
          },
        },
      },
    },
    ["3018"] = {
      title = "Syke",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053039",
          },
        },
      },
    },
    ["3019"] = {
      title = "Riede",
      t_now = "Weyhe",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053040",
          },
        },
      },
    },
    ["3020"] = {
      title = "Thedinghausen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053041",
          },
        },
      },
    },
    ["3021"] = {
      title = "Verden an der Aller",
    },
    ["3022"] = {
      title = "Bendingbostel",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053042",
          },
        },
      },
    },
    ["3023"] = {
      title = "Visselhövede",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053043",
          },
        },
      },
    },
    ["3024"] = {
      title = "Dorfmark",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053044",
          },
        },
      },
    },
    ["3025"] = {
      title = "Soltau",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053045",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053046",
          },
        },
      },
    },
    ["3026"] = {
      title = "Munster",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053047",
          },
        },
      },
    },
    ["3027"] = {
      title = "Eimke",
      t_now = "Faßberg",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053048",
          },
        },
      },
    },
    ["3028"] = {
      title = "Gerdau",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053049",
          },
        },
      },
    },
    ["3029"] = {
      title = "Ülzen [Uelzen]",
      t_now = "Uelzen",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053050",
          },
        },
        { 
          pub_year = 1932,
          sheet_title = "Uelzen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053051",
          },
        },
      },
    },
    ["3030"] = {
      title = "Suhlendorf",
      t_now = "Rosche",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053052",
          },
        },
      },
    },
    ["3031"] = {
      title = "Klenze",
      t_now = "Clenze",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053053",
          },
        },
      },
    },
    ["3032"] = {
      title = "Lüchow",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053054",
          },
        },
      },
    },
    ["3033"] = {
      title = "Woltersdorf",
      editions = { 
        { 
          pub_year = 1965,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053055",
          },
        },
      },
    },
    ["3034"] = {
      title = "Lomitz",
      t_now = "Prezelle",
      editions = { 
        { 
          pub_year = 1951,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053056",
          },
        },
      },
    },
    ["3035"] = {
      title = "Groß Garz",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053057",
          },
        },
      },
    },
    ["3036"] = {
      title = "Wittenberge",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053058",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053059",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053060",
          },
        },
      },
    },
    ["3037"] = {
      title = "Bad Wilsnack",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053061",
          },
        },
      },
    },
    ["3038"] = {
      title = "Glöwen",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053062",
          },
        },
      },
    },
    ["3039"] = {
      title = "Demertin",
      t_now = "Demerthin",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053063",
          },
        },
      },
    },
    ["3040"] = {
      title = "Kyritz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053064",
          },
        },
      },
    },
    ["3041"] = {
      title = "Tramnitz",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053065",
          },
        },
      },
    },
    ["3042"] = {
      title = "Neu-Ruppin",
      t_now = "Neuruppin",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053067",
          },
        },
        { 
          pub_year = 1934,
          sheet_title = "Neuruppin",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053066",
          },
        },
      },
    },
    ["3043"] = {
      title = "Lindow",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053069",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053068",
          },
        },
      },
    },
    ["3044"] = {
      title = "Groß Mutz",
      editions = { 
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053070",
          },
        },
        { 
          pub_year = 1951,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053071",
          },
        },
      },
    },
    ["3045"] = {
      title = "Klein Mutz",
    },
    ["3046"] = {
      title = "Zehdenick",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053072",
          },
        },
      },
    },
    ["3047"] = {
      title = "Groß Schönebeck an der Schorfheide",
      editions = { 
        { 
          pub_year = 1934,
          sheet_title = "Groß Schönebeck",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053074",
          },
        },
        { 
          pub_year = 1957,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053073",
          },
        },
      },
    },
    ["3048"] = {
      title = "Joachimsthal",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053076",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053075",
          },
        },
      },
    },
    ["3049"] = {
      title = "Groß Ziethen",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053077",
          },
        },
      },
    },
    ["3050"] = {
      title = "Stolpe in der Mark",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053079",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1888,
          sheet_title = "Stolpe",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053078",
          },
        },
      },
    },
    ["3051"] = {
      title = "Zachow",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053080",
          },
        },
      },
    },
    ["3052"] = {
      title = "Königsberg in der Neumark",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053081",
          },
        },
      },
    },
    ["3053"] = {
      title = "Bad Schönfließ",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053082",
          },
        },
      },
    },
    ["3054"] = {
      title = "Schildberg bei Soldin",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053083",
          },
        },
      },
    },
    ["3055"] = {
      title = "Soldin",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053084",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053085",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053086",
          },
        },
      },
    },
    ["3056"] = {
      title = "Karzig",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053087",
          },
        },
      },
    },
    ["3057"] = {
      title = "Berlinchen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053088",
          },
        },
      },
    },
    ["3058"] = {
      title = "Büssow",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053089",
          },
        },
      },
    },
    ["3059"] = {
      title = "Wugarten",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053090",
          },
        },
      },
    },
    ["3060"] = {
      title = "Woldenberg",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053091",
          },
        },
      },
    },
    ["3061"] = {
      title = "Friedrichsdorf",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053092",
          },
        },
      },
    },
    ["3062"] = {
      title = "Eichberg",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053093",
          },
        },
      },
    },
    ["3063"] = {
      title = "Groß Drensen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053094",
          },
        },
      },
    },
    ["3064"] = {
      title = "Stieglitz",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053095",
          },
        },
      },
    },
    ["3065"] = {
      title = "Czarnikau",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053096",
          },
        },
      },
    },
    ["3066"] = {
      title = "Gembitz",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053097",
          },
        },
      },
    },
    ["3067"] = {
      title = "Kolmar in Posen",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053098",
          },
        },
      },
    },
    ["3068"] = {
      title = "Margonin",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016359",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053099",
          },
        },
      },
    },
    ["3069"] = {
      title = "Gollantsch",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053100",
          },
        },
      },
    },
    ["3070"] = {
      title = "Exin",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053101",
          },
        },
      },
    },
    ["3071"] = {
      title = "Lindenbrück",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053102",
          },
        },
      },
    },
    ["3072"] = {
      title = "Grünhagen",
      editions = { 
        { 
          pub_year = 1935,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053103",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053104",
          },
        },
      },
    },
    ["3073"] = {
      title = "Labischin",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053105",
          },
        },
      },
    },
    ["3074"] = {
      title = "Penchowo",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053106",
          },
        },
      },
    },
    ["3075"] = {
      title = "Groß Wodek",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053107",
          },
        },
      },
    },
    ["3076"] = {
      title = "Schirpitz",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053108",
          },
        },
      },
    },
    ["3077"] = {
      title = "Amberg; Podgorz",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053109",
          },
        },
      },
    },
    ["3078"] = {
      title = "Drewenzwinkel; Schillno",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053110",
          },
        },
      },
    },
    ["3108"] = {
      title = "Rütenbrock",
    },
    ["3109"] = {
      title = "Lathen",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053111",
          },
        },
      },
    },
    ["3110"] = {
      title = "Wahn in Hannover",
      t_now = "Wahn",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053112",
          },
        },
      },
    },
    ["3111"] = {
      title = "Sögel",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053113",
          },
        },
      },
    },
    ["3112"] = {
      title = "Werlte",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053114",
          },
        },
      },
    },
    ["3113"] = {
      title = "Molbergen",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053115",
          },
        },
      },
    },
    ["3114"] = {
      title = "Cloppenburg",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053116",
          },
        },
      },
    },
    ["3115"] = {
      title = "Visbek",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053117",
          },
        },
      },
    },
    ["3116"] = {
      title = "Wildeshausen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053118",
          },
        },
      },
    },
    ["3117"] = {
      title = "Twistringen",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053119",
          },
        },
      },
    },
    ["3118"] = {
      title = "Bassum",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053120",
          },
        },
      },
    },
    ["3119"] = {
      title = "Vilsen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053121",
          },
        },
      },
    },
    ["3120"] = {
      title = "Hoya",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053122",
          },
        },
      },
    },
    ["3121"] = {
      title = "Dörverden",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053123",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053124",
          },
        },
      },
    },
    ["3122"] = {
      title = "Kirchboitzen",
      t_now = "Häuslingen",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053125",
          },
        },
      },
    },
    ["3123"] = {
      title = "Walsrode",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053126",
          },
        },
      },
    },
    ["3124"] = {
      title = "Fallingbostel",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053127",
          },
        },
      },
    },
    ["3125"] = {
      title = "Bergen",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053128",
          },
        },
      },
    },
    ["3126"] = {
      title = "Hermannsburg",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053129",
          },
        },
      },
    },
    ["3127"] = {
      title = "Unterlüß",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053130",
          },
        },
      },
    },
    ["3128"] = {
      title = "Suderburg",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053131",
          },
        },
      },
    },
    ["3129"] = {
      title = "Wieren",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053132",
          },
        },
      },
    },
    ["3130"] = {
      title = "Bodenteich",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053133",
          },
        },
      },
    },
    ["3131"] = {
      title = "Waddekath",
      t_now = "Bergen an der Dumme",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1859,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053135",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1879,
          sheet_title = "Bergen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053134",
          },
        },
      },
    },
    ["3132"] = {
      title = "Salzwedel",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1859,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053136",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053137",
          },
        },
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053138",
          },
        },
      },
    },
    ["3133"] = {
      title = "Deutsch-Pretzier",
      t_now = "Pretzier",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1879,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053139",
          },
        },
      },
    },
    ["3134"] = {
      title = "Arendsee",
      t_now = "Arendsee in der Altmark",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053140",
          },
        },
      },
    },
    ["3135"] = {
      title = "Leppin",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053141",
          },
        },
      },
    },
    ["3136"] = {
      title = "Seehausen",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053142",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053143",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053144",
          },
        },
      },
    },
    ["3137"] = {
      title = "Werben an der Elbe",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053146",
          },
        },
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053147",
          },
        },
        { 
          pub_year = 1882,
          rec_year = 1880,
          sheet_title = "Werben",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053145",
          },
        },
      },
    },
    ["3138"] = {
      title = "Havelberg",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053148",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053149",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90013785",
          },
        },
      },
    },
    ["3139"] = {
      title = "Lohm",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053150",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053151",
          },
        },
      },
    },
    ["3140"] = {
      title = "Wusterhausen an der Dosse",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053152",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053153",
          },
        },
      },
    },
    ["3141"] = {
      title = "Wildberg",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053154",
          },
        },
      },
    },
    ["3142"] = {
      title = "Fehrbellin",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053156",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053155",
          },
        },
      },
    },
    ["3143"] = {
      title = "Wustrau",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053158",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053157",
          },
        },
      },
    },
    ["3144"] = {
      title = "Beetz",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053160",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053159",
          },
        },
      },
    },
    ["3145"] = {
      title = "Nassenheide",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053161",
          },
        },
      },
    },
    ["3146"] = {
      title = "Liebenwalde",
      editions = { 
        { 
          pub_year = 1945,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053162",
          },
        },
      },
    },
    ["3147"] = {
      title = "Ruhlsdorf",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053164",
          },
        },
        { 
          pub_year = 1884,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053163",
          },
        },
      },
    },
    ["3148"] = {
      title = "Eberswalde",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053165",
          },
        },
      },
    },
    ["3149"] = {
      title = "Hohenfinow",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053166",
          },
        },
      },
    },
    ["3150"] = {
      title = "Oderberg",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053167",
          },
        },
      },
    },
    ["3151"] = {
      title = "Zehden",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053168",
          },
        },
      },
    },
    ["3152"] = {
      title = "Mohrin",
      editions = { 
        { 
          pub_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053169",
          },
        },
      },
    },
    ["3153"] = {
      title = "Wartenberg",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053170",
          },
        },
      },
    },
    ["3154"] = {
      title = "Rosenthal in der Mark",
      editions = { 
        { 
          pub_year = 1927,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053171",
          },
        },
      },
    },
    ["3155"] = {
      title = "Staffelde",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053172",
          },
        },
      },
    },
    ["3156"] = {
      title = "Groß Fahlenwerder",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053173",
          },
        },
      },
    },
    ["3157"] = {
      title = "Lotzen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053174",
          },
        },
      },
    },
    ["3158"] = {
      title = "Altenfließ",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053175",
          },
        },
      },
    },
    ["3159"] = {
      title = "Friedeberg in der Neumark",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053176",
          },
        },
      },
    },
    ["3160"] = {
      title = "Driesen (West)",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053177",
          },
        },
      },
    },
    ["3161"] = {
      title = "Driesen (Ost)",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053178",
          },
        },
      },
    },
    ["3162"] = {
      title = "Kreuz",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053179",
          },
        },
      },
    },
    ["3163"] = {
      title = "Filehne",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053180",
          },
        },
      },
    },
    ["3164"] = {
      title = "Gulcz",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053181",
          },
        },
      },
    },
    ["3165"] = {
      title = "Lubasch",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053182",
          },
        },
      },
    },
    ["3166"] = {
      title = "Schrotthaus",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053183",
          },
        },
      },
    },
    ["3167"] = {
      title = "Budsin",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053184",
          },
        },
      },
    },
    ["3168"] = {
      title = "Zelitz",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053185",
          },
        },
      },
    },
    ["3169"] = {
      title = "Wongrowitz",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053186",
          },
        },
      },
    },
    ["3170"] = {
      title = "Stempuchowo",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053187",
          },
        },
      },
    },
    ["3171"] = {
      title = "Elsenau",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053188",
          },
        },
      },
    },
    ["3172"] = {
      title = "Znin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053189",
          },
        },
      },
    },
    ["3173"] = {
      title = "Bartschin",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053190",
          },
        },
      },
    },
    ["3174"] = {
      title = "Pakosch",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053191",
          },
        },
      },
    },
    ["3175"] = {
      title = "Jakschitz",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053192",
          },
        },
      },
    },
    ["3176"] = {
      title = "Argenau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053193",
          },
        },
      },
    },
    ["3177"] = {
      title = "Neugrabia",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053194",
          },
        },
      },
    },
    ["3178"] = {
      title = "Aleksandrów",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053195",
          },
        },
      },
    },
    ["3208"] = {
      title = "Hebelermeer",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053196",
          },
        },
      },
    },
    ["3209"] = {
      title = "Haren",
      t_now = "Haren an der Ems",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053197",
          },
        },
      },
    },
    ["3210"] = {
      title = "Klein Berßen",
    },
    ["3211"] = {
      title = "Holte",
      t_now = "Lähden",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053198",
          },
        },
      },
    },
    ["3212"] = {
      title = "Löningen",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053199",
          },
        },
      },
    },
    ["3213"] = {
      title = "Essen",
      t_now = "Essen (Oldenburg)",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053200",
          },
        },
      },
    },
    ["3214"] = {
      title = "Vestrup",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053201",
          },
        },
      },
    },
    ["3215"] = {
      title = "Vechta",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053202",
          },
        },
      },
    },
    ["3216"] = {
      title = "Goldenstedt",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053203",
          },
        },
      },
    },
    ["3217"] = {
      title = "Barnstorf",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053204",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053205",
          },
        },
      },
    },
    ["3218"] = {
      title = "Schmalförden",
      t_now = "Schwaförden",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053206",
          },
        },
      },
    },
    ["3219"] = {
      title = "Schwaförden",
      t_now = "Affinghausen",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053207",
          },
        },
      },
    },
    ["3220"] = {
      title = "Bücken Flecken",
      t_now = "Bücken",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053208",
          },
        },
      },
    },
    ["3221"] = {
      title = "Eystrup",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053209",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053210",
          },
        },
      },
    },
    ["3222"] = {
      title = "Rethem an der Aller",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053211",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053212",
          },
        },
      },
    },
    ["3223"] = {
      title = "Ahlden",
      t_now = "Hodenhagen",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053213",
          },
        },
      },
    },
    ["3224"] = {
      title = "Ostenholz",
      t_now = "Westenholz",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053214",
          },
        },
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053215",
          },
        },
      },
    },
    ["3225"] = {
      title = "Offen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053216",
          },
        },
      },
    },
    ["3226"] = {
      title = "Sülze",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053217",
          },
        },
      },
    },
    ["3227"] = {
      title = "Eschede",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053218",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053219",
          },
        },
      },
    },
    ["3228"] = {
      title = "Sprakensehl",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053220",
          },
        },
      },
    },
    ["3229"] = {
      title = "Hankensbüttel",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053221",
          },
        },
      },
    },
    ["3230"] = {
      title = "Wittingen",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053222",
          },
        },
      },
    },
    ["3231"] = {
      title = "Abbendorf",
      t_now = "Diesdorf",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1859,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053223",
          },
        },
      },
    },
    ["3232"] = {
      title = "Beetzendorf",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053225",
          },
        },
        { 
          pub_year = 1873,
          rec_year = 1859,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053224",
          },
        },
      },
    },
    ["3233"] = {
      title = "Groß Apenburg",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053226",
          },
        },
      },
    },
    ["3234"] = {
      title = "Jeetze",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053227",
          },
        },
      },
    },
    ["3235"] = {
      title = "Meßdorf",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053228",
          },
        },
      },
    },
    ["3236"] = {
      title = "Osterburg",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053230",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053231",
          },
        },
        { 
          pub_year = 1924,
          sheet_title = "Demen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053229",
          },
        },
      },
    },
    ["3237"] = {
      title = "Hindenburg",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053232",
          },
        },
      },
    },
    ["3238"] = {
      title = "Sandau",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053233",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053234",
          },
        },
      },
    },
    ["3239"] = {
      title = "Strodehne",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053236",
          },
        },
        { 
          pub_year = 1945,
          rec_year = 1903,
          sheet_title = "Lobenstein",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053237",
          },
        },
        { 
          pub_year = 1950,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053235",
          },
        },
      },
    },
    ["3240"] = {
      title = "Rhinow",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053238",
          },
        },
      },
    },
    ["3241"] = {
      title = "Friesack",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053239",
          },
        },
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053240",
          },
        },
      },
    },
    ["3242"] = {
      title = "Brunne",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053241",
          },
        },
      },
    },
    ["3243"] = {
      title = "Linum",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053242",
          },
        },
      },
    },
    ["3244"] = {
      title = "Kremmen",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053244",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053243",
          },
        },
      },
    },
    ["3245"] = {
      title = "Oranienburg",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053245",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053246",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053247",
          },
        },
      },
    },
    ["3246"] = {
      title = "Wandlitz",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053249",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053248",
          },
        },
      },
    },
    ["3247"] = {
      title = "Biesenthal",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1870,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053250",
          },
        },
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053251",
          },
        },
      },
    },
    ["3248"] = {
      title = "Grünthal",
      t_now = "Grüntal in der Mark",
      editions = { 
        { 
          pub_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053252",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053253",
          },
        },
        { 
          pub_year = 1942,
          sheet_title = "Grüntal in der Mark",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053254",
          },
        },
      },
    },
    ["3249"] = {
      title = "Wölsickendorf",
      editions = { 
        { 
          pub_year = 1943,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053255",
          },
        },
      },
    },
    ["3250"] = {
      title = "Bad Freienwalde an der Oder",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053257",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053256",
          },
        },
      },
    },
    ["3251"] = {
      title = "Neulewin",
      editions = { 
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053258",
          },
        },
      },
    },
    ["3252"] = {
      title = "Bärwalde in der Neumark",
      t_now = "Bärwalde",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053259",
          },
        },
      },
    },
    ["3253"] = {
      title = "Fürstenfelde",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053261",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053260",
          },
        },
      },
    },
    ["3254"] = {
      title = "Neudamm",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053262",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053263",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053264",
          },
        },
      },
    },
    ["3255"] = {
      title = "Massin",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053266",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053265",
          },
        },
      },
    },
    ["3256"] = {
      title = "Hohenwalde",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053267",
          },
        },
      },
    },
    ["3257"] = {
      title = "Landsberg an der Warthe",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053268",
          },
        },
      },
    },
    ["3258"] = {
      title = "Zantoch",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053269",
          },
        },
      },
    },
    ["3259"] = {
      title = "Lipke",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053270",
          },
        },
      },
    },
    ["3260"] = {
      title = "Gottschimm",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053271",
          },
        },
      },
    },
    ["3261"] = {
      title = "Altsorge",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053272",
          },
        },
      },
    },
    ["3262"] = {
      title = "Schneidemühlchen",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053273",
          },
        },
      },
    },
    ["3263"] = {
      title = "Neubrück",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053274",
          },
        },
      },
    },
    ["3264"] = {
      title = "Wronke",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053275",
          },
        },
      },
    },
    ["3265"] = {
      title = "Obersitzko",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053276",
          },
        },
      },
    },
    ["3266"] = {
      title = "Polajewo",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053277",
          },
        },
      },
    },
    ["3267"] = {
      title = "Bülowsthal",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053278",
          },
        },
      },
    },
    ["3268"] = {
      title = "Rogasen",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053279",
          },
        },
      },
    },
    ["3269"] = {
      title = "Mietschisko",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053280",
          },
        },
      },
    },
    ["3270"] = {
      title = "Janowitz",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053281",
          },
        },
      },
    },
    ["3271"] = {
      title = "Rogowo",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053282",
          },
        },
      },
    },
    ["3272"] = {
      title = "Gonsawa",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053283",
          },
        },
      },
    },
    ["3273"] = {
      title = "Kaisersfelde",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053284",
          },
        },
      },
    },
    ["3274"] = {
      title = "Broniewice",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053285",
          },
        },
      },
    },
    ["3275"] = {
      title = "Hohensalza",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053286",
          },
        },
      },
    },
    ["3276"] = {
      title = "Freitagsheim",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053287",
          },
        },
      },
    },
    ["3277"] = {
      title = "Luisenfelde",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053288",
          },
        },
      },
    },
    ["3306"] = {
      title = "Laar",
    },
    ["3307"] = {
      title = "Emlichheim",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053289",
          },
        },
      },
    },
    ["3308"] = {
      title = "Hesepertwist",
      t_now = "Twist",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053290",
          },
        },
      },
    },
    ["3309"] = {
      title = "Meppen",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053291",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053292",
          },
        },
      },
    },
    ["3310"] = {
      title = "Haselünne",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053293",
          },
        },
      },
    },
    ["3311"] = {
      title = "Herzlake",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053294",
          },
        },
      },
    },
    ["3312"] = {
      title = "Berge",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053295",
          },
        },
      },
    },
    ["3313"] = {
      title = "Quakenbrück",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053296",
          },
        },
      },
    },
    ["3314"] = {
      title = "Dinklage",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053297",
          },
        },
      },
    },
    ["3315"] = {
      title = "Lohne in Oldenburg",
      t_now = "Lohne (Oldenburg)",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053298",
          },
        },
      },
    },
    ["3316"] = {
      title = "Diepholz",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053299",
          },
        },
      },
    },
    ["3317"] = {
      title = "Barver",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053300",
          },
        },
      },
    },
    ["3318"] = {
      title = "Sulingen",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053301",
          },
        },
      },
    },
    ["3319"] = {
      title = "Siedenburg",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053302",
          },
        },
      },
    },
    ["3320"] = {
      title = "Liebenau",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053303",
          },
        },
      },
    },
    ["3321"] = {
      title = "Nienburg",
      t_now = "Nienburg an der Weser",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053304",
          },
        },
      },
    },
    ["3322"] = {
      title = "Rodewald",
      t_now = "Steimbke",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053305",
          },
        },
      },
    },
    ["3323"] = {
      title = "Schwarmstedt",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015405",
          },
        },
      },
    },
    ["3324"] = {
      title = "Thören",
      t_now = "Lindwedel",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053306",
          },
        },
      },
    },
    ["3325"] = {
      title = "Winsen an der Aller",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053307",
          },
        },
      },
    },
    ["3326"] = {
      title = "Celle",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053308",
          },
        },
      },
    },
    ["3327"] = {
      title = "Beedenbostel",
      t_now = "Lachendorf",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053309",
          },
        },
      },
    },
    ["3328"] = {
      title = "Groß Ösingen",
      t_now = "Groß Oesingen",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053310",
          },
        },
      },
    },
    ["3329"] = {
      title = "Wahrenholz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053311",
          },
        },
      },
    },
    ["3330"] = {
      title = "Knesebeck",
      editions = { 
        { 
          pub_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053312",
          },
        },
      },
    },
    ["3331"] = {
      title = "Brome",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053313",
          },
        },
      },
    },
    ["3332"] = {
      title = "Klötze",
      t_now = "Klötze (West)",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053314",
          },
        },
      },
    },
    ["3333"] = {
      title = "Klötze (Ost)",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053315",
          },
        },
      },
    },
    ["3334"] = {
      title = "Kalbe an der Milde",
      t_now = "Calbe an der Milde",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053316",
          },
        },
      },
    },
    ["3335"] = {
      title = "Bismark in der Provinz Sachsen",
      t_now = "Bismark in der Altmark",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053317",
          },
        },
      },
    },
    ["3336"] = {
      title = "Schinne",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053318",
          },
        },
      },
    },
    ["3337"] = {
      title = "Stendal",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053319",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015406",
          },
        },
      },
    },
    ["3338"] = {
      title = "Arneburg",
      editions = { 
        { 
          pub_year = 1954,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053320",
          },
        },
      },
    },
    ["3339"] = {
      title = "Schollene",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053321",
          },
        },
      },
    },
    ["3340"] = {
      title = "Rathenow",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015407",
          },
        },
        { 
          pub_year = 1928,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053322",
          },
        },
      },
    },
    ["3341"] = {
      title = "Haage",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053323",
          },
        },
      },
    },
    ["3342"] = {
      title = "Ribbeck",
      editions = { 
        { 
          pub_year = 1943,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053324",
          },
        },
      },
    },
    ["3343"] = {
      title = "Nauen",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053325",
          },
        },
      },
    },
    ["3344"] = {
      title = "Marwitz",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053326",
          },
        },
      },
    },
    ["3345"] = {
      title = "Hennigsdorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053327",
          },
        },
      },
    },
    ["3346"] = {
      title = "Schönerlinde",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053329",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053328",
          },
        },
      },
    },
    ["3347"] = {
      title = "Bernau bei Berlin",
      t_now = "Bernau",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1901,
          sheet_title = "Bernau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053331",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053330",
          },
        },
      },
    },
    ["3348"] = {
      title = "Werneuchen",
      editions = { 
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053333",
          },
        },
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053332",
          },
        },
      },
    },
    ["3349"] = {
      title = "Prötzel",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053335",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053334",
          },
        },
      },
    },
    ["3350"] = {
      title = "Möglin",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053337",
          },
        },
        { 
          pub_year = 1944,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053336",
          },
        },
      },
    },
    ["3351"] = {
      title = "Neu-Trebbin",
      t_now = "Neutrebbin",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053339",
          },
        },
        { 
          pub_year = 1942,
          sheet_title = "Neutrebbin",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053338",
          },
        },
      },
    },
    ["3352"] = {
      title = "Letschin",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053340",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053342",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015724",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053343",
          },
        },
      },
    },
    ["3353"] = {
      title = "Quartschen",
      t_now = "Genschmar",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053345",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053344",
          },
        },
      },
    },
    ["3354"] = {
      title = "Tamsel",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053346",
          },
        },
      },
    },
    ["3355"] = {
      title = "Vietz",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053348",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053347",
          },
        },
      },
    },
    ["3356"] = {
      title = "Költschen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053349",
          },
        },
      },
    },
    ["3357"] = {
      title = "Dechsel",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053350",
          },
        },
      },
    },
    ["3358"] = {
      title = "Trebisch",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053351",
          },
        },
      },
    },
    ["3359"] = {
      title = "Schwerin",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053352",
          },
        },
      },
    },
    ["3360"] = {
      title = "Waitze",
      editions = { 
        { 
          pub_year = 1944,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053353",
          },
        },
      },
    },
    ["3361"] = {
      title = "Birnbaum",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053354",
          },
        },
      },
    },
    ["3362"] = {
      title = "Zirke",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053355",
          },
        },
      },
    },
    ["3363"] = {
      title = "Klodzisko",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053356",
          },
        },
      },
    },
    ["3364"] = {
      title = "Scharfenort",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053357",
          },
        },
      },
    },
    ["3365"] = {
      title = "Samter",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053358",
          },
        },
      },
    },
    ["3366"] = {
      title = "Obornik",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053359",
          },
        },
      },
    },
    ["3367"] = {
      title = "Lukowo",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053360",
          },
        },
      },
    },
    ["3368"] = {
      title = "Schokken",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053361",
          },
        },
      },
    },
    ["3369"] = {
      title = "Jabkowo",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053362",
          },
        },
      },
    },
    ["3370"] = {
      title = "Kletzko",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053363",
          },
        },
      },
    },
    ["3371"] = {
      title = "Modlin",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053364",
          },
        },
      },
    },
    ["3372"] = {
      title = "Goscieszyn",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053365",
          },
        },
      },
    },
    ["3373"] = {
      title = "Mogilno",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053366",
          },
        },
      },
    },
    ["3374"] = {
      title = "Kwiecischewo",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053367",
          },
        },
        { 
          pub_year = 1940,
          sheet_title = "Blütenau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053368",
          },
        },
      },
    },
    ["3375"] = {
      title = "Strelno",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053369",
          },
        },
      },
    },
    ["3376"] = {
      title = "Grünholm",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053370",
          },
        },
      },
    },
    ["3377"] = {
      title = "Radziejow",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053371",
          },
        },
      },
    },
    ["3406"] = {
      title = "Itterbeck",
    },
    ["3407"] = {
      title = "Veldhausen",
      t_now = "Neuenhaus (Nord)",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053372",
          },
        },
      },
    },
    ["3408"] = {
      title = "Wietmarschen",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053373",
          },
        },
      },
    },
    ["3409"] = {
      title = "Lingen",
      t_now = "Lingen an der Ems",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053374",
          },
        },
      },
    },
    ["3410"] = {
      title = "Backum",
      t_now = "Lingen an der Ems (Ost)",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053375",
          },
        },
      },
    },
    ["3411"] = {
      title = "Lengerich in Hannover",
      t_now = "Lengerich",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053376",
          },
        },
      },
    },
    ["3412"] = {
      title = "Fürstenau in Hannover",
      t_now = "Fürstenau",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053377",
          },
        },
      },
    },
    ["3413"] = {
      title = "Bersenbrück",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053378",
          },
        },
      },
    },
    ["3414"] = {
      title = "Holdorf",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053379",
          },
        },
      },
    },
    ["3415"] = {
      title = "Damme",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053380",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053381",
          },
        },
      },
    },
    ["3416"] = {
      title = "Lembruch",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053382",
          },
        },
      },
    },
    ["3417"] = {
      title = "Wagenfeld",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053383",
          },
        },
      },
    },
    ["3418"] = {
      title = "Ströhen",
      t_now = "Bahrenborstel",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053384",
          },
        },
      },
    },
    ["3419"] = {
      title = "Nendorf",
      t_now = "Uchte (Nord)",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053385",
          },
        },
      },
    },
    ["3420"] = {
      title = "Stolzenau",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053386",
          },
        },
      },
    },
    ["3421"] = {
      title = "Husum im Kreis Nienburg",
      t_now = "Husum",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053387",
          },
        },
      },
    },
    ["3422"] = {
      title = "Neustadt am Rübenberge",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053388",
          },
        },
      },
    },
    ["3423"] = {
      title = "Otternhagen",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053389",
          },
        },
      },
    },
    ["3424"] = {
      title = "Mellendorf",
      t_now = "Wedemark",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053390",
          },
        },
      },
    },
    ["3425"] = {
      title = "Fuhrberg",
      t_now = "Wettmar",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053391",
          },
        },
      },
    },
    ["3426"] = {
      title = "Wathlingen",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053392",
          },
        },
      },
    },
    ["3427"] = {
      title = "Bröckel",
      t_now = "Wienhausen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053393",
          },
        },
      },
    },
    ["3428"] = {
      title = "Müden",
      t_now = "Müden an der Aller",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053394",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053395",
          },
        },
      },
    },
    ["3429"] = {
      title = "Gamsen",
      t_now = "Wesendorf",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053396",
          },
        },
      },
    },
    ["3430"] = {
      title = "Ehra",
      t_now = "Ehra-Lessien",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053397",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053398",
          },
        },
      },
    },
    ["3431"] = {
      title = "Steimke",
      t_now = "Parsau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053399",
          },
        },
      },
    },
    ["3432"] = {
      title = "Kunrau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053401",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053400",
          },
        },
      },
    },
    ["3433"] = {
      title = "Jeggau",
      t_now = "Solpke",
      editions = { 
        { 
          pub_year = 1873,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053402",
          },
        },
      },
    },
    ["3434"] = {
      title = "Gardelegen",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053403",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053404",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053406",
          },
        },
      },
    },
    ["3435"] = {
      title = "Klinke",
      t_now = "Lindstedt",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053407",
          },
        },
      },
    },
    ["3436"] = {
      title = "Lüderitz",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053408",
          },
        },
      },
    },
    ["3437"] = {
      title = "Tangermünde",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014763",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014762",
          },
        },
      },
    },
    ["3438"] = {
      title = "Jerichow",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053409",
          },
        },
      },
    },
    ["3439"] = {
      title = "Vieritz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053410",
          },
        },
      },
    },
    ["3440"] = {
      title = "Bamme",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053411",
          },
        },
      },
    },
    ["3441"] = {
      title = "Garlitz",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053412",
          },
        },
      },
    },
    ["3442"] = {
      title = "Tremmen",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053413",
          },
        },
      },
    },
    ["3443"] = {
      title = "Wustermark",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053415",
          },
        },
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053414",
          },
        },
      },
    },
    ["3444"] = {
      title = "Dallgow-Döberitz",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053417",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053418",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053416",
          },
        },
      },
    },
    ["3445"] = {
      title = "Spandau",
      t_now = "Berlin-Spandau",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1901,
          sheet_title = "Charlottenburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053419",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1901,
          sheet_title = "Charlottenburg; Berlin",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053420",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1901,
          sheet_title = "Charlottenburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053421",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053422",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014963",
          },
        },
        { 
          pub_year = 1945,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014967",
          },
        },
      },
    },
    ["3446"] = {
      title = "Berlin (Nord)",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1901,
          sheet_title = "Berlin",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053423",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014975",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014972",
          },
        },
      },
    },
    ["3447"] = {
      title = "Friedrichsfelde",
      t_now = "Berlin Friedrichsfelde",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053424",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053425",
          },
        },
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053426",
          },
        },
      },
    },
    ["3448"] = {
      title = "Altlandsberg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053427",
          },
        },
      },
    },
    ["3449"] = {
      title = "Strausberg",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053428",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053429",
          },
        },
      },
    },
    ["3450"] = {
      title = "Müncheberg",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053431",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053432",
          },
        },
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053430",
          },
        },
      },
    },
    ["3451"] = {
      title = "Trebnitz",
      t_now = "Trebnitz in der Mark",
      editions = { 
        { 
          pub_year = 1945,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053433",
          },
        },
      },
    },
    ["3452"] = {
      title = "Seelow",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053434",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053435",
          },
        },
      },
    },
    ["3453"] = {
      title = "Küstrin",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1891,
          sheet_title = "Cüstrin",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053437",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053436",
          },
        },
      },
    },
    ["3454"] = {
      title = "Sonnenburg",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053438",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053439",
          },
        },
      },
    },
    ["3455"] = {
      title = "Alt Limmritz",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053440",
          },
        },
      },
    },
    ["3456"] = {
      title = "Kriescht",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053441",
          },
        },
      },
    },
    ["3457"] = {
      title = "Königswalde",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053442",
          },
        },
      },
    },
    ["3458"] = {
      title = "Blesen",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053443",
          },
        },
      },
    },
    ["3459"] = {
      title = "Gollmütz",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053444",
          },
        },
      },
    },
    ["3460"] = {
      title = "Prittisch",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053445",
          },
        },
      },
    },
    ["3461"] = {
      title = "Kähme",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053446",
          },
        },
      },
    },
    ["3462"] = {
      title = "Kwiltsch",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053447",
          },
        },
      },
    },
    ["3463"] = {
      title = "Pinne",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053448",
          },
        },
      },
    },
    ["3464"] = {
      title = "Ottorowo",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053449",
          },
        },
      },
    },
    ["3465"] = {
      title = "Kazmierz",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053450",
          },
        },
      },
    },
    ["3466"] = {
      title = "Wargowo",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053451",
          },
        },
      },
    },
    ["3467"] = {
      title = "Owinsk",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053452",
          },
        },
      },
    },
    ["3468"] = {
      title = "Murowana-Goslin",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053453",
          },
        },
      },
    },
    ["3469"] = {
      title = "Welnau",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053455",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053454",
          },
        },
      },
    },
    ["3470"] = {
      title = "Libau",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053456",
          },
        },
      },
    },
    ["3471"] = {
      title = "Gnesen",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053457",
          },
        },
      },
    },
    ["3472"] = {
      title = "Tremessen",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053458",
          },
        },
      },
    },
    ["3473"] = {
      title = "Tschemsal",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053459",
          },
        },
      },
    },
    ["3474"] = {
      title = "Gembitz im Kreis Mogilno",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053460",
          },
        },
      },
    },
    ["3475"] = {
      title = "Sierakowo",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053461",
          },
        },
      },
    },
    ["3476"] = {
      title = "Popowo",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053462",
          },
        },
      },
    },
    ["3506"] = {
      title = "Getelomoor",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053463",
          },
        },
      },
    },
    ["3507"] = {
      title = "Neuenhaus",
      t_now = "Neuenhaus (Süd)",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053464",
          },
        },
      },
    },
    ["3508"] = {
      title = "Nordhorn",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053465",
          },
        },
      },
    },
    ["3509"] = {
      title = "Lohne",
      t_now = "Lingen an der Ems (Süd)",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053466",
          },
        },
      },
    },
    ["3510"] = {
      title = "Plantlünne",
      t_now = "Lünne",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053467",
          },
        },
      },
    },
    ["3511"] = {
      title = "Freren",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053468",
          },
        },
      },
    },
    ["3512"] = {
      title = "Voltlage",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053469",
          },
        },
      },
    },
    ["3513"] = {
      title = "Bramsche",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053470",
          },
        },
      },
    },
    ["3514"] = {
      title = "Vörden",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053471",
          },
        },
      },
    },
    ["3515"] = {
      title = "Hunteburg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053472",
          },
        },
      },
    },
    ["3516"] = {
      title = "Lemförde",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053473",
          },
        },
      },
    },
    ["3517"] = {
      title = "Rahden",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053474",
          },
        },
      },
    },
    ["3518"] = {
      title = "Diepenau",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053475",
          },
        },
      },
    },
    ["3519"] = {
      title = "Uchte",
      t_now = "Uchte (Süd)",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053476",
          },
        },
      },
    },
    ["3520"] = {
      title = "Schlüsselburg",
      t_now = "Loccum",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053477",
          },
        },
      },
    },
    ["3521"] = {
      title = "Rehburg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053478",
          },
        },
      },
    },
    ["3522"] = {
      title = "Wunstorf",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053479",
          },
        },
      },
    },
    ["3523"] = {
      title = "Stöcken",
      t_now = "Garbsen",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053480",
          },
        },
      },
    },
    ["3524"] = {
      title = "Isernhagen",
      t_now = "Hannover (Nord)",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053481",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053482",
          },
        },
      },
    },
    ["3525"] = {
      title = "Groß Burgwedel",
      t_now = "Großburgwedel",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053483",
          },
        },
      },
    },
    ["3526"] = {
      title = "Burgdorf",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053484",
          },
        },
      },
    },
    ["3527"] = {
      title = "Ütze",
      t_now = "Uetze",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053485",
          },
        },
      },
    },
    ["3528"] = {
      title = "Meinersen",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053486",
          },
        },
      },
    },
    ["3529"] = {
      title = "Gifhorn",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053487",
          },
        },
      },
    },
    ["3530"] = {
      title = "Fallersleben",
      t_now = "Wolfsburg",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053488",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053489",
          },
        },
      },
    },
    ["3531"] = {
      title = "Oebisfelde",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053490",
          },
        },
      },
    },
    ["3532"] = {
      title = "Rätzlingen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053491",
          },
        },
      },
    },
    ["3533"] = {
      title = "Sachau",
      t_now = "Mieste",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053492",
          },
        },
      },
    },
    ["3534"] = {
      title = "Letzlingen",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053494",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053493",
          },
        },
      },
    },
    ["3535"] = {
      title = "Dolle",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053496",
          },
        },
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053495",
          },
        },
      },
    },
    ["3536"] = {
      title = "Tangerhütte",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053497",
          },
        },
      },
    },
    ["3537"] = {
      title = "Weißewarthe",
      t_now = "Weißewarte",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053498",
          },
        },
        { 
          pub_year = 1938,
          sheet_title = "Weißewarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053499",
          },
        },
      },
    },
    ["3538"] = {
      title = "Genthin",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016578",
          },
        },
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053500",
          },
        },
      },
    },
    ["3539"] = {
      title = "Schlagenthin",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053503",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053502",
          },
        },
      },
    },
    ["3540"] = {
      title = "Plaue",
      t_now = "Plaue an der Havel",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053504",
          },
        },
      },
    },
    ["3541"] = {
      title = "Brandenburg an der Havel",
      editions = { 
        { 
          pub_year = 1922,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053506",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053505",
          },
        },
      },
    },
    ["3542"] = {
      title = "Groß Kreutz",
      t_now = "Groß Kreuz",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053507",
          },
        },
      },
    },
    ["3543"] = {
      title = "Ketzin",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053509",
          },
        },
        { 
          pub_year = 1917,
          rec_year = 1901,
          sheet_title = "Ketzin; Potsdam",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053510",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053511",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053508",
          },
        },
      },
    },
    ["3544"] = {
      title = "Potsdam (Nord)",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053512",
          },
        },
        { 
          pub_year = 1917,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053513",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053514",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015125",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053515",
          },
        },
      },
    },
    ["3545"] = {
      title = "Teltow",
      t_now = "Berlin-Zehlendorf",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053516",
          },
        },
        { 
          pub_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053517",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1901,
          sheet_title = "Teltow; Schöneberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053519",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053518",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053520",
          },
        },
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053521",
          },
        },
      },
    },
    ["3546"] = {
      title = "Berlin (Süd)",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1901,
          sheet_title = "Schöneberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053522",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053523",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015126",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015127",
          },
        },
      },
    },
    ["3547"] = {
      title = "Cöpenick",
      t_now = "Berlin-Köpenick",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053524",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053525",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          sheet_title = "Köpenick",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053526",
          },
        },
        { 
          pub_year = 1945,
          rec_year = 1901,
          sheet_title = "Berlin (Süd)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015128",
          },
        },
      },
    },
    ["3548"] = {
      title = "Rüdersdorf",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053528",
          },
        },
        { 
          pub_year = 1922,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053529",
          },
        },
        { 
          pub_year = 1945,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053527",
          },
        },
      },
    },
    ["3549"] = {
      title = "Herzfelde",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053531",
          },
        },
        { 
          pub_year = 1954,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053530",
          },
        },
      },
    },
    ["3550"] = {
      title = "Beerfelde",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053533",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053532",
          },
        },
      },
    },
    ["3551"] = {
      title = "Heinersdorf",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053534",
          },
        },
      },
    },
    ["3552"] = {
      title = "Libbenichen",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053536",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053535",
          },
        },
      },
    },
    ["3553"] = {
      title = "Lebus",
      editions = { 
        { 
          pub_year = 1923,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053538",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053537",
          },
        },
      },
    },
    ["3554"] = {
      title = "Groß Rade",
      editions = { 
        { 
          pub_year = 1923,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053540",
          },
        },
        { 
          pub_year = 1895,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053539",
          },
        },
      },
    },
    ["3555"] = {
      title = "Drossen",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053542",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053541",
          },
        },
      },
    },
    ["3556"] = {
      title = "Zielenzig",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053543",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053544",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053545",
          },
        },
      },
    },
    ["3557"] = {
      title = "Schermeisel",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053546",
          },
        },
      },
    },
    ["3558"] = {
      title = "Tempel",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053547",
          },
        },
      },
    },
    ["3559"] = {
      title = "Meseritz",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053548",
          },
        },
      },
    },
    ["3560"] = {
      title = "Betsche",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053549",
          },
        },
      },
    },
    ["3561"] = {
      title = "Lewitz",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053550",
          },
        },
      },
    },
    ["3562"] = {
      title = "Zembowo",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053551",
          },
        },
      },
    },
    ["3563"] = {
      title = "Neustadt bei Pinne",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053552",
          },
        },
      },
    },
    ["3564"] = {
      title = "Duschnik",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053553",
          },
        },
      },
    },
    ["3565"] = {
      title = "Groß Gay",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053554",
          },
        },
      },
    },
    ["3566"] = {
      title = "Sady",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053555",
          },
        },
      },
    },
    ["3567"] = {
      title = "Posen (Nord)",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053556",
          },
        },
      },
    },
    ["3568"] = {
      title = "Schwersenz",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053557",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053558",
          },
        },
      },
    },
    ["3569"] = {
      title = "Pudewitz",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053559",
          },
        },
      },
    },
    ["3570"] = {
      title = "Schwarzenau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053560",
          },
        },
      },
    },
    ["3571"] = {
      title = "Zydowo",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053561",
          },
        },
      },
    },
    ["3572"] = {
      title = "Witkowo",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053562",
          },
        },
      },
    },
    ["3573"] = {
      title = "Powidz",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053563",
          },
        },
      },
    },
    ["3574"] = {
      title = "Orchowo",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053564",
          },
        },
      },
    },
    ["3575"] = {
      title = "Siedlimowo",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053565",
          },
        },
      },
    },
    ["3608"] = {
      title = "Bentheim",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053566",
          },
        },
      },
    },
    ["3609"] = {
      title = "Schüttorf",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053567",
          },
        },
      },
    },
    ["3610"] = {
      title = "Salzbergen",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053568",
          },
        },
      },
    },
    ["3611"] = {
      title = "Hopsten",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053569",
          },
        },
      },
    },
    ["3612"] = {
      title = "Mettingen",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053570",
          },
        },
      },
    },
    ["3613"] = {
      title = "Westerkappeln",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053571",
          },
        },
      },
    },
    ["3614"] = {
      title = "Rulle",
      t_now = "Wallenhorst",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053572",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053573",
          },
        },
      },
    },
    ["3615"] = {
      title = "Osterkappeln",
      t_now = "Bohmte",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053574",
          },
        },
      },
    },
    ["3616"] = {
      title = "Levern",
      t_now = "Preußisch Oldendorf",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053575",
          },
        },
      },
    },
    ["3617"] = {
      title = "Lübbecke",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053576",
          },
        },
      },
    },
    ["3618"] = {
      title = "Hartum",
      t_now = "Hille",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053577",
          },
        },
      },
    },
    ["3619"] = {
      title = "Petershagen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053578",
          },
        },
      },
    },
    ["3620"] = {
      title = "Wiedensahl",
      t_now = "Niedernwöhren",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053579",
          },
        },
      },
    },
    ["3621"] = {
      title = "Stadthagen",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053580",
          },
        },
        { 
          pub_year = 1937,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053581",
          },
        },
      },
    },
    ["3622"] = {
      title = "Rodenberg",
      t_now = "Barsinghausen",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053582",
          },
        },
      },
    },
    ["3623"] = {
      title = "Gehrden",
    },
    ["3624"] = {
      title = "Hannover",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053584",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053583",
          },
        },
      },
    },
    ["3625"] = {
      title = "Lehrte",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053585",
          },
        },
      },
    },
    ["3626"] = {
      title = "Haimar",
      t_now = "Hämelerwald",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053586",
          },
        },
      },
    },
    ["3627"] = {
      title = "Peine",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053587",
          },
        },
      },
    },
    ["3628"] = {
      title = "Wendeburg",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          sheet_title = "Erstein",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053588",
          },
        },
        { 
          pub_year = 1924,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053589",
          },
        },
        { 
          pub_year = 1937,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053590",
          },
        },
      },
    },
    ["3629"] = {
      title = "Meine",
      t_now = "Braunschweig (Nord)",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          sheet_title = "Plobsheim",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053591",
          },
        },
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053592",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053593",
          },
        },
      },
    },
    ["3630"] = {
      title = "Heiligendorf",
      t_now = "Wolfsburg (Süd)",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053594",
          },
        },
      },
    },
    ["3631"] = {
      title = "Groß Twülpstedt",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053595",
          },
        },
      },
    },
    ["3632"] = {
      title = "Weferlingen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053596",
          },
        },
      },
    },
    ["3633"] = {
      title = "Calvörde",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053597",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053598",
          },
        },
      },
    },
    ["3634"] = {
      title = "Uthmöden",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053600",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053599",
          },
        },
      },
    },
    ["3635"] = {
      title = "Colbitz",
      t_now = "Kolbitz",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          sheet_title = "Cröchern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053601",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053602",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053603",
          },
        },
      },
    },
    ["3636"] = {
      title = "Rogätz",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053604",
          },
        },
      },
    },
    ["3637"] = {
      title = "Parey",
      editions = { 
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053605",
          },
        },
      },
    },
    ["3638"] = {
      title = "Parchen",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053607",
          },
        },
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053606",
          },
        },
      },
    },
    ["3639"] = {
      title = "Karow bei Genthin",
      t_now = "Karow",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053609",
          },
        },
        { 
          pub_year = 1939,
          sheet_title = "Karow",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053608",
          },
        },
      },
    },
    ["3640"] = {
      title = "Groß Wusterwitz",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053610",
          },
        },
      },
    },
    ["3641"] = {
      title = "Göttin",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053611",
          },
        },
        { 
          pub_year = 1922,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053612",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053613",
          },
        },
      },
    },
    ["3642"] = {
      title = "Lehnin",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053615",
          },
        },
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053614",
          },
        },
      },
    },
    ["3643"] = {
      title = "Werder; Potsdam (Süd)",
      t_now = "Werder",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053617",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1901,
          sheet_title = "Werder",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053616",
          },
        },
      },
    },
    ["3644"] = {
      title = "Potsdam (Süd)",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053619",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          sheet_title = "Potsdam",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053618",
          },
        },
      },
    },
    ["3645"] = {
      title = "Groß Beeren",
      t_now = "Großbeeren",
      editions = { 
        { 
          pub_year = 1875,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053620",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053621",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053622",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053623",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053624",
          },
        },
      },
    },
    ["3646"] = {
      title = "Lichtenrade",
      t_now = "Berlin-Lichtenrade",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053626",
          },
        },
        { 
          pub_year = 1933,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053627",
          },
        },
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053628",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053625",
          },
        },
      },
    },
    ["3647"] = {
      title = "Königs-Wusterhausen",
      t_now = "Königs Wusterhausen",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053630",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053629",
          },
        },
      },
    },
    ["3648"] = {
      title = "Wernsdorf",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053632",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053633",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053634",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053631",
          },
        },
      },
    },
    ["3649"] = {
      title = "Spreenhagen",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053636",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053635",
          },
        },
      },
    },
    ["3650"] = {
      title = "Fürstenwalde",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053637",
          },
        },
        { 
          pub_year = 1933,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053638",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053639",
          },
        },
      },
    },
    ["3651"] = {
      title = "Briesen",
      t_now = "Briesen in der Mark",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053641",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053640",
          },
        },
      },
    },
    ["3652"] = {
      title = "Booßen",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053643",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053642",
          },
        },
      },
    },
    ["3653"] = {
      title = "Frankfurt an der Oder",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053644",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053645",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053646",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053647",
          },
        },
      },
    },
    ["3654"] = {
      title = "Drenzig",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053648",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053649",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053650",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053651",
          },
        },
      },
    },
    ["3655"] = {
      title = "Reppen",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053653",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053652",
          },
        },
      },
    },
    ["3656"] = {
      title = "Sternberg",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053655",
          },
        },
        { 
          pub_year = 1923,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053656",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053654",
          },
        },
      },
    },
    ["3657"] = {
      title = "Lagow",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053657",
          },
        },
      },
    },
    ["3658"] = {
      title = "Liebenau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053658",
          },
        },
      },
    },
    ["3659"] = {
      title = "Jordan",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053659",
          },
        },
      },
    },
    ["3660"] = {
      title = "Brätz",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053660",
          },
        },
      },
    },
    ["3661"] = {
      title = "Tirschtiegel",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053661",
          },
        },
      },
    },
    ["3662"] = {
      title = "Neutomischel",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053662",
          },
        },
      },
    },
    ["3663"] = {
      title = "Wonsowo",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053663",
          },
        },
      },
    },
    ["3664"] = {
      title = "Opalenitza",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053664",
          },
        },
      },
    },
    ["3665"] = {
      title = "Buk",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053665",
          },
        },
      },
    },
    ["3666"] = {
      title = "Dombrowka",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053666",
          },
        },
      },
    },
    ["3667"] = {
      title = "Posen (Süd)",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053667",
          },
        },
      },
    },
    ["3668"] = {
      title = "Gondek",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053668",
          },
        },
      },
    },
    ["3669"] = {
      title = "Kostschin",
      editions = { 
        { 
          pub_year = 1933,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053669",
          },
        },
      },
    },
    ["3670"] = {
      title = "Nekla",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053670",
          },
        },
      },
    },
    ["3671"] = {
      title = "Wreschen",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053671",
          },
        },
      },
    },
    ["3672"] = {
      title = "Mieltschin",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053672",
          },
        },
      },
    },
    ["3673"] = {
      title = "Radlowo",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053673",
          },
        },
      },
    },
    ["3707"] = {
      title = "Glanerbrücke",
      t_now = "Gronau in Westfalen (Anhang)",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053674",
          },
        },
        { 
          pub_year = 1949,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053675",
          },
        },
      },
    },
    ["3708"] = {
      title = "Gronau in Westfalen",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053676",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053677",
          },
        },
      },
    },
    ["3709"] = {
      title = "Ochtrup",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053678",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053679",
          },
        },
      },
    },
    ["3710"] = {
      title = "Rheine",
      editions = { 
        { 
          pub_year = 1949,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053680",
          },
        },
      },
    },
    ["3711"] = {
      title = "Bevergern",
      t_now = "Hörstel",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053681",
          },
        },
        { 
          pub_year = 1947,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053682",
          },
        },
      },
    },
    ["3712"] = {
      title = "Tecklenburg",
      t_now = "Ibbenbüren",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053683",
          },
        },
        { 
          pub_year = 1950,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053684",
          },
        },
      },
    },
    ["3713"] = {
      title = "Hasbergen",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053685",
          },
        },
      },
    },
    ["3714"] = {
      title = "Osnabrück",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053686",
          },
        },
      },
    },
    ["3715"] = {
      title = "Schledehausen",
      t_now = "Bissendorf",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053687",
          },
        },
      },
    },
    ["3716"] = {
      title = "Melle",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053688",
          },
        },
      },
    },
    ["3717"] = {
      title = "Quernheim",
      t_now = "Kirchlengern",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053689",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053690",
          },
        },
      },
    },
    ["3718"] = {
      title = "Oeynhausen",
      t_now = "Bad Oeynhausen",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053691",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053692",
          },
        },
      },
    },
    ["3719"] = {
      title = "Minden",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053693",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053694",
          },
        },
      },
    },
    ["3720"] = {
      title = "Bückeburg",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053695",
          },
        },
      },
    },
    ["3721"] = {
      title = "Kathrinhagen",
      t_now = "Auetal",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053696",
          },
        },
      },
    },
    ["3722"] = {
      title = "Lauenau",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053697",
          },
        },
      },
    },
    ["3723"] = {
      title = "Springe",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053698",
          },
        },
      },
    },
    ["3724"] = {
      title = "Pattensen",
    },
    ["3725"] = {
      title = "Sarstedt",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053700",
          },
        },
        { 
          pub_year = 1914,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053699",
          },
        },
      },
    },
    ["3726"] = {
      title = "Hohenhameln",
    },
    ["3727"] = {
      title = "Groß Ilsede",
      t_now = "Ilsede",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053701",
          },
        },
      },
    },
    ["3728"] = {
      title = "Vechelde",
      t_now = "Braunschweig (West)",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053702",
          },
        },
      },
    },
    ["3729"] = {
      title = "Braunschweig",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053703",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053704",
          },
        },
      },
    },
    ["3730"] = {
      title = "Königslutter",
      t_now = "Königslutter am Elm",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053705",
          },
        },
      },
    },
    ["3731"] = {
      title = "Süpplingen",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053706",
          },
        },
      },
    },
    ["3732"] = {
      title = "Helmstedt",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053707",
          },
        },
      },
    },
    ["3733"] = {
      title = "Erxleben",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053708",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053709",
          },
        },
      },
    },
    ["3734"] = {
      title = "Neuhaldensleben",
      t_now = "Haldensleben",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053710",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053711",
          },
        },
      },
    },
    ["3735"] = {
      title = "Wolmirstedt",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053712",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053713",
          },
        },
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053714",
          },
        },
      },
    },
    ["3736"] = {
      title = "Niegripp",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053715",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053716",
          },
        },
      },
    },
    ["3737"] = {
      title = "Burg bei Magdeburg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053717",
          },
        },
      },
    },
    ["3738"] = {
      title = "Theeßen",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053719",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053718",
          },
        },
      },
    },
    ["3739"] = {
      title = "Ziesar",
      editions = { 
        { 
          pub_year = 1927,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053721",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053720",
          },
        },
      },
    },
    ["3740"] = {
      title = "Glienecke",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053723",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053722",
          },
        },
      },
    },
    ["3741"] = {
      title = "Golzow",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053725",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053724",
          },
        },
      },
    },
    ["3742"] = {
      title = "Damelang",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053727",
          },
        },
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053728",
          },
        },
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053726",
          },
        },
      },
    },
    ["3743"] = {
      title = "Beelitz",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053730",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053731",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053729",
          },
        },
      },
    },
    ["3744"] = {
      title = "Wildenbruch in der Mark",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1898,
          sheet_title = "Wildenbruch",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053732",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053733",
          },
        },
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053734",
          },
        },
      },
    },
    ["3745"] = {
      title = "Trebbin",
      editions = { 
        { 
          pub_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053735",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053736",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053737",
          },
        },
      },
    },
    ["3746"] = {
      title = "Zossen",
      editions = { 
        { 
          pub_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053738",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053739",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053740",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053741",
          },
        },
      },
    },
    ["3747"] = {
      title = "Mittenwalde",
      editions = { 
        { 
          pub_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053742",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053743",
          },
        },
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053744",
          },
        },
      },
    },
    ["3748"] = {
      title = "Friedersdorf",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053745",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053746",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053747",
          },
        },
      },
    },
    ["3749"] = {
      title = "Storkow",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053748",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053749",
          },
        },
      },
    },
    ["3750"] = {
      title = "Herzberg",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053751",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053750",
          },
        },
      },
    },
    ["3751"] = {
      title = "Groß Rietz",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053752",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053753",
          },
        },
      },
    },
    ["3752"] = {
      title = "Müllrose",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053754",
          },
        },
      },
    },
    ["3753"] = {
      title = "Brieskow",
      t_now = "Brieskow-Finkenheerd",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053755",
          },
        },
        { 
          pub_year = 1923,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053756",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053757",
          },
        },
      },
    },
    ["3754"] = {
      title = "Aurith",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053759",
          },
        },
        { 
          pub_year = 1923,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053758",
          },
        },
      },
    },
    ["3755"] = {
      title = "Groß Gandern",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053760",
          },
        },
        { 
          pub_year = 1923,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053761",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053762",
          },
        },
      },
    },
    ["3756"] = {
      title = "Leichholz",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053763",
          },
        },
      },
    },
    ["3757"] = {
      title = "Topper",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053765",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053764",
          },
        },
      },
    },
    ["3758"] = {
      title = "Mühlbock",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053766",
          },
        },
      },
    },
    ["3759"] = {
      title = "Schwiebus",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053767",
          },
        },
      },
    },
    ["3760"] = {
      title = "Stentsch",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053768",
          },
        },
      },
    },
    ["3761"] = {
      title = "Bentschen",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053770",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053769",
          },
        },
      },
    },
    ["3762"] = {
      title = "Borui",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053771",
          },
        },
      },
    },
    ["3763"] = {
      title = "Konkolewo",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053772",
          },
        },
      },
    },
    ["3764"] = {
      title = "Grätz im Wartheland",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053773",
          },
        },
      },
    },
    ["3765"] = {
      title = "Granowo",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053774",
          },
        },
      },
    },
    ["3766"] = {
      title = "Stenschewo",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053775",
          },
        },
      },
    },
    ["3767"] = {
      title = "Moschin",
      editions = { 
        { 
          pub_year = 1933,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053776",
          },
        },
      },
    },
    ["3768"] = {
      title = "Kurnik",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053777",
          },
        },
      },
    },
    ["3769"] = {
      title = "Schroda",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053778",
          },
        },
      },
    },
    ["3770"] = {
      title = "Miloslaw",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053779",
          },
        },
      },
    },
    ["3771"] = {
      title = "Gozdowo",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053780",
          },
        },
      },
    },
    ["3772"] = {
      title = "Sokolnik",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053781",
          },
        },
      },
    },
    ["3773"] = {
      title = "Slupca",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053782",
          },
        },
      },
    },
    ["3806"] = {
      title = "Wennewick",
      t_now = "Alstätte (Anhang)",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053783",
          },
        },
      },
    },
    ["3807"] = {
      title = "Alstätte",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053784",
          },
        },
      },
    },
    ["3808"] = {
      title = "Nienborg",
      t_now = "Heek",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053785",
          },
        },
      },
    },
    ["3809"] = {
      title = "Metelen",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053786",
          },
        },
      },
    },
    ["3810"] = {
      title = "Burgsteinfurt",
      t_now = "Steinfurt",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053787",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053788",
          },
        },
      },
    },
    ["3811"] = {
      title = "Emsdetten",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053789",
          },
        },
      },
    },
    ["3812"] = {
      title = "Ladbergen",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053790",
          },
        },
      },
    },
    ["3813"] = {
      title = "Lengerich",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053791",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053792",
          },
        },
      },
    },
    ["3814"] = {
      title = "Iburg",
      t_now = "Bad Iburg",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053793",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053794",
          },
        },
      },
    },
    ["3815"] = {
      title = "Borgholzhausen",
      t_now = "Dissen am Teutoburger Wald",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053795",
          },
        },
        { 
          pub_year = 1926,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053796",
          },
        },
      },
    },
    ["3816"] = {
      title = "Neuenkirchen im Kreis Melle",
      t_now = "Spenge",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053797",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053798",
          },
        },
      },
    },
    ["3817"] = {
      title = "Herford (West)",
      t_now = "Bünde",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053799",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053800",
          },
        },
      },
    },
    ["3818"] = {
      title = "Herford (Ost)",
      t_now = "Herford",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053801",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053802",
          },
        },
      },
    },
    ["3819"] = {
      title = "Vlotho",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053803",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053804",
          },
        },
      },
    },
    ["3820"] = {
      title = "Rinteln",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053805",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053806",
          },
        },
      },
    },
    ["3821"] = {
      title = "Hessisch Oldendorf",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053807",
          },
        },
      },
    },
    ["3822"] = {
      title = "Hameln",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053808",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053809",
          },
        },
      },
    },
    ["3823"] = {
      title = "Eldagsen",
      t_now = "Coppenbrügge",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053810",
          },
        },
        { 
          pub_year = 1931,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053811",
          },
        },
      },
    },
    ["3824"] = {
      title = "Elze",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053812",
          },
        },
        { 
          pub_year = 1935,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053813",
          },
        },
      },
    },
    ["3825"] = {
      title = "Hildesheim",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053814",
          },
        },
        { 
          pub_year = 1924,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053815",
          },
        },
      },
    },
    ["3826"] = {
      title = "Dingelbe",
      t_now = "Schellerten",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053816",
          },
        },
      },
    },
    ["3827"] = {
      title = "Lesse",
      t_now = "Lebenstedt (West)",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053817",
          },
        },
        { 
          pub_year = 1924,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053818",
          },
        },
      },
    },
    ["3828"] = {
      title = "Barum",
      t_now = "Lebenstedt (Ost)",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053819",
          },
        },
      },
    },
    ["3829"] = {
      title = "Wolfenbüttel",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053820",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053821",
          },
        },
      },
    },
    ["3830"] = {
      title = "Schöppenstedt",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053822",
          },
        },
      },
    },
    ["3831"] = {
      title = "Schöningen",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053823",
          },
        },
      },
    },
    ["3832"] = {
      title = "Hötensleben",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053824",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053825",
          },
        },
      },
    },
    ["3833"] = {
      title = "Seehausen im Kreis Wanzleben",
      t_now = "Seehausen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053826",
          },
        },
      },
    },
    ["3834"] = {
      title = "Groß Rodensleben",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1857,
          sheet_title = "Eichenbarleben",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053827",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053828",
          },
        },
      },
    },
    ["3835"] = {
      title = "Magdeburg",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1858,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053829",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053830",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053831",
          },
        },
      },
    },
    ["3836"] = {
      title = "Biederitz",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1858,
          sheet_title = "Neu Königsborn",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053832",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053833",
          },
        },
        { 
          pub_year = 1914,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053834",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053835",
          },
        },
      },
    },
    ["3837"] = {
      title = "Möckern",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053836",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053837",
          },
        },
      },
    },
    ["3838"] = {
      title = "Loburg",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053839",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053838",
          },
        },
      },
    },
    ["3839"] = {
      title = "Altengrabow",
      editions = { 
        { 
          pub_year = 1927,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053841",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053840",
          },
        },
      },
    },
    ["3840"] = {
      title = "Görzke",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053843",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053842",
          },
        },
      },
    },
    ["3841"] = {
      title = "Belzig",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053845",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053844",
          },
        },
      },
    },
    ["3842"] = {
      title = "Brück",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053847",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053846",
          },
        },
      },
    },
    ["3843"] = {
      title = "Buchholz bei Treuenbrietzen",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053849",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053848",
          },
        },
      },
    },
    ["3844"] = {
      title = "Hennickendorf",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053851",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053852",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053850",
          },
        },
      },
    },
    ["3845"] = {
      title = "Schöneweide",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053854",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053855",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053853",
          },
        },
      },
    },
    ["3846"] = {
      title = "Sperenberg",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053856",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053857",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053858",
          },
        },
      },
    },
    ["3847"] = {
      title = "Teupitz",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053859",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053860",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053861",
          },
        },
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053862",
          },
        },
      },
    },
    ["3848"] = {
      title = "Märkisch Buchholz",
      editions = { 
        { 
          pub_year = 1915,
          rec_year = 1901,
          sheet_title = "Wendisch Buchholz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053863",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053864",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053865",
          },
        },
      },
    },
    ["3849"] = {
      title = "Alt-Schadow",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053867",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053868",
          },
        },
        { 
          pub_year = 1928,
          sheet_title = "Alt Schadow",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053866",
          },
        },
      },
    },
    ["3850"] = {
      title = "Kossenblatt",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016860",
          },
        },
        { 
          pub_year = 1915,
          rec_year = 1901,
          sheet_title = "Cossenblatt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053870",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053869",
          },
        },
      },
    },
    ["3851"] = {
      title = "Beeskow",
      t_now = "Beekow",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053872",
          },
        },
        { 
          pub_year = 1945,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053871",
          },
        },
      },
    },
    ["3852"] = {
      title = "Grunow",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053873",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053874",
          },
        },
      },
    },
    ["3853"] = {
      title = "Fünfeichen",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053875",
          },
        },
        { 
          pub_year = 1923,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053876",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053877",
          },
        },
      },
    },
    ["3854"] = {
      title = "Fürstenberg an der Oder",
      t_now = "Fürstenberg",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053878",
          },
        },
        { 
          pub_year = 1923,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053879",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053880",
          },
        },
      },
    },
    ["3855"] = {
      title = "Tammendorf",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053882",
          },
        },
        { 
          pub_year = 1933,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053881",
          },
        },
      },
    },
    ["3856"] = {
      title = "Baudach",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053883",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053884",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053885",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053886",
          },
        },
      },
    },
    ["3857"] = {
      title = "Beutnitz",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053888",
          },
        },
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053887",
          },
        },
      },
    },
    ["3858"] = {
      title = "Skampe",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053889",
          },
        },
      },
    },
    ["3859"] = {
      title = "Kalzig",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053890",
          },
        },
      },
    },
    ["3860"] = {
      title = "Bomst",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053892",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053891",
          },
        },
      },
    },
    ["3861"] = {
      title = "Köbnitz",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053894",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053893",
          },
        },
      },
    },
    ["3862"] = {
      title = "Wollstein",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053895",
          },
        },
      },
    },
    ["3863"] = {
      title = "Rakwitz",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053896",
          },
        },
      },
    },
    ["3864"] = {
      title = "Wielichowo",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053897",
          },
        },
      },
    },
    ["3865"] = {
      title = "Konojad",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053898",
          },
        },
      },
    },
    ["3866"] = {
      title = "Czempin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053899",
          },
        },
      },
    },
    ["3867"] = {
      title = "Brodnica",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053900",
          },
        },
      },
    },
    ["3868"] = {
      title = "Santomischel",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053901",
          },
        },
      },
    },
    ["3869"] = {
      title = "Sulencin",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053902",
          },
        },
      },
    },
    ["3870"] = {
      title = "Pientschkowo",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053903",
          },
        },
      },
    },
    ["3871"] = {
      title = "Pogorschelitze",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053904",
          },
        },
      },
    },
    ["3906"] = {
      title = "Vreden",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053905",
          },
        },
      },
    },
    ["3907"] = {
      title = "Ottenstein in Westfalen",
      t_now = "Ottenstein",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053906",
          },
        },
      },
    },
    ["3908"] = {
      title = "Ahaus",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053907",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053908",
          },
        },
      },
    },
    ["3909"] = {
      title = "Horstmar",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053909",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053910",
          },
        },
      },
    },
    ["3910"] = {
      title = "Altenberge",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053911",
          },
        },
      },
    },
    ["3911"] = {
      title = "Greven",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053912",
          },
        },
      },
    },
    ["3912"] = {
      title = "Westbevern",
      editions = { 
        { 
          pub_year = 1927,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053913",
          },
        },
      },
    },
    ["3913"] = {
      title = "Ostbevern",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053914",
          },
        },
      },
    },
    ["3914"] = {
      title = "Versmold",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053915",
          },
        },
      },
    },
    ["3915"] = {
      title = "Bockhorst",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053916",
          },
        },
      },
    },
    ["3916"] = {
      title = "Halle in Westfalen",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053917",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053918",
          },
        },
      },
    },
    ["3917"] = {
      title = "Bielefeld",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053919",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053920",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053921",
          },
        },
      },
    },
    ["3918"] = {
      title = "Salzuflen",
      t_now = "Bad Salzuflen",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053922",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053923",
          },
        },
      },
    },
    ["3919"] = {
      title = "Lemgo",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053924",
          },
        },
      },
    },
    ["3920"] = {
      title = "Bösingfeld",
      t_now = "Extertal",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053925",
          },
        },
      },
    },
    ["3921"] = {
      title = "Ärzen",
      t_now = "Aerzen",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053926",
          },
        },
      },
    },
    ["3922"] = {
      title = "Kirchohsen",
      t_now = "Hameln (Süd)",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053927",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053928",
          },
        },
      },
    },
    ["3923"] = {
      title = "Salzhemmendorf",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053929",
          },
        },
      },
    },
    ["3924"] = {
      title = "Gronau in Hannover",
      t_now = "Gronau an der Leine",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053930",
          },
        },
      },
    },
    ["3925"] = {
      title = "Sibbesse",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053931",
          },
        },
      },
    },
    ["3926"] = {
      title = "Bockenem",
      t_now = "Bad Salzdetfurth",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053932",
          },
        },
      },
    },
    ["3927"] = {
      title = "Ringelheim",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053933",
          },
        },
      },
    },
    ["3928"] = {
      title = "Salzgitter",
      t_now = "Salzgitter-Bad",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053935",
          },
        },
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053934",
          },
        },
      },
    },
    ["3929"] = {
      title = "Hornburg",
      t_now = "Schladen",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053936",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053937",
          },
        },
      },
    },
    ["3930"] = {
      title = "Veltheim",
      t_now = "Hessen",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053938",
          },
        },
        { 
          pub_year = 1927,
          sheet_title = "Hessen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053939",
          },
        },
      },
    },
    ["3931"] = {
      title = "Jerxheim",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053940",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053941",
          },
        },
      },
    },
    ["3932"] = {
      title = "Neuwegersleben",
      t_now = "Hamersleben",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053942",
          },
        },
        { 
          pub_year = 1936,
          sheet_title = "Hamersleben",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053943",
          },
        },
      },
    },
    ["3933"] = {
      title = "Oschersleben an der Bode",
      t_now = "Oschersleben",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1857,
          sheet_title = "Groß Oschersleben",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053944",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053945",
          },
        },
      },
    },
    ["3934"] = {
      title = "Wanzleben",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1857,
          sheet_title = "Groß Wanzleben",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053946",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053947",
          },
        },
      },
    },
    ["3935"] = {
      title = "Groß Ottersleben",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053948",
          },
        },
      },
    },
    ["3936"] = {
      title = "Schönebeck an der Elbe",
      t_now = "Schönebeck",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053949",
          },
        },
      },
    },
    ["3937"] = {
      title = "Leitzkau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053950",
          },
        },
      },
    },
    ["3938"] = {
      title = "Lindau in Anhalt",
      t_now = "Lindau",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053952",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053951",
          },
        },
      },
    },
    ["3939"] = {
      title = "Nedlitz",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053954",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053953",
          },
        },
      },
    },
    ["3940"] = {
      title = "Stackelitz",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053956",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053955",
          },
        },
      },
    },
    ["3941"] = {
      title = "Klepzig",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053958",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053957",
          },
        },
      },
    },
    ["3942"] = {
      title = "Niemegk",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053960",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053959",
          },
        },
      },
    },
    ["3943"] = {
      title = "Treuenbrietzen",
      editions = { 
        { 
          pub_year = 1925,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053962",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053961",
          },
        },
      },
    },
    ["3944"] = {
      title = "Zinna",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053963",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053964",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053965",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053966",
          },
        },
      },
    },
    ["3945"] = {
      title = "Luckenwalde",
      editions = { 
        { 
          pub_year = 1921,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053968",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053969",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053967",
          },
        },
      },
    },
    ["3946"] = {
      title = "Paplitz",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053971",
          },
        },
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053972",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053970",
          },
        },
      },
    },
    ["3947"] = {
      title = "Baruth",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053974",
          },
        },
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053975",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053973",
          },
        },
      },
    },
    ["3948"] = {
      title = "Oderin",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053977",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053976",
          },
        },
      },
    },
    ["3949"] = {
      title = "Schlepzig",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053978",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053979",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053980",
          },
        },
      },
    },
    ["3950"] = {
      title = "Groß Leuthen",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053982",
          },
        },
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053981",
          },
        },
      },
    },
    ["3951"] = {
      title = "Niewisch",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053983",
          },
        },
      },
    },
    ["3952"] = {
      title = "Groß Muckrow",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053984",
          },
        },
      },
    },
    ["3953"] = {
      title = "Neuzelle",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053985",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053986",
          },
        },
      },
    },
    ["3954"] = {
      title = "Wellmitz",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053987",
          },
        },
      },
    },
    ["3955"] = {
      title = "Merzwiese",
      editions = { 
        { 
          pub_year = 1923,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053988",
          },
        },
      },
    },
    ["3956"] = {
      title = "Krossen an der Oder",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053989",
          },
        },
        { 
          pub_year = 1933,
          rec_year = 1894,
          sheet_title = "Crossen an der Oder",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053990",
          },
        },
      },
    },
    ["3957"] = {
      title = "Rädnitz",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053991",
          },
        },
      },
    },
    ["3958"] = {
      title = "Rothenburg an der Oder",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053992",
          },
        },
      },
    },
    ["3959"] = {
      title = "Züllichau",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053993",
          },
        },
      },
    },
    ["3960"] = {
      title = "Trebschen",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053994",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053995",
          },
        },
      },
    },
    ["3961"] = {
      title = "Unruhstadt",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053996",
          },
        },
      },
    },
    ["3962"] = {
      title = "Kiebel",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053998",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053997",
          },
        },
      },
    },
    ["3963"] = {
      title = "Priment",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1891,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71053999",
          },
        },
      },
    },
    ["3964"] = {
      title = "Polnisch Wilke",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054000",
          },
        },
      },
    },
    ["3965"] = {
      title = "Kosten",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054001",
          },
        },
      },
    },
    ["3966"] = {
      title = "Choryn",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054002",
          },
        },
      },
    },
    ["3967"] = {
      title = "Dalewo",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054003",
          },
        },
      },
    },
    ["3968"] = {
      title = "Schrimm",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054005",
          },
        },
        { 
          pub_year = 1889,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054004",
          },
        },
      },
    },
    ["3969"] = {
      title = "Xions",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054006",
          },
        },
      },
    },
    ["3970"] = {
      title = "Neustadt an der Warthe",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054007",
          },
        },
      },
    },
    ["3971"] = {
      title = "Zerkow",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054008",
          },
        },
      },
    },
    ["3972"] = {
      title = "Robakow",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054009",
          },
        },
      },
    },
    ["4002"] = {
      title = "Elten (Anhang)",
    },
    ["4003"] = {
      title = "Emmerich (Anhang)",
    },
    ["4005"] = {
      title = "Oeding (Anhang)",
    },
    ["4006"] = {
      title = "Öding",
      t_now = "Oeding",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054010",
          },
        },
      },
    },
    ["4007"] = {
      title = "Stadtlohn",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054011",
          },
        },
      },
    },
    ["4008"] = {
      title = "Koesfeld (West)",
      t_now = "Gescher",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054012",
          },
        },
      },
    },
    ["4009"] = {
      title = "Koesfeld (Ost)",
      t_now = "Coesfeld",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054013",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1895,
          sheet_title = "Coesfeld (Ost)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054014",
          },
        },
      },
    },
    ["4010"] = {
      title = "Nottuln",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054015",
          },
        },
        { 
          pub_year = 1914,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054016",
          },
        },
      },
    },
    ["4011"] = {
      title = "Münster in Westfalen",
      t_now = "Münster",
      editions = { 
        { 
          pub_year = 1927,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054017",
          },
        },
      },
    },
    ["4012"] = {
      title = "Telgte",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054018",
          },
        },
      },
    },
    ["4013"] = {
      title = "Warendorf",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054019",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054020",
          },
        },
      },
    },
    ["4014"] = {
      title = "Sassenberg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054021",
          },
        },
      },
    },
    ["4015"] = {
      title = "Harsewinkel",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054022",
          },
        },
      },
    },
    ["4016"] = {
      title = "Gütersloh",
      editions = { 
        { 
          pub_year = 1948,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054023",
          },
        },
      },
    },
    ["4017"] = {
      title = "Brackwede",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054024",
          },
        },
      },
    },
    ["4018"] = {
      title = "Lage",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054025",
          },
        },
      },
    },
    ["4019"] = {
      title = "Detmold",
      editions = { 
        { 
          pub_year = 1950,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054026",
          },
        },
      },
    },
    ["4020"] = {
      title = "Blomberg",
      editions = { 
        { 
          pub_year = 1944,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054027",
          },
        },
      },
    },
    ["4021"] = {
      title = "Bad Pyrmont",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054028",
          },
        },
      },
    },
    ["4022"] = {
      title = "Ottenstein in Braunschweig",
      t_now = "Ottenstein",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054029",
          },
        },
      },
    },
    ["4023"] = {
      title = "Eschershausen",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054030",
          },
        },
      },
    },
    ["4024"] = {
      title = "Alfeld",
      t_now = "Alfeld an der Leine",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054032",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054031",
          },
        },
      },
    },
    ["4025"] = {
      title = "Groß Freden",
      t_now = "Freden an der Leine",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054033",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054034",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054035",
          },
        },
      },
    },
    ["4026"] = {
      title = "Lamspringe",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054036",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054037",
          },
        },
      },
    },
    ["4027"] = {
      title = "Lutter am Barenberge",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054038",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054039",
          },
        },
      },
    },
    ["4028"] = {
      title = "Goslar",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054040",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054041",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054042",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054043",
          },
        },
      },
    },
    ["4029"] = {
      title = "Vienenburg",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054044",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054045",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054046",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054047",
          },
        },
      },
    },
    ["4030"] = {
      title = "Osterwieck",
    },
    ["4031"] = {
      title = "Dardesheim",
      editions = { 
        { 
          pub_year = 1870,
          rec_year = 1857,
          sheet_title = "Dingelstedt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054048",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054049",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054050",
          },
        },
      },
    },
    ["4032"] = {
      title = "Schwanebeck",
      editions = { 
        { 
          pub_year = 1870,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054051",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1907,
          sheet_title = "Osterwieck",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054052",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054054",
          },
        },
        { 
          pub_year = 1938,
          sheet_title = "Osterwieck",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054053",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054055",
          },
        },
      },
    },
    ["4033"] = {
      title = "Gröningen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054056",
          },
        },
      },
    },
    ["4034"] = {
      title = "Egeln",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054057",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054058",
          },
        },
      },
    },
    ["4035"] = {
      title = "Atzendorf",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054059",
          },
        },
        { 
          pub_year = 1964,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054060",
          },
        },
      },
    },
    ["4036"] = {
      title = "Calbe an der Saale",
      t_now = "Calbe",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054062",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          sheet_title = "Kalbe an der Saale",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054063",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054061",
          },
        },
      },
    },
    ["4037"] = {
      title = "Barby",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054064",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054065",
          },
        },
      },
    },
    ["4038"] = {
      title = "Zerbst",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054066",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054067",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054068",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054069",
          },
        },
      },
    },
    ["4039"] = {
      title = "Mühlstedt",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054070",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054071",
          },
        },
      },
    },
    ["4040"] = {
      title = "Zieko",
      t_now = "Hundeluft",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054073",
          },
        },
        { 
          pub_year = 1938,
          sheet_title = "Hundeluft",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054072",
          },
        },
      },
    },
    ["4041"] = {
      title = "Straach",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054075",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054076",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054077",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054074",
          },
        },
      },
    },
    ["4042"] = {
      title = "Zahna",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054078",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054079",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054080",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054081",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054081",
          },
        },
      },
    },
    ["4043"] = {
      title = "Blönsdorf",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Wölmsdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054083",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054084",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054085",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054082",
          },
        },
      },
    },
    ["4044"] = {
      title = "Jüterbog",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Jüterbogk",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054086",
          },
        },
        { 
          pub_year = 1903,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054087",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054088",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054089",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054090",
          },
        },
      },
    },
    ["4045"] = {
      title = "Schlenzer",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054091",
          },
        },
        { 
          pub_year = 1928,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054092",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054093",
          },
        },
      },
    },
    ["4046"] = {
      title = "Petkus",
      editions = { 
        { 
          pub_year = 1921,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054095",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054094",
          },
        },
      },
    },
    ["4047"] = {
      title = "Golßen",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054096",
          },
        },
      },
    },
    ["4048"] = {
      title = "Waldow",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054097",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054098",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054099",
          },
        },
      },
    },
    ["4049"] = {
      title = "Lübben",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054100",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054101",
          },
        },
        { 
          pub_year = 1938,
          sheet_title = "Lübben im Spreewald",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054102",
          },
        },
      },
    },
    ["4050"] = {
      title = "Straupitz",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054104",
          },
        },
        { 
          pub_year = 1917,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054105",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054106",
          },
        },
        { 
          pub_year = 1938,
          sheet_title = "Lübben im Spreewald",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054107",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054103",
          },
        },
      },
    },
    ["4051"] = {
      title = "Lieberose",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054108",
          },
        },
      },
    },
    ["4052"] = {
      title = "Jamlitz",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054109",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054110",
          },
        },
      },
    },
    ["4053"] = {
      title = "Grano",
      editions = { 
        { 
          pub_year = 1955,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054111",
          },
        },
      },
    },
    ["4054"] = {
      title = "Guben",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054112",
          },
        },
      },
    },
    ["4055"] = {
      title = "Kanig",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054113",
          },
        },
      },
    },
    ["4056"] = {
      title = "Bobersberg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054114",
          },
        },
      },
    },
    ["4057"] = {
      title = "Liebthal",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054115",
          },
        },
      },
    },
    ["4058"] = {
      title = "Grünberg (West)",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054116",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054117",
          },
        },
      },
    },
    ["4059"] = {
      title = "Grünberg (Ost)",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054118",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054119",
          },
        },
      },
    },
    ["4061"] = {
      title = "Kontopp",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054120",
          },
        },
      },
    },
    ["4062"] = {
      title = "Altkloster",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054122",
          },
        },
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054121",
          },
        },
      },
    },
    ["4063"] = {
      title = "Weine",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054123",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054124",
          },
        },
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054125",
          },
        },
      },
    },
    ["4064"] = {
      title = "Luschwitz",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054126",
          },
        },
      },
    },
    ["4065"] = {
      title = "Leipe",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054127",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054128",
          },
        },
      },
    },
    ["4066"] = {
      title = "Storchnest",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054129",
          },
        },
      },
    },
    ["4067"] = {
      title = "Lubin",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054130",
          },
        },
      },
    },
    ["4068"] = {
      title = "Dolzig",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054131",
          },
        },
      },
    },
    ["4069"] = {
      title = "Borek",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054132",
          },
        },
      },
    },
    ["4070"] = {
      title = "Gora",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054133",
          },
        },
      },
    },
    ["4071"] = {
      title = "Jarotschin",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054134",
          },
        },
      },
    },
    ["4072"] = {
      title = "Tschermin",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054135",
          },
        },
      },
    },
    ["4073"] = {
      title = "Grodzisko",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054136",
          },
        },
      },
    },
    ["4101"] = {
      title = "Zyfflich",
      t_now = "Elten (Anhang)",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054137",
          },
        },
      },
    },
    ["4102"] = {
      title = "Elten",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054138",
          },
        },
        { 
          pub_year = 1914,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054139",
          },
        },
        { 
          pub_year = 1917,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054140",
          },
        },
      },
    },
    ["4103"] = {
      title = "Emmerich",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054141",
          },
        },
        { 
          pub_year = 1914,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054142",
          },
        },
      },
    },
    ["4104"] = {
      title = "Anholt",
      t_now = "Isselburg",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054143",
          },
        },
      },
    },
    ["4105"] = {
      title = "Bocholt",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054144",
          },
        },
        { 
          pub_year = 1910,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054145",
          },
        },
      },
    },
    ["4106"] = {
      title = "Rhede",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054146",
          },
        },
      },
    },
    ["4107"] = {
      title = "Borken",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054147",
          },
        },
      },
    },
    ["4108"] = {
      title = "Groß Reken",
      t_now = "Reken",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054148",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054149",
          },
        },
      },
    },
    ["4109"] = {
      title = "Dülmen",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054150",
          },
        },
        { 
          pub_year = 1926,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054151",
          },
        },
      },
    },
    ["4110"] = {
      title = "Buldern",
      t_now = "Senden",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054152",
          },
        },
      },
    },
    ["4111"] = {
      title = "Ottmarsbocholt",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054153",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054154",
          },
        },
      },
    },
    ["4112"] = {
      title = "Sendenhorst",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054155",
          },
        },
      },
    },
    ["4113"] = {
      title = "Enniger",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054156",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054157",
          },
        },
      },
    },
    ["4114"] = {
      title = "Oelde",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054158",
          },
        },
      },
    },
    ["4115"] = {
      title = "Wiedenbrück",
      t_now = "Rheda-Wiedenbrück",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054159",
          },
        },
      },
    },
    ["4116"] = {
      title = "Rietberg",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054160",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054161",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054162",
          },
        },
      },
    },
    ["4117"] = {
      title = "Verl",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054163",
          },
        },
        { 
          pub_year = 1932,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054164",
          },
        },
      },
    },
    ["4118"] = {
      title = "Senne",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054165",
          },
        },
      },
    },
    ["4119"] = {
      title = "Sandebeck",
      t_now = "Horn; Bad Meinberg",
      editions = { 
        { 
          pub_year = 1932,
          sheet_title = "Horn",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054167",
          },
        },
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054166",
          },
        },
      },
    },
    ["4120"] = {
      title = "Steinheim",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054168",
          },
        },
      },
    },
    ["4121"] = {
      title = "Schwalenberg",
      t_now = "Schieder-Schwalenberg",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054169",
          },
        },
      },
    },
    ["4122"] = {
      title = "Holzminden",
    },
    ["4123"] = {
      title = "Stadtoldendorf",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054170",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054171",
          },
        },
      },
    },
    ["4124"] = {
      title = "Dassel",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054172",
          },
        },
      },
    },
    ["4125"] = {
      title = "Einbeck",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054173",
          },
        },
      },
    },
    ["4126"] = {
      title = "Gandersheim",
      t_now = "Bad Gandersheim",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054174",
          },
        },
      },
    },
    ["4127"] = {
      title = "Seesen",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054175",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054176",
          },
        },
      },
    },
    ["4128"] = {
      title = "Zellerfeld",
      t_now = "Clausthal-Zellerfeld",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054177",
          },
        },
      },
    },
    ["4129"] = {
      title = "Bad Harzburg",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1876,
          sheet_title = "Neustadt-Harzburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054178",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054179",
          },
        },
        { 
          pub_year = 1924,
          rec_year = 1907,
          sheet_title = "Clausthal-Zellerfeld",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054180",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054181",
          },
        },
      },
    },
    ["4130"] = {
      title = "Wernigerode",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054183",
          },
        },
        { 
          pub_year = 1937,
          rec_year = 1909,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054182",
          },
        },
      },
    },
    ["4131"] = {
      title = "Derenburg",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054184",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054185",
          },
        },
      },
    },
    ["4132"] = {
      title = "Halberstadt",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054186",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054187",
          },
        },
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054188",
          },
        },
      },
    },
    ["4133"] = {
      title = "Wegeleben",
      editions = { 
        { 
          pub_year = 1870,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054189",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054190",
          },
        },
      },
    },
    ["4134"] = {
      title = "Kochstedt",
      t_now = "Cochstedt",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054191",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1902,
          sheet_title = "Cochstedt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054192",
          },
        },
      },
    },
    ["4135"] = {
      title = "Staßfurt",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054193",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054194",
          },
        },
        { 
          pub_year = 1926,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054195",
          },
        },
      },
    },
    ["4136"] = {
      title = "Nienburg an der Saale",
      t_now = "Nienburg",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054196",
          },
        },
        { 
          pub_year = 1872,
          rec_year = 1852,
          sheet_title = "Nienburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054197",
          },
        },
      },
    },
    ["4137"] = {
      title = "Wulfen in Anhalt",
      t_now = "Wulfen",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          sheet_title = "Diebzig",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054198",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054199",
          },
        },
      },
    },
    ["4138"] = {
      title = "Aken",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054200",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054201",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054202",
          },
        },
      },
    },
    ["4139"] = {
      title = "Dessau",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054203",
          },
        },
        { 
          pub_year = 1903,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054204",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054205",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054206",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054207",
          },
        },
      },
    },
    ["4140"] = {
      title = "Coswig",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054208",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054209",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054210",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054211",
          },
        },
      },
    },
    ["4141"] = {
      title = "Wittenberg in der Provinz Sachsen",
      t_now = "Wittenberg",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Wittenberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054212",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054213",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054214",
          },
        },
        { 
          pub_year = 1931,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054215",
          },
        },
      },
    },
    ["4142"] = {
      title = "Wartenburg",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Dabrun",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054216",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054217",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054218",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054219",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054220",
          },
        },
      },
    },
    ["4143"] = {
      title = "Seyda",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054221",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054222",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054223",
          },
        },
      },
    },
    ["4144"] = {
      title = "Linda",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Hartmannsdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054224",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          sheet_title = "Wendisch Linda",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054225",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054226",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054227",
          },
        },
      },
    },
    ["4145"] = {
      title = "Schönewalde",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Schoenewalde",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054228",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054229",
          },
        },
        { 
          pub_year = 1928,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054230",
          },
        },
      },
    },
    ["4146"] = {
      title = "Dahme",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054231",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054232",
          },
        },
      },
    },
    ["4147"] = {
      title = "Uckro",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054233",
          },
        },
        { 
          pub_year = 1932,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054234",
          },
        },
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054235",
          },
        },
      },
    },
    ["4148"] = {
      title = "Luckau",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054236",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054237",
          },
        },
      },
    },
    ["4149"] = {
      title = "Lübbenau",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054238",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054239",
          },
        },
        { 
          pub_year = 1943,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054240",
          },
        },
      },
    },
    ["4150"] = {
      title = "Burg im Spreewald",
      editions = { 
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054242",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054241",
          },
        },
      },
    },
    ["4151"] = {
      title = "Werben im Spreewald",
      t_now = "Werben",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054243",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054244",
          },
        },
      },
    },
    ["4152"] = {
      title = "Peitz",
      editions = { 
        { 
          pub_year = 1921,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054245",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054246",
          },
        },
      },
    },
    ["4153"] = {
      title = "Strega",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054247",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054248",
          },
        },
      },
    },
    ["4154"] = {
      title = "Jeßnitz",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054249",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054250",
          },
        },
      },
    },
    ["4155"] = {
      title = "Göhren",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054251",
          },
        },
      },
    },
    ["4156"] = {
      title = "Hermswalde",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054252",
          },
        },
      },
    },
    ["4157"] = {
      title = "Naumburg am Bober",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054254",
          },
        },
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054253",
          },
        },
      },
    },
    ["4158"] = {
      title = "Schweinitz",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054255",
          },
        },
      },
    },
    ["4159"] = {
      title = "Günthersdorf",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054256",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054257",
          },
        },
      },
    },
    ["4160"] = {
      title = "Neusalz",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054258",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054259",
          },
        },
      },
    },
    ["4161"] = {
      title = "Liebenzig",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054260",
          },
        },
      },
    },
    ["4162"] = {
      title = "Schlawa",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054261",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054262",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054263",
          },
        },
      },
    },
    ["4163"] = {
      title = "Fraustadt",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054264",
          },
        },
        { 
          pub_year = 1917,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054265",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054266",
          },
        },
      },
    },
    ["4164"] = {
      title = "Schwetzkau",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054268",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054267",
          },
        },
      },
    },
    ["4165"] = {
      title = "Lissa",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054269",
          },
        },
      },
    },
    ["4166"] = {
      title = "Garzyn",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054270",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054271",
          },
        },
      },
    },
    ["4167"] = {
      title = "Seide",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054272",
          },
        },
      },
    },
    ["4168"] = {
      title = "Gostyn",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054273",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90017814",
          },
        },
      },
    },
    ["4169"] = {
      title = "Pogorzela",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054274",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054275",
          },
        },
      },
    },
    ["4170"] = {
      title = "Koschmin",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054276",
          },
        },
      },
    },
    ["4171"] = {
      title = "Dobrzyca",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054277",
          },
        },
      },
    },
    ["4172"] = {
      title = "Pleschen",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054278",
          },
        },
      },
    },
    ["4173"] = {
      title = "Tursko",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054279",
          },
        },
      },
    },
    ["4174"] = {
      title = "Rychnow",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054280",
          },
        },
      },
    },
    ["4201"] = {
      title = "Grafwegen",
      t_now = "Kleve (Anhang)",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054281",
          },
        },
      },
    },
    ["4202"] = {
      title = "Cleve",
      t_now = "Kleve",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054282",
          },
        },
        { 
          pub_year = 1914,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054283",
          },
        },
      },
    },
    ["4203"] = {
      title = "Calcar",
      t_now = "Kalkar",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054284",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054285",
          },
        },
      },
    },
    ["4204"] = {
      title = "Rees",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054286",
          },
        },
      },
    },
    ["4205"] = {
      title = "Dingden",
      t_now = "Hamminkeln",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054287",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054288",
          },
        },
      },
    },
    ["4206"] = {
      title = "Brünen",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054289",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054290",
          },
        },
      },
    },
    ["4207"] = {
      title = "Raesfeld",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054291",
          },
        },
      },
    },
    ["4208"] = {
      title = "Wulfen",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054292",
          },
        },
        { 
          pub_year = 1914,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054293",
          },
        },
      },
    },
    ["4209"] = {
      title = "Haltern",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054294",
          },
        },
      },
    },
    ["4210"] = {
      title = "Lüdinghausen",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054295",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054296",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054297",
          },
        },
      },
    },
    ["4211"] = {
      title = "Ascheberg",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054298",
          },
        },
      },
    },
    ["4212"] = {
      title = "Drensteinfurt",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054299",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054300",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054301",
          },
        },
      },
    },
    ["4213"] = {
      title = "Ahlen",
      editions = { 
        { 
          pub_year = 1927,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054302",
          },
        },
      },
    },
    ["4214"] = {
      title = "Beckum",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054303",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054304",
          },
        },
      },
    },
    ["4215"] = {
      title = "Wadersloh",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054305",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054306",
          },
        },
      },
    },
    ["4216"] = {
      title = "Mastholte",
      editions = { 
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054307",
          },
        },
      },
    },
    ["4217"] = {
      title = "Delbrück",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054308",
          },
        },
      },
    },
    ["4218"] = {
      title = "Paderborn",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054310",
          },
        },
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054309",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054311",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054312",
          },
        },
      },
    },
    ["4219"] = {
      title = "Altenbeken",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054313",
          },
        },
      },
    },
    ["4220"] = {
      title = "Driburg",
      t_now = "Bad Driburg",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054314",
          },
        },
      },
    },
    ["4221"] = {
      title = "Brakel",
      editions = { 
        { 
          pub_year = 1932,
          sheet_title = "Bad Driburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054316",
          },
        },
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054315",
          },
        },
      },
    },
    ["4222"] = {
      title = "Höxter",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054317",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054318",
          },
        },
      },
    },
    ["4223"] = {
      title = "Sievershausen",
      t_now = "Neuhaus im Solling",
      editions = { 
        { 
          pub_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054319",
          },
        },
      },
    },
    ["4224"] = {
      title = "Lauenberg",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054320",
          },
        },
      },
    },
    ["4225"] = {
      title = "Moringen",
      t_now = "Northeim (West)",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054321",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054322",
          },
        },
      },
    },
    ["4226"] = {
      title = "Northeim",
      t_now = "Northeim (Ost)",
      editions = { 
        { 
          pub_year = 1925,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054323",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054324",
          },
        },
      },
    },
    ["4227"] = {
      title = "Osterode",
      t_now = "Osterode am Harz",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054325",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054326",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054327",
          },
        },
        { 
          pub_year = 1937,
          sheet_title = "Osterode am Harz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054328",
          },
        },
      },
    },
    ["4228"] = {
      title = "Riefensbeek",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054329",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054330",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054331",
          },
        },
      },
    },
    ["4229"] = {
      title = "St. Andreasberg",
      t_now = "Braunlage",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054333",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054332",
          },
        },
      },
    },
    ["4230"] = {
      title = "Elbingerode",
      t_now = "Elbingerode im Harz",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054334",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054335",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054336",
          },
        },
      },
    },
    ["4231"] = {
      title = "Blankenburg",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054337",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054338",
          },
        },
        { 
          pub_year = 1934,
          sheet_title = "Blankenburg am Harz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054339",
          },
        },
      },
    },
    ["4232"] = {
      title = "Quedlinburg",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054340",
          },
        },
        { 
          pub_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054341",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054342",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054343",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054344",
          },
        },
      },
    },
    ["4233"] = {
      title = "Ballenstedt",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054345",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054346",
          },
        },
      },
    },
    ["4234"] = {
      title = "Aschersleben",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054347",
          },
        },
      },
    },
    ["4235"] = {
      title = "Güsten",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054348",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054349",
          },
        },
      },
    },
    ["4236"] = {
      title = "Bernburg",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054350",
          },
        },
      },
    },
    ["4237"] = {
      title = "Cöthen",
      t_now = "Köthen",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054351",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054352",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1902,
          sheet_title = "Köthen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054353",
          },
        },
      },
    },
    ["4238"] = {
      title = "Quellendorf",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054354",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054355",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054356",
          },
        },
      },
    },
    ["4239"] = {
      title = "Raguhn",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054357",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054358",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054359",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054360",
          },
        },
      },
    },
    ["4240"] = {
      title = "Gräfenhainichen",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Gräfenhaynchen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054361",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054362",
          },
        },
        { 
          pub_year = 1924,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054363",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054364",
          },
        },
      },
    },
    ["4241"] = {
      title = "Kemberg",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054365",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054366",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054367",
          },
        },
      },
    },
    ["4242"] = {
      title = "Pretzsch",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054368",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054369",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054370",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054371",
          },
        },
      },
    },
    ["4243"] = {
      title = "Jessen",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1850,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054372",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054373",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054374",
          },
        },
      },
    },
    ["4244"] = {
      title = "Schweinitz im Regierungsbezirk Merseburg",
      t_now = "Schweinitz",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054375",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054376",
          },
        },
      },
    },
    ["4245"] = {
      title = "Colochau",
      t_now = "Kolochau",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054377",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054378",
          },
        },
      },
    },
    ["4246"] = {
      title = "Schlieben",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054379",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054380",
          },
        },
      },
    },
    ["4247"] = {
      title = "Wendisch Drehna",
      t_now = "Walddrehna",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054381",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054382",
          },
        },
      },
    },
    ["4248"] = {
      title = "Fürstlich Drehna",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054383",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054384",
          },
        },
        { 
          pub_year = 1943,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054385",
          },
        },
      },
    },
    ["4249"] = {
      title = "Calau",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054386",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054387",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054388",
          },
        },
      },
    },
    ["4250"] = {
      title = "Vetschau",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054389",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054390",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054391",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054392",
          },
        },
      },
    },
    ["4251"] = {
      title = "Cottbus (West)",
      t_now = "Cottbus",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          sheet_title = "Kottbus (West)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054393",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054394",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054395",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054396",
          },
        },
      },
    },
    ["4252"] = {
      title = "Cottbus (Ost)",
      editions = { 
        { 
          pub_year = 1921,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054397",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054398",
          },
        },
      },
    },
    ["4253"] = {
      title = "Forst",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054399",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054400",
          },
        },
      },
    },
    ["4254"] = {
      title = "Pförten",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054401",
          },
        },
      },
    },
    ["4255"] = {
      title = "Sommerfeld in der Niederlausitz",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          sheet_title = "Sommerfeld",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054402",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054403",
          },
        },
      },
    },
    ["4256"] = {
      title = "Gassen",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054404",
          },
        },
      },
    },
    ["4257"] = {
      title = "Christianstadt",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054406",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054405",
          },
        },
      },
    },
    ["4258"] = {
      title = "Briesnitz",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054407",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054408",
          },
        },
      },
    },
    ["4259"] = {
      title = "Freystadt in Niederschlesien",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054409",
          },
        },
      },
    },
    ["4260"] = {
      title = "Beuthen an der Oder",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054410",
          },
        },
      },
    },
    ["4261"] = {
      title = "Lindenkranz",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054412",
          },
        },
        { 
          pub_year = 1933,
          sheet_title = "Bielawe",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054411",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054413",
          },
        },
      },
    },
    ["4262"] = {
      title = "Kuttlau",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054414",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054415",
          },
        },
      },
    },
    ["4263"] = {
      title = "Schlichtingsheim",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054416",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054417",
          },
        },
      },
    },
    ["4264"] = {
      title = "Seitsch",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054419",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054418",
          },
        },
      },
    },
    ["4265"] = {
      title = "Tschirnau",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054421",
          },
        },
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054420",
          },
        },
      },
    },
    ["4266"] = {
      title = "Bojanowo",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054423",
          },
        },
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054422",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054424",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054425",
          },
        },
      },
    },
    ["4267"] = {
      title = "Kröben",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054426",
          },
        },
      },
    },
    ["4268"] = {
      title = "Pempowo",
      editions = { 
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054427",
          },
        },
      },
    },
    ["4269"] = {
      title = "Kobylin",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054429",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054428",
          },
        },
      },
    },
    ["4270"] = {
      title = "Bozacin",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054430",
          },
        },
      },
    },
    ["4271"] = {
      title = "Rosdraschewo",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054431",
          },
        },
      },
    },
    ["4272"] = {
      title = "Raschkow",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054432",
          },
        },
      },
    },
    ["4273"] = {
      title = "Sobotka",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054433",
          },
        },
      },
    },
    ["4274"] = {
      title = "Kalisch",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054434",
          },
        },
      },
    },
    ["4302"] = {
      title = "Goch",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054435",
          },
        },
      },
    },
    ["4303"] = {
      title = "Üdem",
      t_now = "Uedem",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054436",
          },
        },
      },
    },
    ["4304"] = {
      title = "Xanten",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054437",
          },
        },
      },
    },
    ["4305"] = {
      title = "Wesel",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054438",
          },
        },
      },
    },
    ["4306"] = {
      title = "Drevenack",
      t_now = "Hünxe",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054439",
          },
        },
      },
    },
    ["4307"] = {
      title = "Dorsten",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054440",
          },
        },
      },
    },
    ["4308"] = {
      title = "Marl",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054441",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054442",
          },
        },
      },
    },
    ["4309"] = {
      title = "Recklinghausen",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054443",
          },
        },
      },
    },
    ["4310"] = {
      title = "Waltrop",
      t_now = "Datteln",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054444",
          },
        },
      },
    },
    ["4311"] = {
      title = "Lünen",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054445",
          },
        },
        { 
          pub_year = 1914,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054446",
          },
        },
      },
    },
    ["4312"] = {
      title = "Hamm",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054447",
          },
        },
      },
    },
    ["4313"] = {
      title = "Rhynern",
      t_now = "Welver",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054448",
          },
        },
      },
    },
    ["4314"] = {
      title = "Herzfeld in Westfalen",
      t_now = "Lippetal",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054449",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054450",
          },
        },
      },
    },
    ["4315"] = {
      title = "Benninghausen",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054451",
          },
        },
        { 
          pub_year = 1914,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054452",
          },
        },
      },
    },
    ["4316"] = {
      title = "Lippstadt",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054453",
          },
        },
      },
    },
    ["4317"] = {
      title = "Geseke",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054454",
          },
        },
      },
    },
    ["4318"] = {
      title = "Etteln",
      t_now = "Borchen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054455",
          },
        },
      },
    },
    ["4319"] = {
      title = "Lichtenau",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054456",
          },
        },
      },
    },
    ["4320"] = {
      title = "Willebadessen",
      editions = { 
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054457",
          },
        },
      },
    },
    ["4321"] = {
      title = "Borgholz",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054458",
          },
        },
      },
    },
    ["4322"] = {
      title = "Karlshafen",
      t_now = "Bad Karlshafen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054460",
          },
        },
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054459",
          },
        },
      },
    },
    ["4323"] = {
      title = "Uslar",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054461",
          },
        },
      },
    },
    ["4324"] = {
      title = "Hardegsen",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054462",
          },
        },
      },
    },
    ["4325"] = {
      title = "Nörten",
      t_now = "Nörten-Hardenberg",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054463",
          },
        },
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054464",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054465",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054466",
          },
        },
      },
    },
    ["4326"] = {
      title = "Lindau",
      t_now = "Katlenburg-Lindau",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054467",
          },
        },
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054468",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054469",
          },
        },
      },
    },
    ["4327"] = {
      title = "Gieboldehausen",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054471",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054472",
          },
        },
        { 
          pub_year = 1910,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054470",
          },
        },
      },
    },
    ["4328"] = {
      title = "Bad Lauterberg am Harz",
      t_now = "Bad Lauterberg im Harz",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054473",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054474",
          },
        },
      },
    },
    ["4329"] = {
      title = "Zorge",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054476",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054475",
          },
        },
      },
    },
    ["4330"] = {
      title = "Benneckenstein",
      t_now = "Benneckenstein im Harz",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054477",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054478",
          },
        },
      },
    },
    ["4331"] = {
      title = "Hasselfelde",
      editions = { 
        { 
          pub_year = 1870,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054479",
          },
        },
        { 
          pub_year = 1892,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054480",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054481",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054482",
          },
        },
      },
    },
    ["4332"] = {
      title = "Harzgerode",
      editions = { 
        { 
          pub_year = 1870,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054483",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054484",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054485",
          },
        },
      },
    },
    ["4333"] = {
      title = "Pansfelde",
      editions = { 
        { 
          pub_year = 1870,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054486",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054487",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054488",
          },
        },
      },
    },
    ["4334"] = {
      title = "Leimbach",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054489",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054490",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054491",
          },
        },
      },
    },
    ["4335"] = {
      title = "Hettstedt",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054492",
          },
        },
      },
    },
    ["4336"] = {
      title = "Könnern",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054493",
          },
        },
      },
    },
    ["4337"] = {
      title = "Löbejün",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          sheet_title = "Gröbzig",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054494",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054495",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054496",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054497",
          },
        },
      },
    },
    ["4338"] = {
      title = "Zörbig",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054498",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054499",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054500",
          },
        },
      },
    },
    ["4339"] = {
      title = "Bitterfeld (West)",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          sheet_title = "Bitterfeld",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054501",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          sheet_title = "Bitterfeld",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90017280",
          },
        },
        { 
          pub_year = 1928,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015592",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054505",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1906,
          sheet_title = "Meuselwitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054506",
          },
        },
      },
    },
    ["4340"] = {
      title = "Bitterfeld (Ost)",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Burgkemnitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054507",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054508",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054509",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054510",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054511",
          },
        },
      },
    },
    ["4341"] = {
      title = "Söllichau",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Tornau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054512",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054513",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054514",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054515",
          },
        },
      },
    },
    ["4342"] = {
      title = "Schmiedeberg im Bezirk Halle",
      t_now = "Bad Schmiedeberg",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Schmiedeberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054516",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054517",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054518",
          },
        },
        { 
          pub_year = 1936,
          sheet_title = "Bad Schmiedeberg im Bezirk Halle",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054519",
          },
        },
      },
    },
    ["4343"] = {
      title = "Prettin",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054520",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054521",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054522",
          },
        },
      },
    },
    ["4344"] = {
      title = "Züllsdorf",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054523",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1902,
          sheet_title = "Kirchhain",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054524",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054525",
          },
        },
      },
    },
    ["4345"] = {
      title = "Herzberg an der Elster",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054526",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054527",
          },
        },
      },
    },
    ["4346"] = {
      title = "Buckowien",
      t_now = "Buchhain",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054528",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054529",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1902,
          sheet_title = "Buchhain",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054530",
          },
        },
      },
    },
    ["4347"] = {
      title = "Kirchhain",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054531",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054532",
          },
        },
      },
    },
    ["4348"] = {
      title = "Finsterwalde",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054533",
          },
        },
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054534",
          },
        },
      },
    },
    ["4349"] = {
      title = "Göllnitz",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054535",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054536",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054537",
          },
        },
      },
    },
    ["4350"] = {
      title = "Alt Döbern",
      t_now = "Altdöbern",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1901,
          sheet_title = "Alt-Döbern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054538",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054539",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054540",
          },
        },
      },
    },
    ["4351"] = {
      title = "Drebkau",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054541",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054542",
          },
        },
      },
    },
    ["4352"] = {
      title = "Komptendorf",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054543",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054544",
          },
        },
      },
    },
    ["4353"] = {
      title = "Döbern",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054545",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054546",
          },
        },
      },
    },
    ["4354"] = {
      title = "Triebel",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054547",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054548",
          },
        },
      },
    },
    ["4355"] = {
      title = "Tzschecheln",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054549",
          },
        },
      },
    },
    ["4356"] = {
      title = "Sorau",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054550",
          },
        },
      },
    },
    ["4357"] = {
      title = "Sagan",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054551",
          },
        },
      },
    },
    ["4358"] = {
      title = "Hirschfeldau",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054552",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054553",
          },
        },
      },
    },
    ["4359"] = {
      title = "Hartau",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054554",
          },
        },
      },
    },
    ["4360"] = {
      title = "Neustädtel",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054555",
          },
        },
      },
    },
    ["4361"] = {
      title = "Oberquell",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054556",
          },
        },
      },
    },
    ["4362"] = {
      title = "Glogau",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054557",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054558",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054559",
          },
        },
      },
    },
    ["4363"] = {
      title = "Weißholz",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054560",
          },
        },
      },
    },
    ["4364"] = {
      title = "Schüttlau",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054561",
          },
        },
      },
    },
    ["4365"] = {
      title = "Guhrau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054562",
          },
        },
      },
    },
    ["4366"] = {
      title = "Triebusch",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054563",
          },
        },
      },
    },
    ["4367"] = {
      title = "Rawitsch",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054564",
          },
        },
      },
    },
    ["4368"] = {
      title = "Dubin",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054565",
          },
        },
      },
    },
    ["4369"] = {
      title = "Jutroschin",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054566",
          },
        },
      },
    },
    ["4370"] = {
      title = "Krotoschin",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054567",
          },
        },
      },
    },
    ["4371"] = {
      title = "Sulmirschütz",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054568",
          },
        },
      },
    },
    ["4372"] = {
      title = "Ostrowo",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054569",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054570",
          },
        },
      },
    },
    ["4373"] = {
      title = "Groß Wysocko",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054571",
          },
        },
      },
    },
    ["4374"] = {
      title = "Olobok",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054572",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054573",
          },
        },
      },
    },
    ["4402"] = {
      title = "Lindenhof",
      t_now = "Geldern (Anhang)",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054574",
          },
        },
      },
    },
    ["4403"] = {
      title = "Geldern",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054575",
          },
        },
        { 
          pub_year = 1917,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054576",
          },
        },
      },
    },
    ["4404"] = {
      title = "Issum",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054577",
          },
        },
        { 
          pub_year = 1910,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054578",
          },
        },
      },
    },
    ["4405"] = {
      title = "Rheinberg",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054579",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054580",
          },
        },
      },
    },
    ["4406"] = {
      title = "Dinslaken",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054581",
          },
        },
      },
    },
    ["4407"] = {
      title = "Bottrop",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054582",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054583",
          },
        },
      },
    },
    ["4408"] = {
      title = "Gelsenkirchen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054584",
          },
        },
      },
    },
    ["4409"] = {
      title = "Herne",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054585",
          },
        },
      },
    },
    ["4410"] = {
      title = "Dortmund",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054586",
          },
        },
      },
    },
    ["4411"] = {
      title = "Kamen",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054587",
          },
        },
      },
    },
    ["4412"] = {
      title = "Unna",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054588",
          },
        },
      },
    },
    ["4413"] = {
      title = "Werl",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054589",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054590",
          },
        },
      },
    },
    ["4414"] = {
      title = "Soest",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054592",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054591",
          },
        },
      },
    },
    ["4415"] = {
      title = "Anröchte",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054593",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054594",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054595",
          },
        },
      },
    },
    ["4416"] = {
      title = "Effeln",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054596",
          },
        },
      },
    },
    ["4417"] = {
      title = "Büren",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054597",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054598",
          },
        },
      },
    },
    ["4418"] = {
      title = "Fürstenberg in Westfalen",
      t_now = "Wünnenberg",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054599",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054600",
          },
        },
      },
    },
    ["4419"] = {
      title = "Kleinenberg",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054601",
          },
        },
      },
    },
    ["4420"] = {
      title = "Peckelsheim",
      editions = { 
        { 
          pub_year = 1945,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054602",
          },
        },
      },
    },
    ["4421"] = {
      title = "Borgentreich",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054603",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054604",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054605",
          },
        },
      },
    },
    ["4422"] = {
      title = "Trendelburg",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054606",
          },
        },
      },
    },
    ["4423"] = {
      title = "Ödelsheim",
      t_now = "Oedelsheim",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054607",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054608",
          },
        },
      },
    },
    ["4424"] = {
      title = "Dransfeld",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054609",
          },
        },
      },
    },
    ["4425"] = {
      title = "Göttingen",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054610",
          },
        },
        { 
          pub_year = 1891,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054611",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054612",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054613",
          },
        },
      },
    },
    ["4426"] = {
      title = "Waake",
      t_now = "Ebergötzen",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054614",
          },
        },
        { 
          pub_year = 1937,
          rec_year = 1908,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054615",
          },
        },
      },
    },
    ["4427"] = {
      title = "Duderstadt",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054616",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054617",
          },
        },
      },
    },
    ["4428"] = {
      title = "Weißenborn",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054619",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054618",
          },
        },
      },
    },
    ["4429"] = {
      title = "Ellrich",
      t_now = "Bad Sachsa",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054621",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054620",
          },
        },
      },
    },
    ["4430"] = {
      title = "Nordhausen (Nord)",
      editions = { 
        { 
          pub_year = 1870,
          rec_year = 1853,
          sheet_title = "Nordhausen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054622",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054623",
          },
        },
      },
    },
    ["4431"] = {
      title = "Stolberg am Harz",
      t_now = "Stollberg",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1857,
          sheet_title = "Stolberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054624",
          },
        },
        { 
          pub_year = 1924,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054625",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054626",
          },
        },
      },
    },
    ["4432"] = {
      title = "Schwenda",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054628",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054627",
          },
        },
      },
    },
    ["4433"] = {
      title = "Wippra",
      editions = { 
        { 
          pub_year = 1870,
          rec_year = 1853,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054629",
          },
        },
        { 
          pub_year = 1910,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054630",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054631",
          },
        },
      },
    },
    ["4434"] = {
      title = "Mansfeld",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054632",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054633",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054634",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054635",
          },
        },
      },
    },
    ["4435"] = {
      title = "Eisleben",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054636",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054637",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054638",
          },
        },
      },
    },
    ["4436"] = {
      title = "Wettin",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054639",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054640",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054641",
          },
        },
      },
    },
    ["4437"] = {
      title = "Halle an der Saale (Nord)",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1851,
          sheet_title = "Petersberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054642",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054643",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054644",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054645",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054646",
          },
        },
      },
    },
    ["4438"] = {
      title = "Landsberg bei Halle",
      t_now = "Landsberg",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1851,
          sheet_title = "Landsberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054647",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054648",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054649",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054650",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054651",
          },
        },
      },
    },
    ["4439"] = {
      title = "Delitzsch",
      t_now = "Brehna",
      editions = { 
        { 
          pub_year = 1872,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054652",
          },
        },
        { 
          pub_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054653",
          },
        },
        { 
          pub_year = 1931,
          sheet_title = "Brehna",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054654",
          },
        },
        { 
          pub_year = 1938,
          sheet_title = "Brehna",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054655",
          },
        },
      },
    },
    ["4440"] = {
      title = "Delitzsch",
      editions = { 
        { 
          pub_year = 1874,
          sheet_title = "Reibitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054656",
          },
        },
        { 
          pub_year = 1903,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054657",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054658",
          },
        },
        { 
          pub_year = 1931,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054659",
          },
        },
      },
    },
    ["4441"] = {
      title = "Düben",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054660",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054661",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054662",
          },
        },
        { 
          pub_year = 1931,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054663",
          },
        },
      },
    },
    ["4442"] = {
      title = "Mockrehna",
      editions = { 
        { 
          pub_year = 1874,
          sheet_title = "Wildenhain",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054664",
          },
        },
        { 
          pub_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054665",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054666",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054667",
          },
        },
      },
    },
    ["4443"] = {
      title = "Torgau (West)",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1850,
          sheet_title = "Süptitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054668",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          sheet_title = "Torgau (Ost)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054670",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054669",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054671",
          },
        },
        { 
          pub_year = 1932,
          sheet_title = "Torgau (Ost)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054673",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054672",
          },
        },
      },
    },
    ["4444"] = {
      title = "Torgau (Ost)",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054674",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054675",
          },
        },
      },
    },
    ["4445"] = {
      title = "Übigau",
      editions = { 
        { 
          pub_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054676",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054677",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054678",
          },
        },
      },
    },
    ["4446"] = {
      title = "Liebenwerda",
      t_now = "Bad Liebenwerda",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054679",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1902,
          sheet_title = "Bad Liebenwerda",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054680",
          },
        },
      },
    },
    ["4447"] = {
      title = "Oppelhain",
      editions = { 
        { 
          pub_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054681",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054682",
          },
        },
      },
    },
    ["4448"] = {
      title = "Klein Leipisch",
      t_now = "Lauchhammer (Nord)",
      editions = { 
        { 
          pub_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054683",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054684",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054685",
          },
        },
      },
    },
    ["4449"] = {
      title = "Klettwitz",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054686",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054687",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054688",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054689",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054690",
          },
        },
      },
    },
    ["4450"] = {
      title = "Senftenberg",
      editions = { 
        { 
          pub_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054691",
          },
        },
        { 
          pub_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054692",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054693",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054694",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054695",
          },
        },
      },
    },
    ["4451"] = {
      title = "Jessen im Kreis Spremberg",
      t_now = "Jessen",
      editions = { 
        { 
          pub_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054696",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054697",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054698",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054699",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054700",
          },
        },
      },
    },
    ["4452"] = {
      title = "Spremberg",
      editions = { 
        { 
          pub_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054701",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054702",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054703",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054704",
          },
        },
      },
    },
    ["4453"] = {
      title = "Weißwasser",
      editions = { 
        { 
          pub_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054705",
          },
        },
        { 
          pub_year = 1922,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054706",
          },
        },
        { 
          pub_year = 1945,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054707",
          },
        },
      },
    },
    ["4454"] = {
      title = "Muskau",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054708",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054709",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054710",
          },
        },
      },
    },
    ["4455"] = {
      title = "Zibelle",
      t_now = "Niwica",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054711",
          },
        },
      },
    },
    ["4456"] = {
      title = "Nieder Hartmannsdorf",
      editions = { 
        { 
          pub_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054712",
          },
        },
      },
    },
    ["4457"] = {
      title = "Halbau",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054713",
          },
        },
      },
    },
    ["4458"] = {
      title = "Mallmitz",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054715",
          },
        },
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054714",
          },
        },
      },
    },
    ["4459"] = {
      title = "Sprottau",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054716",
          },
        },
        { 
          pub_year = 1903,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054717",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054718",
          },
        },
      },
    },
    ["4460"] = {
      title = "Primkenau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054719",
          },
        },
      },
    },
    ["4461"] = {
      title = "Wiesau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054720",
          },
        },
      },
    },
    ["4462"] = {
      title = "Polkwitz",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054721",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054722",
          },
        },
      },
    },
    ["4463"] = {
      title = "Raudten",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054723",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054724",
          },
        },
      },
    },
    ["4464"] = {
      title = "Köben",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054725",
          },
        },
      },
    },
    ["4465"] = {
      title = "Gimmel",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054726",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054727",
          },
        },
      },
    },
    ["4466"] = {
      title = "Herrnstadt",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054728",
          },
        },
      },
    },
    ["4467"] = {
      title = "Korsenz",
      editions = { 
        { 
          pub_year = 1890,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054729",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054730",
          },
        },
      },
    },
    ["4468"] = {
      title = "Szkaradowo",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054731",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054732",
          },
        },
      },
    },
    ["4469"] = {
      title = "Militsch",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054734",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054733",
          },
        },
      },
    },
    ["4470"] = {
      title = "Groß Tschunkawe",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054735",
          },
        },
      },
    },
    ["4471"] = {
      title = "Uciechow",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054736",
          },
        },
      },
    },
    ["4472"] = {
      title = "Adelnau",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054737",
          },
        },
      },
    },
    ["4473"] = {
      title = "Mixstadt",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054738",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054739",
          },
        },
      },
    },
    ["4474"] = {
      title = "Grabow an der Prosna",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054740",
          },
        },
      },
    },
    ["4503"] = {
      title = "Straelen",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054741",
          },
        },
      },
    },
    ["4504"] = {
      title = "Nieukerk",
      t_now = "Kerken",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054743",
          },
        },
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054742",
          },
        },
      },
    },
    ["4505"] = {
      title = "Mörs",
      t_now = "Moers",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054744",
          },
        },
      },
    },
    ["4506"] = {
      title = "Duisburg",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054745",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054746",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054747",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054748",
          },
        },
        { 
          pub_year = 1922,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054749",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054750",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054751",
          },
        },
      },
    },
    ["4507"] = {
      title = "Mülheim an der Ruhr",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054752",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054753",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054754",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054755",
          },
        },
        { 
          pub_year = 1931,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054756",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054757",
          },
        },
      },
    },
    ["4508"] = {
      title = "Essen im Rheinland",
      t_now = "Essen",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          sheet_title = "Essen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054758",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054759",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054760",
          },
        },
      },
    },
    ["4509"] = {
      title = "Bochum",
      editions = { 
        { 
          pub_year = 1921,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054761",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054762",
          },
        },
      },
    },
    ["4510"] = {
      title = "Witten",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054763",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054764",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054765",
          },
        },
      },
    },
    ["4511"] = {
      title = "Hörde",
      t_now = "Schwerte",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054766",
          },
        },
      },
    },
    ["4512"] = {
      title = "Menden",
      t_now = "Menden im Sauerland",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054767",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054768",
          },
        },
      },
    },
    ["4513"] = {
      title = "Neheim",
      t_now = "Neheim-Hüsten",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054769",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054770",
          },
        },
      },
    },
    ["4514"] = {
      title = "Arnsberg (Nord)",
      t_now = "Möhnesee",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054771",
          },
        },
      },
    },
    ["4515"] = {
      title = "Hirschberg in Westfalen",
      t_now = "Hirschberg",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054772",
          },
        },
      },
    },
    ["4516"] = {
      title = "Rüthen",
      t_now = "Warstein",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054773",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054774",
          },
        },
      },
    },
    ["4517"] = {
      title = "Alme",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054775",
          },
        },
      },
    },
    ["4518"] = {
      title = "Madfeld",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054776",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054777",
          },
        },
      },
    },
    ["4519"] = {
      title = "Marsberg",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054778",
          },
        },
      },
    },
    ["4520"] = {
      title = "Warburg",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054779",
          },
        },
      },
    },
    ["4521"] = {
      title = "Liebenau",
    },
    ["4522"] = {
      title = "Hofgeismar",
    },
    ["4523"] = {
      title = "Hannoversch Münden",
      t_now = "Münden",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054780",
          },
        },
      },
    },
    ["4524"] = {
      title = "Jühnde",
      t_now = "Scheden",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054781",
          },
        },
      },
    },
    ["4525"] = {
      title = "Reinhausen",
      t_now = "Friedland",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054782",
          },
        },
      },
    },
    ["4526"] = {
      title = "Gelliehausen",
      t_now = "Gleichen",
      editions = { 
        { 
          pub_year = 1879,
          rec_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054783",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054784",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054785",
          },
        },
      },
    },
    ["4527"] = {
      title = "Berlingerode",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054786",
          },
        },
      },
    },
    ["4528"] = {
      title = "Worbis",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054787",
          },
        },
      },
    },
    ["4529"] = {
      title = "Bleicherode",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054788",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054789",
          },
        },
      },
    },
    ["4530"] = {
      title = "Nordhausen",
      t_now = "Nordhausen (Süd)",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1853,
          sheet_title = "Hayn",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054790",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054791",
          },
        },
      },
    },
    ["4531"] = {
      title = "Heringen",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1853,
          sheet_title = "Kelbra",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054793",
          },
        },
        { 
          pub_year = 1872,
          rec_year = 1853,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054792",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054794",
          },
        },
      },
    },
    ["4532"] = {
      title = "Kelbra",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054795",
          },
        },
      },
    },
    ["4533"] = {
      title = "Sangerhausen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054796",
          },
        },
      },
    },
    ["4534"] = {
      title = "Allstedt",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          sheet_title = "Riestedt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054797",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054798",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054799",
          },
        },
      },
    },
    ["4535"] = {
      title = "Erdeborn",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054800",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054801",
          },
        },
      },
    },
    ["4536"] = {
      title = "Schraplau",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          sheet_title = "Teutschenthal",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054802",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054803",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054804",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054805",
          },
        },
      },
    },
    ["4537"] = {
      title = "Halle an der Saale (Süd)",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1851,
          sheet_title = "Halle",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054806",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054807",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054808",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054809",
          },
        },
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054810",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054811",
          },
        },
      },
    },
    ["4538"] = {
      title = "Dieskau",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1851,
          sheet_title = "Gröbers",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054812",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054813",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054814",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054815",
          },
        },
      },
    },
    ["4539"] = {
      title = "Zwochau",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1851,
          sheet_title = "Kölsa",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054816",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Tannenwald",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054817",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054818",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          sheet_title = "Tannenwald (Sächs.) - Zwochau (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054819",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_title = "Tannenwald (Sächs.) - Zwochau (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054820",
          },
        },
        { 
          pub_year = 1941,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054821",
          },
        },
      },
    },
    ["4540"] = {
      title = "Zschortau",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Crostitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054822",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Seehausen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054823",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_title = "Seehausen (Sächs.) - Zschortau (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054824",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          sheet_title = "Seehausen (Sächs.) - Zschortau (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054825",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054827",
          },
        },
        { 
          pub_year = 1943,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054828",
          },
        },
      },
    },
    ["4541"] = {
      title = "Eilenburg",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1851,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054829",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Pönitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054830",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_title = "Pönitz (Sächs.) - Eilenburg (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054831",
          },
        },
        { 
          pub_year = 1917,
          rec_office = "Königreich Sachsen",
          sheet_title = "Pönitz (Sächs.) - Eilenburg (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054832",
          },
        },
        { 
          pub_year = 1930,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054833",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054835",
          },
        },
      },
    },
    ["4542"] = {
      title = "Thallwitz (Sächs.) - Strelln (Preuß.)",
      t_now = "Thallwitz",
      editions = { 
        { 
          pub_year = 1898,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Thallwitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054837",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054838",
          },
        },
        { 
          pub_year = 1917,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054839",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054840",
          },
        },
        { 
          pub_year = 1874,
          rec_year = 1851,
          sheet_title = "Strelln",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054836",
          },
        },
      },
    },
    ["4543"] = {
      title = "Thammenhain (Sächs.) - Schildau (Preuß.)",
      t_now = "Schildau",
      editions = { 
        { 
          pub_year = 1898,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Thammenhain",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054841",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054842",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054843",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          sheet_title = "Schildau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054845",
          },
        },
        { 
          pub_year = 1941,
          rec_office = "Königreich Sachsen",
          sheet_title = "Schildau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054846",
          },
        },
      },
    },
    ["4544"] = {
      title = "Olganitz (Sächs.) - Belgern (Preuß.)",
      t_now = "Belgern",
      editions = { 
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054847",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054848",
          },
        },
        { 
          pub_year = 1927,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054849",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054850",
          },
        },
      },
    },
    ["4545"] = {
      title = "Kleintrebnitz (Sächs.) - Mühlberg (Preuß.)",
      t_now = "Mühlberg",
      editions = { 
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Kleintrebnitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054851",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054852",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054853",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054854",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          sheet_title = "Mühlberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054855",
          },
        },
      },
    },
    ["4546"] = {
      title = "Gröditz (Sächs.) - Kröbeln (Preuß.)",
      t_now = "Gröditz",
      editions = { 
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Spansberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054857",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054858",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054859",
          },
        },
        { 
          pub_year = 1923,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054860",
          },
        },
        { 
          pub_year = 1926,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054861",
          },
        },
        { 
          pub_year = 1889,
          sheet_title = "Cröbeln",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054856",
          },
        },
      },
    },
    ["4547"] = {
      title = "Elsterwerda",
      editions = { 
        { 
          pub_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054862",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054863",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054864",
          },
        },
      },
    },
    ["4548"] = {
      title = "Mückenberg",
      editions = { 
        { 
          pub_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054865",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054866",
          },
        },
        { 
          pub_year = 1935,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054867",
          },
        },
        { 
          pub_year = 1937,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054868",
          },
        },
      },
    },
    ["4549"] = {
      title = "Ruhland",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054869",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054870",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054871",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054872",
          },
        },
      },
    },
    ["4550"] = {
      title = "Hohenbocka",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054873",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054874",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054875",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054876",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054877",
          },
        },
      },
    },
    ["4551"] = {
      title = "Hoyerswerda",
      editions = { 
        { 
          pub_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054879",
          },
        },
        { 
          pub_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054878",
          },
        },
        { 
          pub_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054880",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054881",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054883",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054882",
          },
        },
      },
    },
    ["4552"] = {
      title = "Weißkollm",
      editions = { 
        { 
          pub_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054884",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054885",
          },
        },
        { 
          pub_year = 1922,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054886",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054887",
          },
        },
      },
    },
    ["4553"] = {
      title = "Nochten",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054888",
          },
        },
        { 
          pub_year = 1918,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054889",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054890",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054891",
          },
        },
      },
    },
    ["4554"] = {
      title = "Rietschen",
      editions = { 
        { 
          pub_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054892",
          },
        },
        { 
          pub_year = 1924,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054893",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054894",
          },
        },
      },
    },
    ["4555"] = {
      title = "Priebus",
      t_now = "Steinbach",
      editions = { 
        { 
          pub_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054895",
          },
        },
        { 
          pub_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054896",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1887,
          sheet_title = "Priebus in Schlesien",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054897",
          },
        },
      },
    },
    ["4556"] = {
      title = "Freiwaldau",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054898",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054899",
          },
        },
      },
    },
    ["4557"] = {
      title = "Rauscha",
      editions = { 
        { 
          pub_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054900",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054901",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054902",
          },
        },
      },
    },
    ["4558"] = {
      title = "Neuhammer am Queis",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1887,
          sheet_title = "Loos",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054903",
          },
        },
        { 
          pub_year = 1922,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054904",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054905",
          },
        },
      },
    },
    ["4559"] = {
      title = "Ober-Leschen",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054906",
          },
        },
        { 
          pub_year = 1921,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054907",
          },
        },
      },
    },
    ["4560"] = {
      title = "Armadebrunn",
      editions = { 
        { 
          pub_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054908",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054909",
          },
        },
      },
    },
    ["4561"] = {
      title = "Kotzenau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054910",
          },
        },
      },
    },
    ["4562"] = {
      title = "Gläsersdorf",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054911",
          },
        },
      },
    },
    ["4563"] = {
      title = "Koslitz",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054912",
          },
        },
      },
    },
    ["4564"] = {
      title = "Steinau an der Oder",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054913",
          },
        },
      },
    },
    ["4565"] = {
      title = "Winzig",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054914",
          },
        },
      },
    },
    ["4566"] = {
      title = "Groß Bargen",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054915",
          },
        },
      },
    },
    ["4567"] = {
      title = "Trachenberg",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054916",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054917",
          },
        },
      },
    },
    ["4568"] = {
      title = "Kainowe",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1885,
          sheet_title = "Groß Cainowe",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054918",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054919",
          },
        },
      },
    },
    ["4569"] = {
      title = "Katholisch-Hammer",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054920",
          },
        },
        { 
          pub_year = 1937,
          sheet_title = "Katholisch Hammer",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054921",
          },
        },
      },
    },
    ["4570"] = {
      title = "Kraschnitz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054922",
          },
        },
      },
    },
    ["4571"] = {
      title = "Tscheschen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054923",
          },
        },
      },
    },
    ["4572"] = {
      title = "Honig",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054924",
          },
        },
      },
    },
    ["4573"] = {
      title = "Schildberg in Posen",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          sheet_title = "Schildberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054925",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054926",
          },
        },
      },
    },
    ["4574"] = {
      title = "Bukownica",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054927",
          },
        },
      },
    },
    ["4575"] = {
      title = "Plugawice",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054928",
          },
        },
      },
    },
    ["4602"] = {
      title = "Tegelen",
      t_now = "Nettetal (Anhang)",
      editions = { 
        { 
          pub_year = 1936,
          sheet_title = "Kaldenkirchen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054929",
          },
        },
        { 
          pub_year = 1953,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054930",
          },
        },
      },
    },
    ["4603"] = {
      title = "Nettetal",
    },
    ["4604"] = {
      title = "Kempen",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054931",
          },
        },
      },
    },
    ["4605"] = {
      title = "Krefeld",
      editions = { 
        { 
          pub_year = 1927,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054932",
          },
        },
      },
    },
    ["4606"] = {
      title = "Kaiserswerth",
      t_now = "Düsseldorf-Kaiserswerth",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054933",
          },
        },
      },
    },
    ["4607"] = {
      title = "Kettwig",
      t_now = "Heiligenhaus",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054934",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054935",
          },
        },
      },
    },
    ["4608"] = {
      title = "Velbert",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054936",
          },
        },
      },
    },
    ["4609"] = {
      title = "Hattingen",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054937",
          },
        },
      },
    },
    ["4610"] = {
      title = "Hagen in Westfalen",
      t_now = "Hagen",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054938",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054939",
          },
        },
      },
    },
    ["4611"] = {
      title = "Hohenlimburg",
      t_now = "Hagen-Hohenlimburg",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054940",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          sheet_title = "Wellerswalde (Sächs.) - Klingenhain (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054941",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054942",
          },
        },
      },
    },
    ["4612"] = {
      title = "Iserlohn",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054943",
          },
        },
        { 
          pub_year = 1931,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054944",
          },
        },
      },
    },
    ["4613"] = {
      title = "Balve",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054945",
          },
        },
      },
    },
    ["4614"] = {
      title = "Arnsberg (Süd)",
      t_now = "Arnsberg",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054946",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054947",
          },
        },
      },
    },
    ["4615"] = {
      title = "Meschede",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054948",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054949",
          },
        },
      },
    },
    ["4616"] = {
      title = "Eversberg",
      t_now = "Olsberg",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054950",
          },
        },
      },
    },
    ["4617"] = {
      title = "Brilon",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054951",
          },
        },
      },
    },
    ["4618"] = {
      title = "Adorf",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054952",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054953",
          },
        },
      },
    },
    ["4619"] = {
      title = "Mengeringhausen",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054954",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054955",
          },
        },
      },
    },
    ["4620"] = {
      title = "Arolsen",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054956",
          },
        },
        { 
          pub_year = 1933,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054957",
          },
        },
      },
    },
    ["4621"] = {
      title = "Wolfhagen",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054958",
          },
        },
      },
    },
    ["4622"] = {
      title = "Cassel (West)",
      t_now = "Kassel (West)",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054959",
          },
        },
      },
    },
    ["4623"] = {
      title = "Kassel (Ost)",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1907,
          sheet_title = "Cassel (Ost)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054960",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054961",
          },
        },
      },
    },
    ["4624"] = {
      title = "Hedemünden",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054962",
          },
        },
      },
    },
    ["4625"] = {
      title = "Witzenhausen",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054963",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054964",
          },
        },
      },
    },
    ["4626"] = {
      title = "Heiligenstadt",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054965",
          },
        },
      },
    },
    ["4627"] = {
      title = "Dingelstädt",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054966",
          },
        },
      },
    },
    ["4628"] = {
      title = "Nieder Orschla",
      t_now = "Niederorschel",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1853,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054967",
          },
        },
        { 
          pub_year = 1936,
          sheet_title = "Niederorschel",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054968",
          },
        },
      },
    },
    ["4629"] = {
      title = "Keula",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1853,
          sheet_title = "Groß Keula",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054969",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054970",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054971",
          },
        },
      },
    },
    ["4630"] = {
      title = "Schernberg",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1853,
          sheet_title = "Immenrode",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054972",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054973",
          },
        },
      },
    },
    ["4631"] = {
      title = "Sondershausen",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1853,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054974",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054975",
          },
        },
      },
    },
    ["4632"] = {
      title = "Frankenhausen",
      t_now = "Bad Frankenhausen",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1853,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054976",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054977",
          },
        },
        { 
          pub_year = 1934,
          sheet_title = "Bad Frankenhausen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054978",
          },
        },
      },
    },
    ["4633"] = {
      title = "Artern",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054979",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054980",
          },
        },
      },
    },
    ["4634"] = {
      title = "Ziegelroda",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054981",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054982",
          },
        },
      },
    },
    ["4635"] = {
      title = "Querfurt",
      editions = { 
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054983",
          },
        },
      },
    },
    ["4636"] = {
      title = "Schafstedt",
      t_now = "Schafstädt",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          sheet_title = "Schafstaedt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054984",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054985",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1903,
          sheet_title = "Schafstädt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054986",
          },
        },
      },
    },
    ["4637"] = {
      title = "Merseburg (West)",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054987",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054988",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054989",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054990",
          },
        },
      },
    },
    ["4638"] = {
      title = "Merseburg (Ost)",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1851,
          sheet_title = "Kötzschau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054991",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054992",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054993",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054994",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054995",
          },
        },
        { 
          pub_year = 1944,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014140",
          },
        },
      },
    },
    ["4639"] = {
      title = "Markranstädt (Sächs.) - Schkeuditz (Preuß.)",
      t_now = "Leipzig (West)",
      editions = { 
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Markranstädt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054996",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054997",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054998",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71054999",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055000",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          sheet_title = "Leipzig (West)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055001",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          sheet_title = "Leipzig (West)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055002",
          },
        },
        { 
          pub_year = 1941,
          rec_office = "Königreich Sachsen",
          sheet_title = "Leipzig (West)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055003",
          },
        },
      },
    },
    ["4640"] = {
      title = "Leipzig",
      t_now = "Leipzig (Ost)",
      editions = { 
        { 
          pub_year = 1894,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055004",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055005",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055006",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055007",
          },
        },
        { 
          pub_year = 1929,
          rec_office = "Königreich Sachsen",
          sheet_title = "Leipzig (Ost)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055008",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          sheet_title = "Leipzig (Ost)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055009",
          },
        },
      },
    },
    ["4641"] = {
      title = "Brandis",
      editions = { 
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055010",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_title = "Brandis (Sächs.) - Pehritzsch (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055011",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          sheet_title = "Brandis (Sächs.) - Pehritzsch (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055012",
          },
        },
        { 
          pub_year = 1929,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055013",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1905,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055014",
          },
        },
      },
    },
    ["4642"] = {
      title = "Wurzen",
      editions = { 
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055015",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055016",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055017",
          },
        },
        { 
          pub_year = 1930,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055018",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055019",
          },
        },
      },
    },
    ["4643"] = {
      title = "Dahlen",
      editions = { 
        { 
          pub_year = 1898,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055020",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055021",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055022",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055023",
          },
        },
        { 
          pub_year = 1944,
          rec_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055024",
          },
        },
      },
    },
    ["4644"] = {
      title = "Wellerswalde (Sächs.) - Klingenhain (Preuß.)",
      t_now = "Wellerswalde",
      editions = { 
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055025",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055026",
          },
        },
      },
    },
    ["4645"] = {
      title = "Riesa",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055027",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_title = "Riesa (Sächs.) - Schirmenitz (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055028",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055029",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1904,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055030",
          },
        },
      },
    },
    ["4646"] = {
      title = "Colmnitz",
      editions = { 
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055031",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055032",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055033",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055034",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055035",
          },
        },
      },
    },
    ["4647"] = {
      title = "Skäßchen und Forsthaus Pfeife (Sächs.) - Hirschfeld (Preuß.)",
      t_now = "Hirschfeld",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Skässchen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055036",
          },
        },
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Skässchen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055037",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055038",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055039",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055040",
          },
        },
        { 
          pub_year = 1927,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055041",
          },
        },
      },
    },
    ["4648"] = {
      title = "Ponickau (Sächs.) - Ortrand (Preuß.)",
      t_now = "Ortrand",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Ponickau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055042",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055043",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055044",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055045",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055046",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055047",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          sheet_title = "Ortrand",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055048",
          },
        },
      },
    },
    ["4649"] = {
      title = "Schwepnitz (Sächs.) - Lipsa (Preuß.)",
      t_now = "Schwepnitz",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Otterschütz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055049",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055050",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055051",
          },
        },
        { 
          pub_year = 1925,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055052",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          sheet_title = "Schwepnitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055053",
          },
        },
      },
    },
    ["4650"] = {
      title = "Straßgräbchen (Sächs.) - Bernsdorf (Preuß.)",
      t_now = "Bernsdorf",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Straßgräbchen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055054",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055055",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055056",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          rec_office = "Königreich Sachsen",
          sheet_title = "Bernsdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055057",
          },
        },
      },
    },
    ["4651"] = {
      title = "Königswartha (Sächs.) - Wittichenau (Preuß.)",
      t_now = "Wittichenau",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Königswartha",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055058",
          },
        },
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055059",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055060",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055061",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055062",
          },
        },
      },
    },
    ["4652"] = {
      title = "Lippitsch (Sächs.) - Lohsa (Preuß.)",
      t_now = "Lohsa",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Lippitsch",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055064",
          },
        },
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055065",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055066",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055067",
          },
        },
        { 
          pub_year = 1923,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055068",
          },
        },
        { 
          pub_year = 1945,
          rec_office = "Königreich Sachsen",
          sheet_title = "Lohsa",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055069",
          },
        },
        { 
          pub_year = 1889,
          sheet_title = "Lohsa",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055063",
          },
        },
      },
    },
    ["4653"] = {
      title = "Uhyst",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Neudorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055071",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055072",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_title = "Neudorf (Sächs.) - Uhyst (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055073",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          sheet_title = "Neudorf (Sächs.) - Uhyst (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055074",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1901,
          rec_office = "Königreich Sachsen",
          sheet_title = "Spreefurt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055075",
          },
        },
        { 
          pub_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055070",
          },
        },
      },
    },
    ["4654"] = {
      title = "Mücka",
      editions = { 
        { 
          pub_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055076",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055077",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055078",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1887,
          sheet_title = "Stockteich",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055079",
          },
        },
      },
    },
    ["4655"] = {
      title = "Rothenburg in der Oberlausitz",
      editions = { 
        { 
          pub_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055080",
          },
        },
        { 
          pub_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055081",
          },
        },
      },
    },
    ["4656"] = {
      title = "Rothenburg in der Oberlausitz",
      t_now = "Nieder-Neundorf",
      editions = { 
        { 
          pub_year = 1889,
          sheet_title = "Neuhammer",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055082",
          },
        },
        { 
          pub_year = 1929,
          sheet_title = "Neuhammer",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055084",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055083",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055085",
          },
        },
      },
    },
    ["4657"] = {
      title = "Tiefenfurt",
      editions = { 
        { 
          pub_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055086",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055087",
          },
        },
      },
    },
    ["4658"] = {
      title = "Klitschdorf",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055089",
          },
        },
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055088",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055090",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055091",
          },
        },
      },
    },
    ["4659"] = {
      title = "Kittlitztreben",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055092",
          },
        },
      },
    },
    ["4660"] = {
      title = "Modlau",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055093",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055094",
          },
        },
      },
    },
    ["4661"] = {
      title = "Reisicht",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055095",
          },
        },
      },
    },
    ["4662"] = {
      title = "Lerchenborn",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055096",
          },
        },
      },
    },
    ["4663"] = {
      title = "Lüben",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055097",
          },
        },
      },
    },
    ["4664"] = {
      title = "Porschwitz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055098",
          },
        },
      },
    },
    ["4665"] = {
      title = "Wohlau",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055099",
          },
        },
      },
    },
    ["4666"] = {
      title = "Stroppen",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055100",
          },
        },
      },
    },
    ["4667"] = {
      title = "Prausnitz",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055101",
          },
        },
      },
    },
    ["4668"] = {
      title = "Trebnitz in Niederschlesien",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          sheet_title = "Trebnitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055102",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055103",
          },
        },
      },
    },
    ["4669"] = {
      title = "Blüchertal",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055104",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055105",
          },
        },
      },
    },
    ["4670"] = {
      title = "Festenberg",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055106",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055107",
          },
        },
      },
    },
    ["4671"] = {
      title = "Rudelsdorf",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055108",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055109",
          },
        },
      },
    },
    ["4672"] = {
      title = "Groß Wartenberg",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055110",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055111",
          },
        },
      },
    },
    ["4673"] = {
      title = "Rogaszyce",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055112",
          },
        },
      },
    },
    ["4674"] = {
      title = "Mikorzyn",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055113",
          },
        },
      },
    },
    ["4675"] = {
      title = "Tonia",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055114",
          },
        },
      },
    },
    ["4702"] = {
      title = "Elmpt",
      editions = { 
        { 
          pub_year = 1893,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055115",
          },
        },
      },
    },
    ["4703"] = {
      title = "Waldniel",
      t_now = "Schwalmtal",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055116",
          },
        },
      },
    },
    ["4704"] = {
      title = "Viersen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055117",
          },
        },
      },
    },
    ["4705"] = {
      title = "Willich",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055118",
          },
        },
      },
    },
    ["4706"] = {
      title = "Düsseldorf",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055119",
          },
        },
      },
    },
    ["4707"] = {
      title = "Mettmann",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055120",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055121",
          },
        },
      },
    },
    ["4708"] = {
      title = "Elberfeld",
      t_now = "Wuppertal-Elberfeld",
      editions = { 
        { 
          pub_year = 1927,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055122",
          },
        },
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055123",
          },
        },
      },
    },
    ["4709"] = {
      title = "Barmen",
      t_now = "Wuppertal-Barmen",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055124",
          },
        },
      },
    },
    ["4710"] = {
      title = "Radevormwald",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055125",
          },
        },
      },
    },
    ["4711"] = {
      title = "Lüdenscheid",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055126",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055127",
          },
        },
      },
    },
    ["4712"] = {
      title = "Altena",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055128",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055129",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055130",
          },
        },
      },
    },
    ["4713"] = {
      title = "Plettenberg",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055131",
          },
        },
      },
    },
    ["4714"] = {
      title = "Endorf",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055132",
          },
        },
      },
    },
    ["4715"] = {
      title = "Eslohe",
      t_now = "Eslohe im Sauerland",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055133",
          },
        },
      },
    },
    ["4716"] = {
      title = "Bödefeld",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055134",
          },
        },
      },
    },
    ["4717"] = {
      title = "Niedersfeld",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055135",
          },
        },
      },
    },
    ["4718"] = {
      title = "Goddelsheim",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055136",
          },
        },
      },
    },
    ["4719"] = {
      title = "Korbach",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055137",
          },
        },
      },
    },
    ["4720"] = {
      title = "Waldeck",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055138",
          },
        },
      },
    },
    ["4721"] = {
      title = "Naumburg",
    },
    ["4722"] = {
      title = "Niederzwehren",
    },
    ["4723"] = {
      title = "Oberkaufungen",
    },
    ["4724"] = {
      title = "Großalmerode",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055140",
          },
        },
      },
    },
    ["4725"] = {
      title = "Bad Sooden-Allendorf",
      editions = { 
        { 
          pub_year = 1913,
          sheet_title = "Allendorf-Sooden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055141",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055142",
          },
        },
      },
    },
    ["4726"] = {
      title = "Grebendorf",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055143",
          },
        },
      },
    },
    ["4727"] = {
      title = "Küllstedt",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055144",
          },
        },
      },
    },
    ["4728"] = {
      title = "Mühlhausen in Thüringen",
      t_now = "Mühlhausen",
      editions = { 
        { 
          pub_year = 1868,
          rec_year = 1854,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055145",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055146",
          },
        },
      },
    },
    ["4729"] = {
      title = "Schlotheim",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1854,
          sheet_title = "Körner",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055147",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055148",
          },
        },
      },
    },
    ["4730"] = {
      title = "Ebeleben",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1853,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055149",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055150",
          },
        },
      },
    },
    ["4731"] = {
      title = "Greußen",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1853,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055151",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055152",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055153",
          },
        },
      },
    },
    ["4732"] = {
      title = "Kindelbrück",
      t_now = "Weißensee",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1853,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055154",
          },
        },
        { 
          pub_year = 1877,
          rec_year = 1853,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055155",
          },
        },
        { 
          pub_year = 1936,
          sheet_title = "Weißensee",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055156",
          },
        },
      },
    },
    ["4733"] = {
      title = "Oberheldrungen",
      editions = { 
        { 
          pub_year = 1868,
          rec_year = 1853,
          sheet_title = "Schillingstedt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055157",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055158",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055159",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055160",
          },
        },
      },
    },
    ["4734"] = {
      title = "Wiehe",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055161",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055162",
          },
        },
      },
    },
    ["4735"] = {
      title = "Nebra",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055163",
          },
        },
      },
    },
    ["4736"] = {
      title = "Freyburg an der Unstrut",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055164",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055165",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055166",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055167",
          },
        },
      },
    },
    ["4737"] = {
      title = "Weißenfels",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055168",
          },
        },
        { 
          pub_year = 1878,
          rec_year = 1852,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055169",
          },
        },
        { 
          pub_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055170",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055171",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055172",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055173",
          },
        },
      },
    },
    ["4738"] = {
      title = "Lützen",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1851,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055174",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055175",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055176",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055177",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055178",
          },
        },
      },
    },
    ["4739"] = {
      title = "Zwenkau (Sächs.) - Großgörschen (Preuß.)",
      t_now = "Zwenkau",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1852,
          sheet_title = "Meuchen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055179",
          },
        },
        { 
          pub_year = 1879,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Zwenkau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055180",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          sheet_title = "Groß Görschen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055181",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055182",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055183",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055184",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055185",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1904,
          sheet_title = "Zwenkau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055186",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1904,
          rec_office = "Königreich Sachsen",
          sheet_title = "Zwenkau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055188",
          },
        },
      },
    },
    ["4740"] = {
      title = "Liebertwolkwitz",
      t_now = "Markkleeberg",
      editions = { 
        { 
          pub_year = 1891,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055189",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055190",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055191",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055192",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055193",
          },
        },
        { 
          pub_year = 1929,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055195",
          },
        },
        { 
          pub_year = 1927,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055194",
          },
        },
      },
    },
    ["4741"] = {
      title = "Naunhof",
      t_now = "Nauenhof",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055196",
          },
        },
        { 
          pub_year = 1888,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055197",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055198",
          },
        },
        { 
          pub_year = 1918,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055199",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055200",
          },
        },
      },
    },
    ["4742"] = {
      title = "Grimma",
      editions = { 
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055201",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055202",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055203",
          },
        },
        { 
          pub_year = 1927,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055204",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055205",
          },
        },
      },
    },
    ["4743"] = {
      title = "Mutzschen",
      editions = { 
        { 
          pub_year = 1894,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055206",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055207",
          },
        },
        { 
          pub_year = 1942,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055208",
          },
        },
      },
    },
    ["4744"] = {
      title = "Oschatz",
      editions = { 
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055209",
          },
        },
        { 
          pub_year = 1931,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055210",
          },
        },
      },
    },
    ["4745"] = {
      title = "Stauchitz",
      editions = { 
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055211",
          },
        },
        { 
          pub_year = 1901,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055212",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055213",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055214",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055215",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055216",
          },
        },
      },
    },
    ["4746"] = {
      title = "Hirschstein",
      t_now = "Seußlitz",
      editions = { 
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055217",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055218",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055219",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          sheet_title = "Seußlitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055220",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          sheet_title = "Seußlitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055221",
          },
        },
      },
    },
    ["4747"] = {
      title = "Großenhain",
      editions = { 
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055222",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055223",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055224",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055225",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055226",
          },
        },
      },
    },
    ["4748"] = {
      title = "Radeburg",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055227",
          },
        },
        { 
          pub_year = 1894,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055228",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055229",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055230",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055231",
          },
        },
        { 
          pub_year = 1925,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055232",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055233",
          },
        },
      },
    },
    ["4749"] = {
      title = "Königsbrück",
      editions = { 
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055234",
          },
        },
        { 
          pub_year = 1907,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055235",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055236",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055237",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055238",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055239",
          },
        },
        { 
          pub_year = 1925,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055240",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055241",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1901,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055187",
          },
        },
      },
    },
    ["4750"] = {
      title = "Kamenz",
      editions = { 
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055242",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055243",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055244",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055245",
          },
        },
      },
    },
    ["4751"] = {
      title = "Kloster St. Marienstern",
      editions = { 
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055246",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055247",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055248",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055249",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1901,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055250",
          },
        },
      },
    },
    ["4752"] = {
      title = "Radibor",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Luttowitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055251",
          },
        },
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Luttowitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055252",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055253",
          },
        },
        { 
          pub_year = 1923,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055254",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055255",
          },
        },
      },
    },
    ["4753"] = {
      title = "Weigersdorf",
      editions = { 
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Baruth mit Surplus Feldkaiser",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055256",
          },
        },
        { 
          pub_year = 1908,
          rec_office = "Königreich Sachsen",
          sheet_title = "Baruth (Sächs.) - Weigersdorf (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055257",
          },
        },
        { 
          pub_year = 1923,
          rec_office = "Königreich Sachsen",
          sheet_title = "Baruth (Sächs.) - Weigersdorf (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055258",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055259",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055260",
          },
        },
      },
    },
    ["4754"] = {
      title = "Niesky",
      editions = { 
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          sheet_title = "Feldkaiser (Sächs.) - Niesky (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055261",
          },
        },
        { 
          pub_year = 1930,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055262",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055263",
          },
        },
      },
    },
    ["4755"] = {
      title = "Wehrkirch",
      t_now = "Horka",
      editions = { 
        { 
          pub_year = 1929,
          sheet_title = "Horka",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055264",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055265",
          },
        },
      },
    },
    ["4756"] = {
      title = "Penzig",
      t_now = "Penzig-Zodel",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055266",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055267",
          },
        },
      },
    },
    ["4757"] = {
      title = "Kohlfurt",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055268",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055269",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055270",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055271",
          },
        },
      },
    },
    ["4758"] = {
      title = "Siegersdorf",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055272",
          },
        },
      },
    },
    ["4759"] = {
      title = "Bunzlau",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055273",
          },
        },
      },
    },
    ["4760"] = {
      title = "Kaiserswaldau",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055274",
          },
        },
      },
    },
    ["4761"] = {
      title = "Haynau",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055275",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055276",
          },
        },
      },
    },
    ["4762"] = {
      title = "Liegnitz",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055277",
          },
        },
      },
    },
    ["4763"] = {
      title = "Kunitz",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055279",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055278",
          },
        },
      },
    },
    ["4764"] = {
      title = "Parchwitz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055280",
          },
        },
      },
    },
    ["4765"] = {
      title = "Regnitz",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055281",
          },
        },
        { 
          pub_year = 1937,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014868",
          },
        },
      },
    },
    ["4766"] = {
      title = "Dyhernfurth",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055283",
          },
        },
      },
    },
    ["4767"] = {
      title = "Auras",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055284",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055285",
          },
        },
      },
    },
    ["4768"] = {
      title = "Wiese",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055286",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055287",
          },
        },
      },
    },
    ["4769"] = {
      title = "Perschütz",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055288",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055289",
          },
        },
      },
    },
    ["4770"] = {
      title = "Oels",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055290",
          },
        },
      },
    },
    ["4771"] = {
      title = "Stradam",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055291",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055292",
          },
        },
      },
    },
    ["4772"] = {
      title = "Trembatschau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055293",
          },
        },
      },
    },
    ["4773"] = {
      title = "Kempen in Posen",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          sheet_title = "Kempen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055294",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055295",
          },
        },
      },
    },
    ["4774"] = {
      title = "Baranow",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055296",
          },
        },
      },
    },
    ["4775"] = {
      title = "Boleslawice",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055297",
          },
        },
      },
    },
    ["4802"] = {
      title = "Birgelen",
      t_now = "Wasserberg",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055298",
          },
        },
      },
    },
    ["4803"] = {
      title = "Wegberg",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055299",
          },
        },
      },
    },
    ["4804"] = {
      title = "M. Gladbach",
      t_now = "Mönchengladbach",
      editions = { 
        { 
          pub_year = 1952,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055300",
          },
        },
      },
    },
    ["4805"] = {
      title = "Wevelinghoven",
      t_now = "Korschenbroich",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055301",
          },
        },
      },
    },
    ["4806"] = {
      title = "Neuß",
      t_now = "Neuss",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055302",
          },
        },
      },
    },
    ["4807"] = {
      title = "Hilden",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055303",
          },
        },
        { 
          pub_year = 1910,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055304",
          },
        },
      },
    },
    ["4808"] = {
      title = "Solingen",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055305",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055306",
          },
        },
      },
    },
    ["4809"] = {
      title = "Remscheid",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055307",
          },
        },
      },
    },
    ["4810"] = {
      title = "Wipperfürth",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055308",
          },
        },
      },
    },
    ["4811"] = {
      title = "Meinerzhagen",
      editions = { 
        { 
          pub_year = 1921,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055309",
          },
        },
      },
    },
    ["4812"] = {
      title = "Herscheid",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055310",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055311",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055312",
          },
        },
      },
    },
    ["4813"] = {
      title = "Attendorn",
      editions = { 
        { 
          pub_year = 1950,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055313",
          },
        },
      },
    },
    ["4814"] = {
      title = "Altenhundem",
      t_now = "Lennestadt",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055314",
          },
        },
      },
    },
    ["4815"] = {
      title = "Schmallenberg",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055315",
          },
        },
      },
    },
    ["4816"] = {
      title = "Girkhausen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055316",
          },
        },
      },
    },
    ["4817"] = {
      title = "Hallenberg",
      t_now = "Winterberg",
      editions = { 
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055317",
          },
        },
      },
    },
    ["4818"] = {
      title = "Medebach",
    },
    ["4819"] = {
      title = "Fürstenberg",
    },
    ["4820"] = {
      title = "Bad Wildungen",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055318",
          },
        },
      },
    },
    ["4821"] = {
      title = "Fritzlar",
    },
    ["4822"] = {
      title = "Gudensberg",
    },
    ["4823"] = {
      title = "Melsungen",
    },
    ["4824"] = {
      title = "Hessisch Lichtenau",
    },
    ["4825"] = {
      title = "Waldkappel",
      editions = { 
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055319",
          },
        },
      },
    },
    ["4826"] = {
      title = "Eschwege",
      editions = { 
        { 
          pub_year = 1954,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055320",
          },
        },
      },
    },
    ["4827"] = {
      title = "Treffurt",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055321",
          },
        },
      },
    },
    ["4828"] = {
      title = "Oberdorla",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055323",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055322",
          },
        },
      },
    },
    ["4829"] = {
      title = "Langensalza",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055324",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055325",
          },
        },
      },
    },
    ["4830"] = {
      title = "Groß Vargula",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055326",
          },
        },
      },
    },
    ["4831"] = {
      title = "Gebesee",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055327",
          },
        },
      },
    },
    ["4832"] = {
      title = "Sömmerda",
      editions = { 
        { 
          pub_year = 1868,
          rec_year = 1853,
          sheet_title = "Cölleda",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055329",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055328",
          },
        },
      },
    },
    ["4833"] = {
      title = "Kölleda",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055330",
          },
        },
      },
    },
    ["4834"] = {
      title = "Buttstädt",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055331",
          },
        },
      },
    },
    ["4835"] = {
      title = "Eckartsberga",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055332",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055333",
          },
        },
      },
    },
    ["4836"] = {
      title = "Naumburg",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015032",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015033",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1903,
          sheet_title = "Naumburg an der Saale",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055334",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055335",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055336",
          },
        },
      },
    },
    ["4837"] = {
      title = "Stößen",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055337",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055338",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055339",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055340",
          },
        },
      },
    },
    ["4838"] = {
      title = "Hohenmölsen",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055341",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055342",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055343",
          },
        },
      },
    },
    ["4839"] = {
      title = "Pegau und Hemmendorf (Sächs.) - Predel (Preuß.)",
      t_now = "Pegau",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Pegau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055345",
          },
        },
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Pegau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055346",
          },
        },
        { 
          pub_year = 1908,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055347",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055348",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055349",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055350",
          },
        },
        { 
          pub_year = 1908,
          rec_year = 1906,
          sheet_title = "Predel",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055344",
          },
        },
      },
    },
    ["4840"] = {
      title = "Borna",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Lobstädt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055351",
          },
        },
        { 
          pub_year = 1894,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Lobstädt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055352",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055353",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055354",
          },
        },
        { 
          pub_year = 1918,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055355",
          },
        },
        { 
          pub_year = 1931,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055356",
          },
        },
      },
    },
    ["4841"] = {
      title = "Lausigk",
      t_now = "Bad Lausick",
      editions = { 
        { 
          pub_year = 1888,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055357",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055358",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055359",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055360",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          sheet_title = "Bad Lausick",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055361",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          sheet_title = "Bad Lausick",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055362",
          },
        },
      },
    },
    ["4842"] = {
      title = "Colditz",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055363",
          },
        },
        { 
          pub_year = 1889,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055364",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055365",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055366",
          },
        },
      },
    },
    ["4843"] = {
      title = "Leisnig",
      editions = { 
        { 
          pub_year = 1874,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055367",
          },
        },
        { 
          pub_year = 1890,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055368",
          },
        },
        { 
          pub_year = 1907,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055369",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055370",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055371",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055372",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055373",
          },
        },
      },
    },
    ["4844"] = {
      title = "Döbeln",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055374",
          },
        },
        { 
          pub_year = 1888,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055375",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055376",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055377",
          },
        },
      },
    },
    ["4845"] = {
      title = "Lommatzsch",
      editions = { 
        { 
          pub_year = 1889,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055378",
          },
        },
        { 
          pub_year = 1907,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055379",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055380",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055381",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055382",
          },
        },
      },
    },
    ["4846"] = {
      title = "Meißen",
      editions = { 
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055383",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055384",
          },
        },
        { 
          pub_year = 1917,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055385",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055386",
          },
        },
      },
    },
    ["4847"] = {
      title = "Kötzschenbroda",
      t_now = "Radebeul",
      editions = { 
        { 
          pub_year = 1904,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055387",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055388",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055389",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055390",
          },
        },
        { 
          pub_year = 1917,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055391",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055392",
          },
        },
      },
    },
    ["4848"] = {
      title = "Moritzburg",
      t_now = "Klotzsche",
      editions = { 
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055393",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055394",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055395",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          sheet_title = "Eisenberg-Moritzburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055396",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          sheet_title = "Klotzsche",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055397",
          },
        },
        { 
          pub_year = 1944,
          rec_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_title = "Klotzsche",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055398",
          },
        },
      },
    },
    ["4849"] = {
      title = "Radeberg",
      editions = { 
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055399",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055400",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055401",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055402",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055403",
          },
        },
        { 
          pub_year = 1927,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055404",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055405",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1902,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055406",
          },
        },
      },
    },
    ["4850"] = {
      title = "Pulsnitz",
      t_now = "Großröhrsdorf",
      editions = { 
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055407",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055408",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055409",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055410",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055411",
          },
        },
        { 
          pub_year = 1941,
          rec_office = "Königreich Sachsen",
          sheet_title = "Großröhrsdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055412",
          },
        },
      },
    },
    ["4851"] = {
      title = "Bischofswerda",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055413",
          },
        },
        { 
          pub_year = 1891,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055414",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055415",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055416",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055417",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055418",
          },
        },
      },
    },
    ["4852"] = {
      title = "Bautzen",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055419",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055420",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055421",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055422",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055423",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1900,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055424",
          },
        },
      },
    },
    ["4853"] = {
      title = "Hochkirch",
      t_now = "Weißenberg",
      editions = { 
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055425",
          },
        },
        { 
          pub_year = 1904,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055426",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055427",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055428",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055429",
          },
        },
      },
    },
    ["4854"] = {
      title = "Reichenbach in der Oberlausitz",
      editions = { 
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Kittlitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055430",
          },
        },
        { 
          pub_year = 1933,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055431",
          },
        },
        { 
          pub_year = 1944,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055432",
          },
        },
      },
    },
    ["4855"] = {
      title = "Görlitz",
      editions = { 
        { 
          pub_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055433",
          },
        },
        { 
          pub_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055434",
          },
        },
        { 
          pub_year = 1917,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055435",
          },
        },
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055436",
          },
        },
        { 
          pub_year = 1926,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055437",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055438",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055439",
          },
        },
      },
    },
    ["4856"] = {
      title = "Lichtenberg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055440",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055441",
          },
        },
      },
    },
    ["4857"] = {
      title = "Lauban",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055442",
          },
        },
      },
    },
    ["4858"] = {
      title = "Naumburg am Queis",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055443",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055444",
          },
        },
      },
    },
    ["4859"] = {
      title = "Löwenberg",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055445",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055446",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055447",
          },
        },
      },
    },
    ["4860"] = {
      title = "Gröditzberg",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055448",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055449",
          },
        },
      },
    },
    ["4861"] = {
      title = "Goldberg in Niederschlesien",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055450",
          },
        },
      },
    },
    ["4862"] = {
      title = "Kroitsch",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055451",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055452",
          },
        },
      },
    },
    ["4863"] = {
      title = "Wahlstatt",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055453",
          },
        },
      },
    },
    ["4864"] = {
      title = "Groß Tinz",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055454",
          },
        },
      },
    },
    ["4865"] = {
      title = "Neumarkt in Schlesien",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055455",
          },
        },
        { 
          pub_year = 1932,
          sheet_title = "Neumarkt in Niederschlesien",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055456",
          },
        },
      },
    },
    ["4866"] = {
      title = "Leuthen",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055457",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055458",
          },
        },
      },
    },
    ["4867"] = {
      title = "Lissa",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055459",
          },
        },
        { 
          pub_year = 1934,
          sheet_title = "Deutsch Lissa",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055460",
          },
        },
      },
    },
    ["4868"] = {
      title = "Breslau (Nord)",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055461",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055462",
          },
        },
      },
    },
    ["4869"] = {
      title = "Sibyllenort",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055463",
          },
        },
      },
    },
    ["4870"] = {
      title = "Groß Zöllnig",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055464",
          },
        },
      },
    },
    ["4871"] = {
      title = "Bernstadt",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055465",
          },
        },
      },
    },
    ["4872"] = {
      title = "Schmograu",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055466",
          },
        },
      },
    },
    ["4873"] = {
      title = "Reichthal",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055467",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055468",
          },
        },
      },
    },
    ["4874"] = {
      title = "Reinersdorf",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055469",
          },
        },
      },
    },
    ["4875"] = {
      title = "Pitschen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055470",
          },
        },
      },
    },
    ["4876"] = {
      title = "Wittenau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055471",
          },
        },
      },
    },
    ["4901"] = {
      title = "Waldfeucht",
      t_now = "Selfkant",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055472",
          },
        },
      },
    },
    ["4902"] = {
      title = "Heinsberg",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055474",
          },
        },
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055473",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055475",
          },
        },
      },
    },
    ["4903"] = {
      title = "Erkelenz",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055476",
          },
        },
      },
    },
    ["4904"] = {
      title = "Titz",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055477",
          },
        },
      },
    },
    ["4905"] = {
      title = "Grevenbroich",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055478",
          },
        },
      },
    },
    ["4906"] = {
      title = "Stommeln",
      t_now = "Pulheim",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055479",
          },
        },
        { 
          pub_year = 1931,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055480",
          },
        },
      },
    },
    ["4907"] = {
      title = "Hitdorf",
      t_now = "Leverkusen",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055481",
          },
        },
      },
    },
    ["4908"] = {
      title = "Burscheid",
      editions = { 
        { 
          pub_year = 1909,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055483",
          },
        },
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055482",
          },
        },
      },
    },
    ["4909"] = {
      title = "Kürten",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055484",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055485",
          },
        },
      },
    },
    ["4910"] = {
      title = "Lindlar",
      editions = { 
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055486",
          },
        },
      },
    },
    ["4911"] = {
      title = "Gummersbach",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055487",
          },
        },
      },
    },
    ["4912"] = {
      title = "Drolshagen",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055488",
          },
        },
      },
    },
    ["4913"] = {
      title = "Olpe",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055489",
          },
        },
      },
    },
    ["4914"] = {
      title = "Kirchhundem",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055490",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055491",
          },
        },
      },
    },
    ["4915"] = {
      title = "Wingeshausen",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055492",
          },
        },
      },
    },
    ["4916"] = {
      title = "Berleburg",
      t_now = "Bad Berleburg",
      editions = { 
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055493",
          },
        },
      },
    },
    ["4917"] = {
      title = "Battenberg",
      t_now = "Battenberg an der Eder",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055494",
          },
        },
        { 
          pub_year = 1929,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055495",
          },
        },
      },
    },
    ["4918"] = {
      title = "Frankenberg",
      t_now = "Frankenberg an der Eder",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055496",
          },
        },
      },
    },
    ["4919"] = {
      title = "Frankenau",
    },
    ["4920"] = {
      title = "Armsfeld",
    },
    ["4921"] = {
      title = "Borken in Hessen",
    },
    ["4922"] = {
      title = "Homberg an der Efze",
    },
    ["4923"] = {
      title = "Altmorschen",
    },
    ["4924"] = {
      title = "Seifertshausen",
    },
    ["4925"] = {
      title = "Sontra",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055498",
          },
        },
      },
    },
    ["4926"] = {
      title = "Herleshausen",
      editions = { 
        { 
          pub_year = 1870,
          rec_year = 1854,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055499",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055500",
          },
        },
      },
    },
    ["4927"] = {
      title = "Creuzburg in Thüringen",
      t_now = "Creuzburg",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1854,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055501",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055502",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055505",
          },
        },
      },
    },
    ["4928"] = {
      title = "Mihla",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1854,
          sheet_title = "Berka",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015070",
          },
        },
        { 
          pub_year = 1904,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055504",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055506",
          },
        },
      },
    },
    ["4929"] = {
      title = "Großenbehringen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055507",
          },
        },
      },
    },
    ["4930"] = {
      title = "Gräfentonna",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055508",
          },
        },
      },
    },
    ["4931"] = {
      title = "Walschleben",
      editions = { 
        { 
          pub_year = 1922,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055510",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055509",
          },
        },
      },
    },
    ["4932"] = {
      title = "Stotternheim",
      editions = { 
        { 
          pub_year = 1922,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055512",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055511",
          },
        },
      },
    },
    ["4933"] = {
      title = "Neumark in Thüringen",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055514",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055513",
          },
        },
      },
    },
    ["4934"] = {
      title = "Buttelstedt",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055515",
          },
        },
      },
    },
    ["4935"] = {
      title = "Apolda",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055516",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055517",
          },
        },
      },
    },
    ["4936"] = {
      title = "Camburg",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055518",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055519",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055520",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055521",
          },
        },
      },
    },
    ["4937"] = {
      title = "Osterfeld",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055522",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055523",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055524",
          },
        },
      },
    },
    ["4938"] = {
      title = "Zeitz",
      editions = { 
        { 
          pub_year = 1872,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055525",
          },
        },
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055526",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055527",
          },
        },
      },
    },
    ["4939"] = {
      title = "Meuselwitz",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055528",
          },
        },
      },
    },
    ["4940"] = {
      title = "Regis",
      t_now = "Regis-Breitingen",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055529",
          },
        },
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055530",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          sheet_title = "Regis (Sächs.) - Rositz (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055531",
          },
        },
        { 
          pub_year = 1932,
          rec_office = "Königreich Sachsen",
          sheet_title = "Regis-Breitingen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055532",
          },
        },
      },
    },
    ["4941"] = {
      title = "Frohburg",
      editions = { 
        { 
          pub_year = 1874,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055533",
          },
        },
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055534",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055535",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          sheet_title = "Frohburg (Sächs.) - Bocka (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055536",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          sheet_title = "Frohburg (Sächs.) - Bocka (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055537",
          },
        },
        { 
          pub_year = 1933,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055538",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055539",
          },
        },
      },
    },
    ["4942"] = {
      title = "Rochlitz",
      editions = { 
        { 
          pub_year = 1874,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055540",
          },
        },
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055541",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055542",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055543",
          },
        },
        { 
          pub_year = 1933,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055544",
          },
        },
      },
    },
    ["4943"] = {
      title = "Geringswalde",
      editions = { 
        { 
          pub_year = 1874,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055545",
          },
        },
        { 
          pub_year = 1889,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055546",
          },
        },
        { 
          pub_year = 1900,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055547",
          },
        },
        { 
          pub_year = 1907,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055548",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055549",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055550",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055551",
          },
        },
        { 
          pub_year = 1943,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055552",
          },
        },
      },
    },
    ["4944"] = {
      title = "Waldheim",
      editions = { 
        { 
          pub_year = 1874,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055553",
          },
        },
        { 
          pub_year = 1889,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055554",
          },
        },
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055555",
          },
        },
        { 
          pub_year = 1907,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055556",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055557",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055558",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055559",
          },
        },
      },
    },
    ["4945"] = {
      title = "Roßwein",
      editions = { 
        { 
          pub_year = 1874,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055560",
          },
        },
        { 
          pub_year = 1889,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055561",
          },
        },
        { 
          pub_year = 1907,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055562",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055563",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055564",
          },
        },
      },
    },
    ["4946"] = {
      title = "Deutschenbora",
      t_now = "Mohorn",
      editions = { 
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Tanneberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055565",
          },
        },
        { 
          pub_year = 1898,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Tanneberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055566",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055567",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055568",
          },
        },
        { 
          pub_year = 1932,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055569",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055570",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_title = "Mohorn",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055571",
          },
        },
      },
    },
    ["4947"] = {
      title = "Wilsdruff",
      editions = { 
        { 
          pub_year = 1890,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055572",
          },
        },
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055573",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055574",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055575",
          },
        },
        { 
          pub_year = 1925,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055576",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055577",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1909,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055578",
          },
        },
      },
    },
    ["4948"] = {
      title = "Dresden",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055579",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055580",
          },
        },
        { 
          pub_year = 1925,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055581",
          },
        },
        { 
          pub_year = 1930,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055582",
          },
        },
      },
    },
    ["4949"] = {
      title = "Pillnitz",
      t_now = "Arnsdorf",
      editions = { 
        { 
          pub_year = 1908,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055583",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055584",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055585",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055586",
          },
        },
      },
    },
    ["4950"] = {
      title = "Stolpen",
      editions = { 
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055587",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055588",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055589",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055590",
          },
        },
      },
    },
    ["4951"] = {
      title = "Neustadt",
      editions = { 
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055591",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055592",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055593",
          },
        },
        { 
          pub_year = 1917,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055594",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055595",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1902,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055596",
          },
        },
      },
    },
    ["4952"] = {
      title = "Schirgiswalde",
      editions = { 
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055597",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055598",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055599",
          },
        },
        { 
          pub_year = 1944,
          rec_year = 1900,
          rec_office = "Königreich Sachsen",
          sheet_title = "Schluckenau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055600",
          },
        },
      },
    },
    ["4953"] = {
      title = "Neusalza",
      t_now = "Ebersbach",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055601",
          },
        },
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055602",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055603",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055604",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055605",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          sheet_title = "Neusalza-Spremberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055606",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          sheet_title = "Neusalza-Spremberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055607",
          },
        },
      },
    },
    ["4954"] = {
      title = "Löbau",
      t_now = "Löbau in Sachsen",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055608",
          },
        },
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055609",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055610",
          },
        },
        { 
          pub_year = 1933,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055611",
          },
        },
        { 
          pub_year = 1944,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055612",
          },
        },
      },
    },
    ["4955"] = {
      title = "Ostritz",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055613",
          },
        },
        { 
          pub_year = 1891,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055614",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          sheet_title = "Ostritz (Sächs.) - Nickrisch (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055615",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          sheet_title = "Ostritz (Sächs.) - Nickrisch (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055616",
          },
        },
        { 
          pub_year = 1942,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055617",
          },
        },
      },
    },
    ["4956"] = {
      title = "Trattlau (Sächs.) - Seidenberg (Preuß.)",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Trattlau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055618",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055619",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055620",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          sheet_title = "Seidenberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055621",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          sheet_title = "Seidenberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055622",
          },
        },
      },
    },
    ["4957"] = {
      title = "Marklissa",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055623",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055624",
          },
        },
      },
    },
    ["4958"] = {
      title = "Greiffenberg in Niederschlesien",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055625",
          },
        },
      },
    },
    ["4959"] = {
      title = "Liebenthal",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055626",
          },
        },
      },
    },
    ["4960"] = {
      title = "Lähn",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055627",
          },
        },
      },
    },
    ["4961"] = {
      title = "Schönau an der Katzbach",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055628",
          },
        },
      },
    },
    ["4962"] = {
      title = "Kolbnitz",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055629",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055630",
          },
        },
      },
    },
    ["4963"] = {
      title = "Jauer",
      editions = { 
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055631",
          },
        },
      },
    },
    ["4964"] = {
      title = "Kuhnern",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055632",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055633",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055635",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055634",
          },
        },
      },
    },
    ["4965"] = {
      title = "Kostenblut",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055636",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055637",
          },
        },
      },
    },
    ["4966"] = {
      title = "Kanth",
      editions = { 
        { 
          pub_year = 1889,
          rec_year = 1887,
          sheet_title = "Canth",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055638",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055639",
          },
        },
      },
    },
    ["4967"] = {
      title = "Schmolz",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055640",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055641",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055642",
          },
        },
      },
    },
    ["4968"] = {
      title = "Breslau",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055643",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055644",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055645",
          },
        },
      },
    },
    ["4969"] = {
      title = "Groß Nädlitz",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055646",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055647",
          },
        },
        { 
          pub_year = 1938,
          sheet_title = "Nädlingen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055648",
          },
        },
      },
    },
    ["4970"] = {
      title = "Markstädt",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055649",
          },
        },
      },
    },
    ["4971"] = {
      title = "Lampersdorf",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055650",
          },
        },
      },
    },
    ["4972"] = {
      title = "Namslau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055651",
          },
        },
      },
    },
    ["4973"] = {
      title = "Noldau",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055652",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055653",
          },
        },
      },
    },
    ["4974"] = {
      title = "Konstadt",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055654",
          },
        },
      },
    },
    ["4975"] = {
      title = "Schönwald",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055655",
          },
        },
      },
    },
    ["4976"] = {
      title = "Landsberg OS",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055656",
          },
        },
      },
    },
    ["4977"] = {
      title = "Gollor-Mühle",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055657",
          },
        },
      },
    },
    ["5001"] = {
      title = "Gangelt",
      t_now = "Geilenkirchen (Anhang)",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055658",
          },
        },
      },
    },
    ["5002"] = {
      title = "Geilenkirchen",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055659",
          },
        },
      },
    },
    ["5003"] = {
      title = "Linnich",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055660",
          },
        },
      },
    },
    ["5004"] = {
      title = "Jülich",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055661",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055662",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055663",
          },
        },
      },
    },
    ["5005"] = {
      title = "Bergheim",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055664",
          },
        },
      },
    },
    ["5006"] = {
      title = "Frechen",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055665",
          },
        },
      },
    },
    ["5007"] = {
      title = "Köln",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055666",
          },
        },
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055667",
          },
        },
      },
    },
    ["5008"] = {
      title = "Mülheim am Rhein",
      t_now = "Köln-Mülheim",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055668",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055669",
          },
        },
      },
    },
    ["5009"] = {
      title = "Overath",
      editions = { 
        { 
          pub_year = 1948,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055670",
          },
        },
      },
    },
    ["5010"] = {
      title = "Engelskirchen",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055671",
          },
        },
      },
    },
    ["5011"] = {
      title = "Wiehl",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055672",
          },
        },
      },
    },
    ["5012"] = {
      title = "Eckenhagen",
      t_now = "Reichshof",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055673",
          },
        },
      },
    },
    ["5013"] = {
      title = "Wenden",
      t_now = "Kreuztal",
      editions = { 
        { 
          pub_year = 1898,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055674",
          },
        },
      },
    },
    ["5014"] = {
      title = "Hilchenbach",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055675",
          },
        },
      },
    },
    ["5015"] = {
      title = "Erndtebrück",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055676",
          },
        },
      },
    },
    ["5016"] = {
      title = "Laasphe",
      t_now = "Bad Laasphe",
      editions = { 
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055677",
          },
        },
      },
    },
    ["5017"] = {
      title = "Biedenkopf",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055678",
          },
        },
      },
    },
    ["5018"] = {
      title = "Wetter in Hessen-Nassau",
      t_now = "Wetter in Hessen",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055679",
          },
        },
      },
    },
    ["5019"] = {
      title = "Gemünden in Hessen-Nassau",
      t_now = "Gemünden an der Wohra",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055680",
          },
        },
      },
    },
    ["5020"] = {
      title = "Gilserberg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055681",
          },
        },
      },
    },
    ["5021"] = {
      title = "Ziegenhain",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055682",
          },
        },
      },
    },
    ["5022"] = {
      title = "Schwarzenborn",
    },
    ["5023"] = {
      title = "Ludwigseck",
    },
    ["5024"] = {
      title = "Rotenburg an der Fulda",
    },
    ["5025"] = {
      title = "Hönebach",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055684",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055685",
          },
        },
      },
    },
    ["5026"] = {
      title = "Berka an der Werra",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1857,
          sheet_title = "Gerstungen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055686",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055687",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055688",
          },
        },
      },
    },
    ["5027"] = {
      title = "Eisenach (West)",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1857,
          sheet_title = "Eisenach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055689",
          },
        },
        { 
          pub_year = 1924,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055690",
          },
        },
      },
    },
    ["5028"] = {
      title = "Eisenach (Ost)",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1856,
          sheet_title = "Wutha",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055691",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055692",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055693",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055694",
          },
        },
      },
    },
    ["5029"] = {
      title = "Fröttstädt",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055696",
          },
        },
        { 
          pub_year = 1936,
          sheet_title = "Eisenach (West)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055697",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055695",
          },
        },
      },
    },
    ["5030"] = {
      title = "Gotha",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1855,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055698",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055699",
          },
        },
      },
    },
    ["5031"] = {
      title = "Neudietendorf",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1853,
          sheet_title = "Neu-Dietendorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055700",
          },
        },
        { 
          pub_year = 1922,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055701",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055702",
          },
        },
      },
    },
    ["5032"] = {
      title = "Erfurt",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1853,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055703",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055704",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055705",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055706",
          },
        },
      },
    },
    ["5033"] = {
      title = "Weimar",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1853,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055707",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055708",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055709",
          },
        },
      },
    },
    ["5034"] = {
      title = "Magdala",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055711",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055710",
          },
        },
      },
    },
    ["5035"] = {
      title = "Jena",
      editions = { 
        { 
          pub_year = 1928,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055713",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055712",
          },
        },
      },
    },
    ["5036"] = {
      title = "Bürgel",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055714",
          },
        },
        { 
          pub_year = 1915,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055715",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055716",
          },
        },
      },
    },
    ["5037"] = {
      title = "Eisenberg",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055717",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055718",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055719",
          },
        },
      },
    },
    ["5038"] = {
      title = "Langenberg",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1854,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055720",
          },
        },
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055721",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055722",
          },
        },
        { 
          pub_year = 1928,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055723",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055724",
          },
        },
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055725",
          },
        },
      },
    },
    ["5039"] = {
      title = "Kayna",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055727",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055726",
          },
        },
      },
    },
    ["5040"] = {
      title = "Altenburg",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055728",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055729",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055730",
          },
        },
      },
    },
    ["5041"] = {
      title = "Langenleuba",
      editions = { 
        { 
          pub_year = 1874,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055731",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055732",
          },
        },
        { 
          pub_year = 1932,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055733",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055734",
          },
        },
      },
    },
    ["5042"] = {
      title = "Penig",
      t_now = "Burgstädt",
      editions = { 
        { 
          pub_year = 1874,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055735",
          },
        },
        { 
          pub_year = 1889,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055736",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055737",
          },
        },
        { 
          pub_year = 1932,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055738",
          },
        },
      },
    },
    ["5043"] = {
      title = "Mittweida",
      editions = { 
        { 
          pub_year = 1874,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055739",
          },
        },
        { 
          pub_year = 1886,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055740",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055741",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055742",
          },
        },
        { 
          pub_year = 1927,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055743",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055744",
          },
        },
      },
    },
    ["5044"] = {
      title = "Frankenberg",
      editions = { 
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055745",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055746",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055747",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055748",
          },
        },
      },
    },
    ["5045"] = {
      title = "Langhennersdorf",
      editions = { 
        { 
          pub_year = 1891,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055749",
          },
        },
        { 
          pub_year = 1908,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055750",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055751",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055752",
          },
        },
        { 
          pub_year = 1924,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055753",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055754",
          },
        },
      },
    },
    ["5046"] = {
      title = "Freiberg",
      editions = { 
        { 
          pub_year = 1898,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055755",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055756",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055757",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055758",
          },
        },
      },
    },
    ["5047"] = {
      title = "Tharandt",
      t_now = "Freital",
      editions = { 
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055759",
          },
        },
        { 
          pub_year = 1898,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055760",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055761",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055762",
          },
        },
        { 
          pub_year = 1917,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055763",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055764",
          },
        },
        { 
          pub_year = 1925,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055765",
          },
        },
        { 
          pub_year = 1931,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055766",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055767",
          },
        },
      },
    },
    ["5048"] = {
      title = "Kreischa",
      editions = { 
        { 
          pub_year = 1891,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055768",
          },
        },
        { 
          pub_year = 1908,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055769",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055770",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055771",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055772",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055773",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055774",
          },
        },
      },
    },
    ["5049"] = {
      title = "Pirna",
      editions = { 
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055775",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055776",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055777",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055778",
          },
        },
        { 
          pub_year = 1925,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055779",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1930,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055780",
          },
        },
      },
    },
    ["5050"] = {
      title = "Königstein",
      editions = { 
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055781",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055782",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055783",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055784",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055785",
          },
        },
        { 
          pub_year = 1944,
          rec_year = 1931,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055786",
          },
        },
      },
    },
    ["5051"] = {
      title = "Sebnitz",
      editions = { 
        { 
          pub_year = 1888,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055787",
          },
        },
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055788",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055789",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055790",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055791",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055792",
          },
        },
      },
    },
    ["5052"] = {
      title = "Hinterhermsdorf",
      editions = { 
        { 
          pub_year = 1882,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055793",
          },
        },
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055794",
          },
        },
        { 
          pub_year = 1902,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055795",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055796",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1931,
          rec_office = "Königreich Sachsen",
          sheet_title = "Großschönau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055797",
          },
        },
      },
    },
    ["5053"] = {
      title = "Seifhennersdorf",
      t_now = "Neugersdorf",
      editions = { 
        { 
          pub_year = 1882,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055798",
          },
        },
        { 
          pub_year = 1891,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055799",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055800",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055801",
          },
        },
        { 
          pub_year = 1930,
          rec_office = "Königreich Sachsen",
          sheet_title = "Neugersdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055802",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          sheet_title = "Neugersdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055803",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1899,
          rec_office = "Königreich Sachsen",
          sheet_title = "Warnsdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055804",
          },
        },
      },
    },
    ["5054"] = {
      title = "Zittau (Nord)",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Oderwitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055805",
          },
        },
        { 
          pub_year = 1891,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Oderwitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055806",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          sheet_title = "Oderwitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055807",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055809",
          },
        },
        { 
          pub_year = 1931,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055808",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1928,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055810",
          },
        },
      },
    },
    ["5055"] = {
      title = "Hirschfelde",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055811",
          },
        },
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          sheet_title = "Hirschfelde und Weigsdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055812",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055813",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055814",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055815",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055816",
          },
        },
      },
    },
    ["5056"] = {
      title = "Weigsdorf",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055817",
          },
        },
        { 
          pub_year = 1927,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055818",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055819",
          },
        },
      },
    },
    ["5057"] = {
      title = "Neustadt an der Tafelfichte",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055820",
          },
        },
      },
    },
    ["5058"] = {
      title = "Friedeberg im Isergebirge",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055821",
          },
        },
      },
    },
    ["5059"] = {
      title = "Altkemnitz",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055822",
          },
        },
      },
    },
    ["5060"] = {
      title = "Hirschberg im Riesengebirge",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055823",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055823",
          },
        },
      },
    },
    ["5061"] = {
      title = "Kauffung",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055825",
          },
        },
      },
    },
    ["5062"] = {
      title = "Bolkenhain",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055826",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055827",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055828",
          },
        },
      },
    },
    ["5063"] = {
      title = "Hohenfriedeberg",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055829",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055830",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055831",
          },
        },
      },
    },
    ["5064"] = {
      title = "Striegau",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055832",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055833",
          },
        },
      },
    },
    ["5065"] = {
      title = "Ingramsdorf",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055834",
          },
        },
      },
    },
    ["5066"] = {
      title = "Rosenborn",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          sheet_title = "Mörschelwitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055835",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055836",
          },
        },
      },
    },
    ["5067"] = {
      title = "Rößlingen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055837",
          },
        },
      },
    },
    ["5068"] = {
      title = "Rothbach",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055838",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055839",
          },
        },
      },
    },
    ["5069"] = {
      title = "Ohlau",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055840",
          },
        },
      },
    },
    ["5070"] = {
      title = "Peisterwitz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055841",
          },
        },
      },
    },
    ["5071"] = {
      title = "Leubusch",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055842",
          },
        },
      },
    },
    ["5072"] = {
      title = "Schwirz",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          sheet_title = "Schwirtz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055843",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055844",
          },
        },
      },
    },
    ["5073"] = {
      title = "Carlsruhe in Schlesien",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055845",
          },
        },
        { 
          pub_year = 1937,
          sheet_title = "Carlsruhe in Oberschlesien",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055846",
          },
        },
      },
    },
    ["5074"] = {
      title = "Bodland",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055847",
          },
        },
      },
    },
    ["5075"] = {
      title = "Kreuzburg in Schlesien",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055848",
          },
        },
      },
    },
    ["5076"] = {
      title = "Boroschau",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055850",
          },
        },
        { 
          pub_year = 1883,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055849",
          },
        },
      },
    },
    ["5077"] = {
      title = "Grunsruh",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055851",
          },
        },
      },
    },
    ["5101"] = {
      title = "Herzogenrath",
      t_now = "Herzogenrath (Anhang)",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055852",
          },
        },
      },
    },
    ["5102"] = {
      title = "Herzogenrath",
    },
    ["5103"] = {
      title = "Eschweiler",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055853",
          },
        },
      },
    },
    ["5104"] = {
      title = "Düren",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055854",
          },
        },
      },
    },
    ["5105"] = {
      title = "Buir",
      t_now = "Nörvenich",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055855",
          },
        },
      },
    },
    ["5106"] = {
      title = "Kerpen",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055856",
          },
        },
      },
    },
    ["5107"] = {
      title = "Brühl",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055857",
          },
        },
      },
    },
    ["5108"] = {
      title = "Wahn im Rheinland",
      t_now = "Köln-Porz",
      editions = { 
        { 
          pub_year = 1948,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055858",
          },
        },
      },
    },
    ["5109"] = {
      title = "Wahlscheid",
      t_now = "Lohmar",
      editions = { 
        { 
          pub_year = 1948,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055859",
          },
        },
      },
    },
    ["5110"] = {
      title = "Ruppichteroth",
      editions = { 
        { 
          pub_year = 1928,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055860",
          },
        },
      },
    },
    ["5111"] = {
      title = "Waldbröl",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055861",
          },
        },
      },
    },
    ["5112"] = {
      title = "Morsbach",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055862",
          },
        },
      },
    },
    ["5113"] = {
      title = "Freudenberg",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055863",
          },
        },
      },
    },
    ["5114"] = {
      title = "Siegen",
      editions = { 
        { 
          pub_year = 1899,
          rec_year = 1897,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055864",
          },
        },
      },
    },
    ["5115"] = {
      title = "Rittershausen",
      t_now = "Ewersbach",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055865",
          },
        },
        { 
          pub_year = 1899,
          rec_year = 1897,
          sheet_title = "Bergebersbach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055866",
          },
        },
      },
    },
    ["5116"] = {
      title = "Eibelshausen",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055867",
          },
        },
      },
    },
    ["5117"] = {
      title = "Buchenau",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055868",
          },
        },
      },
    },
    ["5118"] = {
      title = "Marburg",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055869",
          },
        },
      },
    },
    ["5119"] = {
      title = "Kirchhain in Hessen-Nassau",
      t_now = "Kirchhain",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055870",
          },
        },
      },
    },
    ["5120"] = {
      title = "Neustadt in Hessen",
    },
    ["5121"] = {
      title = "Schrecksbach",
    },
    ["5122"] = {
      title = "Neukirchen in Hessen-Nassau",
      t_now = "Neukirchen",
      editions = { 
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055871",
          },
        },
      },
    },
    ["5123"] = {
      title = "Niederaula",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055872",
          },
        },
      },
    },
    ["5124"] = {
      title = "Bad Hersfeld",
    },
    ["5125"] = {
      title = "Friedewald",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055874",
          },
        },
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055873",
          },
        },
      },
    },
    ["5126"] = {
      title = "Vacha",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055875",
          },
        },
      },
    },
    ["5127"] = {
      title = "Salzungen",
      t_now = "Bad Salzungen",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055877",
          },
        },
        { 
          pub_year = 1936,
          sheet_title = "Bad Salzungen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055876",
          },
        },
      },
    },
    ["5128"] = {
      title = "Ruhla",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055878",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055879",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055880",
          },
        },
      },
    },
    ["5129"] = {
      title = "Waltershausen; Friedrichroda",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055881",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055882",
          },
        },
      },
    },
    ["5130"] = {
      title = "Ohrdruf",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055884",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055883",
          },
        },
      },
    },
    ["5131"] = {
      title = "Arnstadt",
      editions = { 
        { 
          pub_year = 1920,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055886",
          },
        },
        { 
          pub_year = 1945,
          rec_year = 1903,
          sheet_title = "Marlishausen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055887",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055885",
          },
        },
      },
    },
    ["5132"] = {
      title = "Marlishausen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055888",
          },
        },
      },
    },
    ["5133"] = {
      title = "Kranichfeld",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1855,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055889",
          },
        },
        { 
          pub_year = 1945,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055890",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055891",
          },
        },
      },
    },
    ["5134"] = {
      title = "Blankenhain",
      editions = { 
        { 
          pub_year = 1945,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055893",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055892",
          },
        },
      },
    },
    ["5135"] = {
      title = "Kahla",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055894",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055895",
          },
        },
      },
    },
    ["5136"] = {
      title = "Roda",
      t_now = "Stadtroda",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1855,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055896",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055897",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055898",
          },
        },
        { 
          pub_year = 1938,
          sheet_title = "Stadtroda",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055899",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1903,
          sheet_title = "Kahla",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055900",
          },
        },
      },
    },
    ["5137"] = {
      title = "Münchenbernsdorf",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055901",
          },
        },
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055902",
          },
        },
      },
    },
    ["5138"] = {
      title = "Gera",
      editions = { 
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Liebschwitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055903",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_title = "Liebschwitz (Sächs.) - Gera (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055904",
          },
        },
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055906",
          },
        },
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055905",
          },
        },
      },
    },
    ["5139"] = {
      title = "Rückersdorf (Sächs.) - Ronneburg (Preuß.)",
      t_now = "Ronneburg",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Rückersdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055907",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Rückersdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055908",
          },
        },
        { 
          pub_year = 1918,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055909",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055910",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          sheet_title = "Ronneburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055911",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1906,
          rec_office = "Königreich Sachsen",
          sheet_title = "Ronneburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055912",
          },
        },
      },
    },
    ["5140"] = {
      title = "Meerane",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055913",
          },
        },
        { 
          pub_year = 1896,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055914",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          sheet_title = "Meerane (Sächs.) - Gößnitz (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055915",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          sheet_title = "Meerane (Sächs.) - Gößnitz (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055916",
          },
        },
        { 
          pub_year = 1931,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055917",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055918",
          },
        },
      },
    },
    ["5141"] = {
      title = "Glauchau",
      editions = { 
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055919",
          },
        },
        { 
          pub_year = 1908,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055920",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_title = "Glauchau (Sächs.) - Niederwiera (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055921",
          },
        },
        { 
          pub_year = 1917,
          rec_office = "Königreich Sachsen",
          sheet_title = "Glauchau (Sächs.) - Niederwiera (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055922",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055923",
          },
        },
        { 
          pub_year = 1942,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055924",
          },
        },
      },
    },
    ["5142"] = {
      title = "Hohenstein",
      t_now = "Hohenstein-Ernstthal",
      editions = { 
        { 
          pub_year = 1889,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055925",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055926",
          },
        },
        { 
          pub_year = 1900,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055927",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055928",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055929",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055930",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055931",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          sheet_title = "Hohenstein-Ernstthal",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055932",
          },
        },
      },
    },
    ["5143"] = {
      title = "Chemnitz",
      editions = { 
        { 
          pub_year = 1886,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055933",
          },
        },
        { 
          pub_year = 1901,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055934",
          },
        },
        { 
          pub_year = 1905,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055935",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055936",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055937",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055938",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055939",
          },
        },
      },
    },
    ["5144"] = {
      title = "Augustusburg",
      editions = { 
        { 
          pub_year = 1886,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Schellenberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055941",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055942",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055943",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055944",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055945",
          },
        },
        { 
          pub_year = 1942,
          rec_office = "Königreich Sachsen",
          sheet_title = "Flöha",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055946",
          },
        },
        { 
          pub_year = 1924,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055940",
          },
        },
      },
    },
    ["5145"] = {
      title = "Oederan",
      editions = { 
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Brand",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055947",
          },
        },
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Brand",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055948",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Brand",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055949",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055950",
          },
        },
        { 
          pub_year = 1924,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055951",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055952",
          },
        },
      },
    },
    ["5146"] = {
      title = "Lichtenberg",
      editions = { 
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055953",
          },
        },
        { 
          pub_year = 1917,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055954",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055955",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055956",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055957",
          },
        },
      },
    },
    ["5147"] = {
      title = "Frauenstein",
      editions = { 
        { 
          pub_year = 1904,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Dippoldiswalde",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055958",
          },
        },
        { 
          pub_year = 1914,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055959",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055960",
          },
        },
      },
    },
    ["5148"] = {
      title = "Dippoldiswalde",
      editions = { 
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Glashütte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055961",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055962",
          },
        },
        { 
          pub_year = 1940,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055963",
          },
        },
      },
    },
    ["5149"] = {
      title = "Berggießhübel",
      editions = { 
        { 
          pub_year = 1890,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055964",
          },
        },
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055965",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055966",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055967",
          },
        },
        { 
          pub_year = 1925,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055968",
          },
        },
        { 
          pub_year = 1943,
          rec_office = "Königreich Sachsen",
          sheet_title = "Bad Gottleuba",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055969",
          },
        },
      },
    },
    ["5150"] = {
      title = "Rosenthal",
      editions = { 
        { 
          pub_year = 1888,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055970",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055971",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055972",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055973",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055974",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1933,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055975",
          },
        },
      },
    },
    ["5151"] = {
      title = "Schöna",
      t_now = "Rosendorf",
      editions = { 
        { 
          pub_year = 1887,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055976",
          },
        },
        { 
          pub_year = 1905,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055977",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055978",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055979",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055980",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055981",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1934,
          rec_office = "Königreich Sachsen",
          sheet_title = "Rosendorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055982",
          },
        },
      },
    },
    ["5152"] = {
      title = "Am Raumberg",
      t_now = "Hinterhermsdorf-Kreibitz",
      editions = { 
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055983",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055984",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1931,
          rec_office = "Königreich Sachsen",
          sheet_title = "Böhmisch-Kamnitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055985",
          },
        },
      },
    },
    ["5153"] = {
      title = "Waltersdorf",
      editions = { 
        { 
          pub_year = 1882,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055986",
          },
        },
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055987",
          },
        },
        { 
          pub_year = 1905,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055988",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055989",
          },
        },
      },
    },
    ["5154"] = {
      title = "Zittau",
      t_now = "Zittau (Süd)",
      editions = { 
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055990",
          },
        },
        { 
          pub_year = 1894,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055991",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055992",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055993",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055994",
          },
        },
        { 
          pub_year = 1933,
          rec_office = "Königreich Sachsen",
          sheet_title = "Zittau (Süd)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055995",
          },
        },
      },
    },
    ["5155"] = {
      title = "Oberullersdorf und Markersdorf",
      t_now = "Grottau",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Oberullersdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055996",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055997",
          },
        },
        { 
          pub_year = 1933,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055998",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71055999",
          },
        },
      },
    },
    ["5156"] = {
      title = "Markersdorf",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056000",
          },
        },
      },
    },
    ["5157"] = {
      title = "Haindorf",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056001",
          },
        },
      },
    },
    ["5158"] = {
      title = "Bad Flinsberg",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056002",
          },
        },
      },
    },
    ["5159"] = {
      title = "Schreiberhau",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056003",
          },
        },
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056003",
          },
        },
      },
    },
    ["5160"] = {
      title = "Bad Warmbrunn",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056005",
          },
        },
      },
    },
    ["5161"] = {
      title = "Kupferberg im Riesengebirge",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056006",
          },
        },
      },
    },
    ["5162"] = {
      title = "Ruhbank",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056007",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056008",
          },
        },
      },
    },
    ["5163"] = {
      title = "Freiburg in Schlesien",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056009",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056010",
          },
        },
        { 
          pub_year = 1934,
          sheet_title = "Freiburg in Niederschlesien",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056011",
          },
        },
      },
    },
    ["5164"] = {
      title = "Schweidnitz",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056012",
          },
        },
      },
    },
    ["5165"] = {
      title = "Weizenrodau",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056013",
          },
        },
      },
    },
    ["5166"] = {
      title = "Zobten",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056014",
          },
        },
      },
    },
    ["5167"] = {
      title = "Zobten am Berge",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056016",
          },
        },
        { 
          pub_year = 1938,
          sheet_title = "Jordansmühl",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056015",
          },
        },
      },
    },
    ["5168"] = {
      title = "Wäldchen",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056017",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056018",
          },
        },
      },
    },
    ["5169"] = {
      title = "Wansen",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056019",
          },
        },
      },
    },
    ["5170"] = {
      title = "Brieg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056020",
          },
        },
      },
    },
    ["5171"] = {
      title = "Stoberau",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056021",
          },
        },
      },
    },
    ["5172"] = {
      title = "Alt Poppelau",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056022",
          },
        },
      },
    },
    ["5173"] = {
      title = "Kupp",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056023",
          },
        },
      },
    },
    ["5174"] = {
      title = "Alt Baudendorf",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056024",
          },
        },
      },
    },
    ["5175"] = {
      title = "Sausenberg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056025",
          },
        },
      },
    },
    ["5176"] = {
      title = "Rosenberg in Oberschlesien",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056026",
          },
        },
      },
    },
    ["5177"] = {
      title = "Gnadenkirch",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056027",
          },
        },
      },
    },
    ["5178"] = {
      title = "Schlackenufer",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056028",
          },
        },
      },
    },
    ["5201"] = {
      title = "Aachen",
      t_now = "Aachen (Anhang)",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056029",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056030",
          },
        },
      },
    },
    ["5202"] = {
      title = "Aachen",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056031",
          },
        },
      },
    },
    ["5203"] = {
      title = "Stolberg",
      t_now = "Stolberg im Rheinland",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056032",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056033",
          },
        },
      },
    },
    ["5204"] = {
      title = "Lendersdorf",
      t_now = "Kreuzau",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056034",
          },
        },
      },
    },
    ["5205"] = {
      title = "Vettweiß",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056035",
          },
        },
      },
    },
    ["5206"] = {
      title = "Erp",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056036",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056037",
          },
        },
      },
    },
    ["5207"] = {
      title = "Sechtem",
      t_now = "Bornheim",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056038",
          },
        },
      },
    },
    ["5208"] = {
      title = "Bonn",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056039",
          },
        },
        { 
          pub_year = 1927,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056040",
          },
        },
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056041",
          },
        },
      },
    },
    ["5209"] = {
      title = "Siegburg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056042",
          },
        },
      },
    },
    ["5210"] = {
      title = "Eitorf",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056043",
          },
        },
        { 
          pub_year = 1901,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056043",
          },
        },
      },
    },
    ["5211"] = {
      title = "Weyerbusch",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056044",
          },
        },
      },
    },
    ["5212"] = {
      title = "Heimborn",
      t_now = "Wissen",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056045",
          },
        },
      },
    },
    ["5213"] = {
      title = "Langenbach",
      t_now = "Betzdorf",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056046",
          },
        },
        { 
          pub_year = 1901,
          rec_year = 1897,
          sheet_title = "Betzdorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056047",
          },
        },
      },
    },
    ["5214"] = {
      title = "Wildenstein",
      t_now = "Burbach",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056048",
          },
        },
      },
    },
    ["5215"] = {
      title = "Dillenburg",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015410",
          },
        },
        { 
          pub_year = 1900,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056049",
          },
        },
        { 
          pub_year = 1915,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056050",
          },
        },
      },
    },
    ["5216"] = {
      title = "Tringenstein",
      t_now = "Oberscheld",
      editions = { 
        { 
          pub_year = 1891,
          rec_year = 1889,
          sheet_title = "Ober-Scheld",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056051",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1889,
          sheet_title = "Oberscheld",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056052",
          },
        },
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056053",
          },
        },
      },
    },
    ["5217"] = {
      title = "Gladenbach",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056054",
          },
        },
      },
    },
    ["5218"] = {
      title = "Niederwalgern",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056055",
          },
        },
      },
    },
    ["5219"] = {
      title = "Amöneburg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056056",
          },
        },
      },
    },
    ["5220"] = {
      title = "Kirtorf",
    },
    ["5221"] = {
      title = "Alsfeld",
    },
    ["5222"] = {
      title = "Lingelbach",
      t_now = "Grebenau",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056057",
          },
        },
      },
    },
    ["5223"] = {
      title = "Queck (Breitenbach am Herzberge)",
      t_now = "Queck",
      editions = { 
        { 
          pub_year = 1926,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056058",
          },
        },
      },
    },
    ["5224"] = {
      title = "Eiterfeld",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056059",
          },
        },
      },
    },
    ["5225"] = {
      title = "Geisa",
      editions = { 
        { 
          pub_year = 1872,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056060",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056061",
          },
        },
        { 
          pub_year = 1953,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056062",
          },
        },
      },
    },
    ["5226"] = {
      title = "Stadtlengsfeld",
      editions = { 
        { 
          pub_year = 1944,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056063",
          },
        },
      },
    },
    ["5227"] = {
      title = "Immelborn",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056064",
          },
        },
        { 
          pub_year = 1944,
          rec_year = 1888,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056065",
          },
        },
      },
    },
    ["5228"] = {
      title = "Schmalkalden",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1856,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056066",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056067",
          },
        },
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056068",
          },
        },
      },
    },
    ["5229"] = {
      title = "Tambach-Dietharz",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1904,
          sheet_title = "Tambach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056069",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1904,
          sheet_title = "Tambach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056070",
          },
        },
        { 
          pub_year = 1954,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056071",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056072",
          },
        },
      },
    },
    ["5230"] = {
      title = "Gräfenroda",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056073",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056074",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056075",
          },
        },
      },
    },
    ["5231"] = {
      title = "Plaue in Thüringen",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1855,
          sheet_title = "Plaue",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056076",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056077",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056078",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056079",
          },
        },
      },
    },
    ["5232"] = {
      title = "Stadtilm",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056080",
          },
        },
      },
    },
    ["5233"] = {
      title = "Remda",
      editions = { 
        { 
          pub_year = 1945,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056082",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056081",
          },
        },
      },
    },
    ["5234"] = {
      title = "Rudolstadt",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1855,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056083",
          },
        },
        { 
          pub_year = 1924,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056084",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056085",
          },
        },
      },
    },
    ["5235"] = {
      title = "Orlamünde",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056086",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056087",
          },
        },
      },
    },
    ["5236"] = {
      title = "Neustadt an der Orla",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1855,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056088",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056089",
          },
        },
      },
    },
    ["5237"] = {
      title = "Triptis",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056090",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056091",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056092",
          },
        },
      },
    },
    ["5238"] = {
      title = "Weida",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1854,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056093",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056094",
          },
        },
      },
    },
    ["5239"] = {
      title = "Langenbernsdorf",
      editions = { 
        { 
          pub_year = 1899,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056095",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056096",
          },
        },
        { 
          pub_year = 1917,
          rec_office = "Königreich Sachsen",
          sheet_title = "Langenbernsdorf (Sächs.) - Berga an der Elster (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056097",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1906,
          sheet_title = "Weida",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056098",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          sheet_title = "Langenbernsdorf (Sächs.) - Berga an der Elster (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056099",
          },
        },
        { 
          pub_year = 1930,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056100",
          },
        },
        { 
          pub_year = 1942,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056101",
          },
        },
      },
    },
    ["5240"] = {
      title = "Zwickau",
      editions = { 
        { 
          pub_year = 1886,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056102",
          },
        },
        { 
          pub_year = 1908,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056103",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_title = "Zwickau (Sächs.) - Fraureuth (Nord) (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056104",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          sheet_title = "Zwickau (Sächs.) - Fraureuth (Nord) (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056105",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          sheet_title = "Zwickau (Sächs.) - Fraureuth (Nord) (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056106",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1907,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056107",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1907,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056108",
          },
        },
      },
    },
    ["5241"] = {
      title = "Lichtenstein",
      t_now = "Lichtenstein-Callnberg",
      editions = { 
        { 
          pub_year = 1886,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056109",
          },
        },
        { 
          pub_year = 1890,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056110",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056111",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056112",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056113",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          sheet_title = "Lichtenstein-Callnberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056114",
          },
        },
      },
    },
    ["5242"] = {
      title = "Stollberg",
      editions = { 
        { 
          pub_year = 1886,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056115",
          },
        },
        { 
          pub_year = 1890,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056116",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056117",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056118",
          },
        },
        { 
          pub_year = 1928,
          rec_office = "Königreich Sachsen",
          sheet_title = "Lichtenstein-Callnberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056119",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056120",
          },
        },
      },
    },
    ["5243"] = {
      title = "Burkhardtsdorf",
      t_now = "Thalheim",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056121",
          },
        },
        { 
          pub_year = 1886,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056122",
          },
        },
        { 
          pub_year = 1894,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056123",
          },
        },
        { 
          pub_year = 1905,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056124",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056125",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056126",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056127",
          },
        },
      },
    },
    ["5244"] = {
      title = "Zschopau",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056128",
          },
        },
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056129",
          },
        },
        { 
          pub_year = 1904,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056130",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056131",
          },
        },
        { 
          pub_year = 1931,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056132",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056133",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1912,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056134",
          },
        },
      },
    },
    ["5245"] = {
      title = "Lengefeld",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056135",
          },
        },
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056136",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056137",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056138",
          },
        },
      },
    },
    ["5246"] = {
      title = "Sayda",
      editions = { 
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056139",
          },
        },
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056140",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056141",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056142",
          },
        },
        { 
          pub_year = 1923,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056143",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056144",
          },
        },
      },
    },
    ["5247"] = {
      title = "Nassau",
      editions = { 
        { 
          pub_year = 1894,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056145",
          },
        },
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056146",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056147",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056148",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056149",
          },
        },
        { 
          pub_year = 1923,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056150",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056151",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056152",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1910,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056153",
          },
        },
      },
    },
    ["5248"] = {
      title = "Altenberg",
      editions = { 
        { 
          pub_year = 1894,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056154",
          },
        },
        { 
          pub_year = 1904,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056155",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056156",
          },
        },
        { 
          pub_year = 1917,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056157",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056158",
          },
        },
        { 
          pub_year = 1923,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056159",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056160",
          },
        },
      },
    },
    ["5249"] = {
      title = "Fürstenwalde",
      t_now = "Peterswald",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056161",
          },
        },
        { 
          pub_year = 1898,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056162",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056163",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056164",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056165",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1932,
          rec_office = "Königreich Sachsen",
          sheet_title = "Peterswald",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056166",
          },
        },
      },
    },
    ["5258"] = {
      title = "Polaun",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056167",
          },
        },
      },
    },
    ["5260"] = {
      title = "Krummhübel",
      editions = { 
        { 
          pub_year = 1911,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056168",
          },
        },
      },
    },
    ["5261"] = {
      title = "Schmiedeberg",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056169",
          },
        },
      },
    },
    ["5262"] = {
      title = "Landeshut",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056170",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056171",
          },
        },
      },
    },
    ["5263"] = {
      title = "Waldenburg in Niederschlesien",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056172",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056173",
          },
        },
      },
    },
    ["5264"] = {
      title = "Bad Charlottenbrunn",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056174",
          },
        },
      },
    },
    ["5265"] = {
      title = "Reichenbach im Eulengebirge",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056175",
          },
        },
      },
    },
    ["5266"] = {
      title = "Lauterbach in Schlesien",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056176",
          },
        },
      },
    },
    ["5267"] = {
      title = "Nimptsch",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056177",
          },
        },
      },
    },
    ["5268"] = {
      title = "Strehlen",
      editions = { 
        { 
          pub_year = 1932,
          sheet_title = "Marienau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056179",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056178",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056180",
          },
        },
      },
    },
    ["5269"] = {
      title = "Marienau",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056181",
          },
        },
      },
    },
    ["5270"] = {
      title = "Böhmischdorf",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056183",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056182",
          },
        },
      },
    },
    ["5271"] = {
      title = "Löwen",
      editions = { 
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056184",
          },
        },
      },
    },
    ["5272"] = {
      title = "Schurgast",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056185",
          },
        },
      },
    },
    ["5273"] = {
      title = "Döbern in Oberschlesien",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056186",
          },
        },
      },
    },
    ["5274"] = {
      title = "Königshuld",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056187",
          },
        },
      },
    },
    ["5275"] = {
      title = "Radau",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056188",
          },
        },
      },
    },
    ["5276"] = {
      title = "Guttentag",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056189",
          },
        },
      },
    },
    ["5277"] = {
      title = "Teichwalde",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056190",
          },
        },
      },
    },
    ["5278"] = {
      title = "Lissau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056191",
          },
        },
      },
    },
    ["5279"] = {
      title = "Ollschin",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056192",
          },
        },
      },
    },
    ["5301"] = {
      title = "Herbesthal",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056193",
          },
        },
      },
    },
    ["5302"] = {
      title = "Eupen",
      t_now = "Aussig",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056194",
          },
        },
      },
    },
    ["5303"] = {
      title = "Rötgen",
      t_now = "Roetgen",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056195",
          },
        },
        { 
          pub_year = 1910,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056196",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056197",
          },
        },
      },
    },
    ["5304"] = {
      title = "Nideggen",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056198",
          },
        },
      },
    },
    ["5305"] = {
      title = "Zülpich",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056199",
          },
        },
      },
    },
    ["5306"] = {
      title = "Euskirchen",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056200",
          },
        },
      },
    },
    ["5307"] = {
      title = "Rheinbach",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056201",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056202",
          },
        },
      },
    },
    ["5308"] = {
      title = "Bad Godesberg",
      t_now = "Bonn; Bad Godesberg",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056203",
          },
        },
      },
    },
    ["5309"] = {
      title = "Honnef-Königswinter",
      t_now = "Königswinter",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056204",
          },
        },
      },
    },
    ["5310"] = {
      title = "Asbach",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056206",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056205",
          },
        },
      },
    },
    ["5311"] = {
      title = "Altenkirchen im Westerwald",
      t_now = "Altenkirchen",
      editions = { 
        { 
          pub_year = 1946,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056207",
          },
        },
      },
    },
    ["5312"] = {
      title = "Hachenburg",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056209",
          },
        },
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056208",
          },
        },
      },
    },
    ["5313"] = {
      title = "Marienberg",
      t_now = "Bad Marienberg im Westerwald",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056210",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056211",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056212",
          },
        },
      },
    },
    ["5314"] = {
      title = "Rennerod",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056213",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056214",
          },
        },
      },
    },
    ["5315"] = {
      title = "Herborn",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056215",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056216",
          },
        },
      },
    },
    ["5316"] = {
      title = "Ballersbach",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056217",
          },
        },
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056218",
          },
        },
      },
    },
    ["5317"] = {
      title = "Rodheim an der Bieber",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056219",
          },
        },
      },
    },
    ["5318"] = {
      title = "Allendorf",
      t_now = "Allendorf an der Lumda",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056220",
          },
        },
      },
    },
    ["5319"] = {
      title = "Londorf",
    },
    ["5320"] = {
      title = "Burg-Gemünden",
    },
    ["5321"] = {
      title = "Storndorf",
    },
    ["5322"] = {
      title = "Lauterbach in Hessen",
    },
    ["5323"] = {
      title = "Salzschlirf",
      t_now = "Schlitz",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056222",
          },
        },
      },
    },
    ["5324"] = {
      title = "Hünfeld",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056223",
          },
        },
      },
    },
    ["5325"] = {
      title = "Spahl",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1857,
          sheet_title = "Neuswarts",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056224",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056225",
          },
        },
      },
    },
    ["5326"] = {
      title = "Tann",
      t_now = "Tann in der Rhön",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056226",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056227",
          },
        },
        { 
          pub_year = 1910,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056228",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056229",
          },
        },
      },
    },
    ["5327"] = {
      title = "Oepfershausen",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056231",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056230",
          },
        },
      },
    },
    ["5328"] = {
      title = "Wasungen",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056232",
          },
        },
        { 
          pub_year = 1945,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056233",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056234",
          },
        },
      },
    },
    ["5329"] = {
      title = "Zella-Mehlis",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1856,
          sheet_title = "Schwarza",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056235",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1903,
          sheet_title = "Mehlis",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056236",
          },
        },
        { 
          pub_year = 1927,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056237",
          },
        },
      },
    },
    ["5330"] = {
      title = "Suhl",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056238",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056239",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056240",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056241",
          },
        },
      },
    },
    ["5331"] = {
      title = "Ilmenau",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056242",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056243",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056244",
          },
        },
      },
    },
    ["5332"] = {
      title = "Königsee",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056245",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015618",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015617",
          },
        },
      },
    },
    ["5333"] = {
      title = "Blankenburg im Schwarzatal",
      t_now = "Bad Blankenburg im Schwarzatal",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056246",
          },
        },
        { 
          pub_year = 1915,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056247",
          },
        },
        { 
          pub_year = 1938,
          sheet_title = "Bad Blankenburg im Schwarzatal",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056248",
          },
        },
      },
    },
    ["5334"] = {
      title = "Saalfeld an der Saale",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1875,
          sheet_title = "Saalfeld",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056249",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056250",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056251",
          },
        },
      },
    },
    ["5335"] = {
      title = "Ziegenrück",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056252",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056253",
          },
        },
        { 
          pub_year = 1945,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056254",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056255",
          },
        },
      },
    },
    ["5336"] = {
      title = "Knau",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056256",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056257",
          },
        },
        { 
          pub_year = 1936,
          sheet_title = "Hirschberg an der Saale (Eisenbühl)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056258",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056259",
          },
        },
      },
    },
    ["5337"] = {
      title = "Zeulenroda",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Reiboldsgrün",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056260",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Reiboldsgrün",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056261",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          sheet_title = "Wallengrün (Sächs.) - Zeulenroda (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056262",
          },
        },
        { 
          pub_year = 1946,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056263",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056264",
          },
        },
      },
    },
    ["5338"] = {
      title = "Elsterberg",
      t_now = "Triebes",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056265",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056266",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          sheet_title = "Pansdorf (Sächs.) - Triebes (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056267",
          },
        },
        { 
          pub_year = 1942,
          rec_office = "Königreich Sachsen",
          sheet_title = "Triebes",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056268",
          },
        },
      },
    },
    ["5339"] = {
      title = "Greiz",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Reichenbach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056269",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          sheet_title = "Reichenbach (Sächs.) - Greiz (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056270",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056271",
          },
        },
        { 
          pub_year = 1944,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056272",
          },
        },
      },
    },
    ["5340"] = {
      title = "Reichenbach (Sächs.) - Greiz (Preuß.)",
      t_now = "Planitz",
      editions = { 
        { 
          pub_year = 1888,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Ebersbrunn",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056273",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056274",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Ebersbrunn",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056275",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056276",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          sheet_title = "Planitz (Sächs.) - Fraureuth (Süd) (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056277",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          sheet_title = "Planitz (Sächs.) - Fraureuth (Süd) (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056278",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1913,
          rec_office = "Königreich Sachsen",
          sheet_title = "Planitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056279",
          },
        },
      },
    },
    ["5341"] = {
      title = "Kirchberg",
      t_now = "Wilkau-Haßlau",
      editions = { 
        { 
          pub_year = 1888,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056280",
          },
        },
        { 
          pub_year = 1895,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056281",
          },
        },
        { 
          pub_year = 1908,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056282",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056283",
          },
        },
        { 
          pub_year = 1942,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056284",
          },
        },
      },
    },
    ["5342"] = {
      title = "Lößnitz",
      editions = { 
        { 
          pub_year = 1886,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056285",
          },
        },
        { 
          pub_year = 1890,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056286",
          },
        },
        { 
          pub_year = 1925,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056287",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056288",
          },
        },
      },
    },
    ["5343"] = {
      title = "Geyer",
      editions = { 
        { 
          pub_year = 1886,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056289",
          },
        },
        { 
          pub_year = 1890,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056290",
          },
        },
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056291",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056292",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056293",
          },
        },
      },
    },
    ["5344"] = {
      title = "Marienberg",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056294",
          },
        },
        { 
          pub_year = 1886,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056295",
          },
        },
        { 
          pub_year = 1900,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056296",
          },
        },
        { 
          pub_year = 1907,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056297",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056298",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056299",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056300",
          },
        },
      },
    },
    ["5345"] = {
      title = "Zöblitz",
      editions = { 
        { 
          pub_year = 1889,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056301",
          },
        },
        { 
          pub_year = 1908,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056302",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056303",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056304",
          },
        },
      },
    },
    ["5346"] = {
      title = "Olbernhau",
      editions = { 
        { 
          pub_year = 1894,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Purschenstein",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056305",
          },
        },
        { 
          pub_year = 1908,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Purschenstein",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056306",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056307",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056308",
          },
        },
        { 
          pub_year = 1926,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056309",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056310",
          },
        },
      },
    },
    ["5347"] = {
      title = "Neuwernsdorf",
      t_now = "Oberleutensdorf",
      editions = { 
        { 
          pub_year = 1902,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056311",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056312",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056313",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056314",
          },
        },
      },
    },
    ["5361"] = {
      title = "Tschöpsdorf",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056315",
          },
        },
        { 
          pub_year = 1943,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056316",
          },
        },
      },
    },
    ["5362"] = {
      title = "Schömberg",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056317",
          },
        },
      },
    },
    ["5363"] = {
      title = "Friedland in Schlesien",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1894,
          sheet_title = "Friedland bei Waldenburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056318",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1894,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056319",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056320",
          },
        },
      },
    },
    ["5364"] = {
      title = "Wüstegiersdorf",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056321",
          },
        },
      },
    },
    ["5365"] = {
      title = "Langenbielau",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056322",
          },
        },
      },
    },
    ["5366"] = {
      title = "Gnadenfrei",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056323",
          },
        },
      },
    },
    ["5367"] = {
      title = "Tepliwoda",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056324",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1883,
          sheet_title = "Lauenbrunn",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056325",
          },
        },
      },
    },
    ["5368"] = {
      title = "Münsterberg",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056326",
          },
        },
      },
    },
    ["5369"] = {
      title = "Arnsdorf",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056327",
          },
        },
      },
    },
    ["5370"] = {
      title = "Grottkau",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056328",
          },
        },
      },
    },
    ["5371"] = {
      title = "Falkenberg",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056329",
          },
        },
      },
    },
    ["5372"] = {
      title = "Dambrau",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056330",
          },
        },
      },
    },
    ["5373"] = {
      title = "Oppeln",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056331",
          },
        },
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056332",
          },
        },
      },
    },
    ["5374"] = {
      title = "Kranst",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056333",
          },
        },
      },
    },
    ["5375"] = {
      title = "Malapane",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056334",
          },
        },
      },
    },
    ["5376"] = {
      title = "Grafenweiler",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056335",
          },
        },
      },
    },
    ["5377"] = {
      title = "Pawonkau",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056336",
          },
        },
      },
    },
    ["5378"] = {
      title = "Lublinitz",
      editions = { 
        { 
          pub_year = 1931,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056337",
          },
        },
      },
    },
    ["5379"] = {
      title = "Koschentin",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056338",
          },
        },
      },
    },
    ["5380"] = {
      title = "Ellguth",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056339",
          },
        },
      },
    },
    ["5403"] = {
      title = "Montjoie",
      t_now = "Monschau",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056340",
          },
        },
      },
    },
    ["5404"] = {
      title = "Schleiden",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1892,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056341",
          },
        },
      },
    },
    ["5405"] = {
      title = "Mechernich",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056342",
          },
        },
      },
    },
    ["5406"] = {
      title = "Münstereifel",
      t_now = "Bad Münstereifel",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056343",
          },
        },
      },
    },
    ["5407"] = {
      title = "Altenahr",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056344",
          },
        },
      },
    },
    ["5408"] = {
      title = "Ahrweiler",
      t_now = "Bad Neuenahr-Ahrweiler",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056345",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056346",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056347",
          },
        },
      },
    },
    ["5409"] = {
      title = "Linz",
      t_now = "Linz am Rhein",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056348",
          },
        },
      },
    },
    ["5410"] = {
      title = "Waldbreitbach",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056349",
          },
        },
      },
    },
    ["5411"] = {
      title = "Dierdorf",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056350",
          },
        },
      },
    },
    ["5412"] = {
      title = "Selters",
      t_now = "Selters im Westerwald",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056351",
          },
        },
      },
    },
    ["5413"] = {
      title = "Westerburg",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056352",
          },
        },
      },
    },
    ["5414"] = {
      title = "Mengerskirchen",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056353",
          },
        },
      },
    },
    ["5415"] = {
      title = "Merenberg",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056354",
          },
        },
      },
    },
    ["5416"] = {
      title = "Braunfels",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056355",
          },
        },
        { 
          pub_year = 1911,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056356",
          },
        },
      },
    },
    ["5417"] = {
      title = "Wetzlar",
      editions = { 
        { 
          pub_year = 1892,
          rec_year = 1890,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056357",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056358",
          },
        },
      },
    },
    ["5418"] = {
      title = "Gießen",
    },
    ["5419"] = {
      title = "Laubach",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056359",
          },
        },
      },
    },
    ["5420"] = {
      title = "Schotten",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056360",
          },
        },
      },
    },
    ["5421"] = {
      title = "Ulrichstein",
    },
    ["5422"] = {
      title = "Hosenfeld",
      t_now = "Herbstein",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1906,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056361",
          },
        },
      },
    },
    ["5423"] = {
      title = "Großenlüder",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056362",
          },
        },
      },
    },
    ["5424"] = {
      title = "Fulda",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056363",
          },
        },
      },
    },
    ["5425"] = {
      title = "Kleinsassen",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056364",
          },
        },
      },
    },
    ["5426"] = {
      title = "Hilders",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056365",
          },
        },
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056366",
          },
        },
      },
    },
    ["5427"] = {
      title = "Helmershausen",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056367",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056368",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056369",
          },
        },
      },
    },
    ["5428"] = {
      title = "Meiningen",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056370",
          },
        },
      },
    },
    ["5429"] = {
      title = "Themar",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056371",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056372",
          },
        },
      },
    },
    ["5430"] = {
      title = "Schleusingen",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056373",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056374",
          },
        },
        { 
          pub_year = 1940,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056375",
          },
        },
      },
    },
    ["5431"] = {
      title = "Unterneubrunn",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056376",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015722",
          },
        },
      },
    },
    ["5432"] = {
      title = "Großbreitenbach",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056377",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056378",
          },
        },
      },
    },
    ["5433"] = {
      title = "Gräfenthal",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1856,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056379",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056380",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056381",
          },
        },
        { 
          pub_year = 1945,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056382",
          },
        },
      },
    },
    ["5434"] = {
      title = "Leutenberg",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056383",
          },
        },
        { 
          pub_year = 1933,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056384",
          },
        },
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056385",
          },
        },
      },
    },
    ["5435"] = {
      title = "Liebengrün",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056386",
          },
        },
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056387",
          },
        },
      },
    },
    ["5436"] = {
      title = "Schleiz",
      editions = { 
        { 
          pub_year = 1905,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056388",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056389",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056390",
          },
        },
      },
    },
    ["5437"] = {
      title = "Pausa",
      t_now = "Mühltroff",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056391",
          },
        },
        { 
          pub_year = 1900,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056392",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          sheet_title = "Pausa (Sächs.) - Lössau (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056393",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          sheet_title = "Mühltroff (Lössau)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056394",
          },
        },
      },
    },
    ["5438"] = {
      title = "Kauschwitz",
      t_now = "Plauen (Nord)",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056395",
          },
        },
        { 
          pub_year = 1889,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056396",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          sheet_title = "Syrau (Sächs.) - Bernsgrün (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056397",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          sheet_title = "Plauen (Nord)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056398",
          },
        },
      },
    },
    ["5439"] = {
      title = "Treuen",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056399",
          },
        },
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056400",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056401",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056402",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056403",
          },
        },
      },
    },
    ["5440"] = {
      title = "Auerbach",
      editions = { 
        { 
          pub_year = 1892,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056404",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056405",
          },
        },
        { 
          pub_year = 1927,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056406",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056407",
          },
        },
      },
    },
    ["5441"] = {
      title = "Schneeberg",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056408",
          },
        },
        { 
          pub_year = 1894,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056409",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056410",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056411",
          },
        },
        { 
          pub_year = 1925,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056412",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056413",
          },
        },
        { 
          pub_year = 1944,
          rec_year = 1913,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056414",
          },
        },
      },
    },
    ["5442"] = {
      title = "Schwarzenberg",
      t_now = "Aue",
      editions = { 
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056415",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056416",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056417",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056418",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1913,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056419",
          },
        },
      },
    },
    ["5443"] = {
      title = "Elterlein",
      t_now = "Buchholz",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056420",
          },
        },
        { 
          pub_year = 1889,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056421",
          },
        },
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056422",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1914,
          rec_office = "Königreich Sachsen",
          sheet_title = "Buchholz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056423",
          },
        },
        { 
          pub_year = 1944,
          rec_year = 1914,
          rec_office = "Königreich Sachsen",
          sheet_title = "Buchholz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056424",
          },
        },
      },
    },
    ["5444"] = {
      title = "Annaberg",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056425",
          },
        },
        { 
          pub_year = 1891,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056426",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056427",
          },
        },
        { 
          pub_year = 1912,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056428",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056429",
          },
        },
      },
    },
    ["5445"] = {
      title = "Kühnhaide",
      t_now = "Sebastiansberg",
      editions = { 
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056430",
          },
        },
        { 
          pub_year = 1908,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056431",
          },
        },
        { 
          pub_year = 1938,
          rec_office = "Königreich Sachsen",
          sheet_title = "Reitzenhain",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056432",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1914,
          rec_office = "Königreich Sachsen",
          sheet_title = "Sebastiansberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056433",
          },
        },
      },
    },
    ["5464"] = {
      title = "Wünschelburg",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056434",
          },
        },
        { 
          pub_year = 1919,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056435",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056436",
          },
        },
      },
    },
    ["5465"] = {
      title = "Neurode",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056437",
          },
        },
      },
    },
    ["5466"] = {
      title = "Frankenstein",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056438",
          },
        },
        { 
          pub_year = 1932,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056439",
          },
        },
      },
    },
    ["5467"] = {
      title = "Kamenz in Niederschlesien",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056440",
          },
        },
      },
    },
    ["5468"] = {
      title = "Lindenau",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056441",
          },
        },
      },
    },
    ["5469"] = {
      title = "Bechau",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056442",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056443",
          },
        },
      },
    },
    ["5470"] = {
      title = "Bösdorf",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056444",
          },
        },
      },
    },
    ["5471"] = {
      title = "Tillowitz",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056445",
          },
        },
      },
    },
    ["5472"] = {
      title = "Waldfurt",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056446",
          },
        },
      },
    },
    ["5473"] = {
      title = "Proskau",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056447",
          },
        },
      },
    },
    ["5474"] = {
      title = "Groß Stein",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056448",
          },
        },
      },
    },
    ["5475"] = {
      title = "Groß Strehlitz",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056449",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056450",
          },
        },
      },
    },
    ["5476"] = {
      title = "Himmelwitz",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056451",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056452",
          },
        },
      },
    },
    ["5477"] = {
      title = "Keltsch",
      editions = { 
        { 
          pub_year = 1923,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056453",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1881,
          sheet_title = "Keilerswalde",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056454",
          },
        },
      },
    },
    ["5478"] = {
      title = "Tworog",
      editions = { 
        { 
          pub_year = 1923,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056455",
          },
        },
      },
    },
    ["5479"] = {
      title = "Ludwigsthal",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056456",
          },
        },
      },
    },
    ["5480"] = {
      title = "Woischnik",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056457",
          },
        },
      },
    },
    ["5501"] = {
      title = "Bürnenville",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056458",
          },
        },
      },
    },
    ["5502"] = {
      title = "Malmedy",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056459",
          },
        },
      },
    },
    ["5503"] = {
      title = "Elsenborn",
      t_now = "Hellenthal (Anhang)",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056461",
          },
        },
        { 
          pub_year = 1894,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056460",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056462",
          },
        },
      },
    },
    ["5504"] = {
      title = "Hellenthal",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056463",
          },
        },
      },
    },
    ["5505"] = {
      title = "Blankenheim",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056464",
          },
        },
      },
    },
    ["5506"] = {
      title = "Aremberg",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056465",
          },
        },
      },
    },
    ["5507"] = {
      title = "Hönningen",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056466",
          },
        },
      },
    },
    ["5508"] = {
      title = "Kempenich",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056467",
          },
        },
      },
    },
    ["5509"] = {
      title = "Burgbrohl",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056468",
          },
        },
      },
    },
    ["5510"] = {
      title = "Neuwied",
      editions = { 
        { 
          pub_year = 1900,
          rec_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056469",
          },
        },
      },
    },
    ["5511"] = {
      title = "Nauort",
      t_now = "Bendorf",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056470",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1900,
          sheet_title = "Bendorf",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056471",
          },
        },
      },
    },
    ["5512"] = {
      title = "Montabaur",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056472",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056473",
          },
        },
      },
    },
    ["5513"] = {
      title = "Meudt",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          sheet_title = "Girod",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056474",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056475",
          },
        },
      },
    },
    ["5514"] = {
      title = "Hadamar",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056476",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056477",
          },
        },
      },
    },
    ["5515"] = {
      title = "Weilburg",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056478",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056479",
          },
        },
      },
    },
    ["5516"] = {
      title = "Weilmünster",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056480",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056481",
          },
        },
        { 
          pub_year = 1915,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056482",
          },
        },
      },
    },
    ["5517"] = {
      title = "Kleeberg",
      t_now = "Cleeberg",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          sheet_title = "Cleeberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056483",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056484",
          },
        },
      },
    },
    ["5518"] = {
      title = "Butzbach",
    },
    ["5519"] = {
      title = "Hungen",
    },
    ["5520"] = {
      title = "Nidda",
    },
    ["5521"] = {
      title = "Gedern",
    },
    ["5522"] = {
      title = "Freiensteinau (Hintersteinau)",
      t_now = "Freiensteinau",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056485",
          },
        },
      },
    },
    ["5523"] = {
      title = "Neuhof",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056486",
          },
        },
        { 
          pub_year = 1939,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056487",
          },
        },
      },
    },
    ["5524"] = {
      title = "Weyhers",
    },
    ["5525"] = {
      title = "Gersfeld",
      t_now = "Gersfeld in der Rhön",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1869,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056488",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056489",
          },
        },
      },
    },
    ["5526"] = {
      title = "Bischofsheim an der Rhön",
    },
    ["5527"] = {
      title = "Ostheim vor der Rhön",
      t_now = "Mellrichstadt",
      editions = { 
        { 
          pub_year = 1874,
          rec_year = 1857,
          sheet_title = "Ostheim",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056490",
          },
        },
        { 
          pub_year = 1952,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056491",
          },
        },
      },
    },
    ["5528"] = {
      title = "Rentwertshausen (Mühlfeld)",
      t_now = "Rentwertshausen",
      editions = { 
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056492",
          },
        },
      },
    },
    ["5529"] = {
      title = "Haina",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1856,
          sheet_title = "Dingsleben",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056493",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056494",
          },
        },
      },
    },
    ["5530"] = {
      title = "Hildburghausen",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056495",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056496",
          },
        },
      },
    },
    ["5531"] = {
      title = "Eisfeld",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056497",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056498",
          },
        },
      },
    },
    ["5532"] = {
      title = "Steinach",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056499",
          },
        },
      },
    },
    ["5533"] = {
      title = "Spechtsbrunn",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056500",
          },
        },
        { 
          pub_year = 1953,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056501",
          },
        },
      },
    },
    ["5534"] = {
      title = "Lehesten",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1856,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056502",
          },
        },
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056503",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1903,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016372",
          },
        },
      },
    },
    ["5535"] = {
      title = "Lobenstein",
      editions = { 
        { 
          pub_year = 1929,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016373",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056505",
          },
        },
      },
    },
    ["5536"] = {
      title = "Hirschberg an der Saale",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1855,
          sheet_title = "Hirschberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056506",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056507",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1903,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056508",
          },
        },
      },
    },
    ["5537"] = {
      title = "Mißlareuth",
      t_now = "Gefell",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056509",
          },
        },
        { 
          pub_year = 1900,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056510",
          },
        },
        { 
          pub_year = 1908,
          rec_year = 1906,
          sheet_title = "Gefell",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056511",
          },
        },
        { 
          pub_year = 1913,
          rec_office = "Königreich Sachsen",
          sheet_title = "Reuth (Sächs.) - Gefell (Preuß.)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056512",
          },
        },
        { 
          pub_year = 1931,
          rec_office = "Königreich Sachsen",
          sheet_title = "Gefell (Münchenreuth)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056513",
          },
        },
        { 
          pub_year = 1939,
          rec_office = "Königreich Sachsen",
          sheet_title = "Gefell (Münchenreuth)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056514",
          },
        },
      },
    },
    ["5538"] = {
      title = "Plauen",
      t_now = "Plauen (Süd)",
      editions = { 
        { 
          pub_year = 1889,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056515",
          },
        },
        { 
          pub_year = 1906,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056516",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056517",
          },
        },
        { 
          pub_year = 1916,
          rec_office = "Königreich Sachsen",
          sheet_title = "Oelsnitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056518",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056519",
          },
        },
        { 
          pub_year = 1921,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056520",
          },
        },
        { 
          pub_year = 1926,
          rec_office = "Königreich Sachsen",
          sheet_title = "Plauen (Süd)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056521",
          },
        },
        { 
          pub_year = 1944,
          rec_office = "Königreich Sachsen",
          sheet_title = "Plauen (Süd)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056522",
          },
        },
      },
    },
    ["5539"] = {
      title = "Oelsnitz",
      editions = { 
        { 
          pub_year = 1890,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056523",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056524",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056525",
          },
        },
        { 
          pub_year = 1944,
          rec_year = 1908,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056526",
          },
        },
      },
    },
    ["5540"] = {
      title = "Falkenstein",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056527",
          },
        },
        { 
          pub_year = 1888,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056528",
          },
        },
        { 
          pub_year = 1894,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056529",
          },
        },
        { 
          pub_year = 1898,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056530",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056531",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056532",
          },
        },
      },
    },
    ["5541"] = {
      title = "Eibenstock und Aschberg",
      t_now = "Eibenstock",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Eibenstock",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056533",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Eibenstock",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056534",
          },
        },
        { 
          pub_year = 1904,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Eibenstock",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056535",
          },
        },
        { 
          pub_year = 1926,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056536",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056537",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056538",
          },
        },
      },
    },
    ["5542"] = {
      title = "Johanngeorgenstadt",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056539",
          },
        },
        { 
          pub_year = 1888,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056540",
          },
        },
        { 
          pub_year = 1898,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056541",
          },
        },
        { 
          pub_year = 1904,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056542",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056543",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056544",
          },
        },
      },
    },
    ["5543"] = {
      title = "Wiesenthal",
      t_now = "Oberwiesenthal",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056545",
          },
        },
        { 
          pub_year = 1887,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056546",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056547",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056548",
          },
        },
        { 
          pub_year = 1926,
          rec_office = "Königreich Sachsen",
          sheet_title = "Oberwiesenthal",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056549",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          sheet_title = "Oberwiesenthal",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056550",
          },
        },
      },
    },
    ["5544"] = {
      title = "Hammer Unter-Wiesenthal",
      t_now = "Weipert",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056551",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056552",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056553",
          },
        },
        { 
          pub_year = 1935,
          rec_office = "Königreich Sachsen",
          sheet_title = "Hammerunterwiesenthal",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056554",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1921,
          rec_office = "Königreich Sachsen",
          sheet_title = "Weipert",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056555",
          },
        },
      },
    },
    ["5563"] = {
      title = "Lewin",
      editions = { 
        { 
          pub_year = 1919,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056556",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1938,
          sheet_title = "Hummelstadt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056557",
          },
        },
      },
    },
    ["5564"] = {
      title = "Bad Reinerz",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056558",
          },
        },
      },
    },
    ["5565"] = {
      title = "Glatz",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056559",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056560",
          },
        },
      },
    },
    ["5566"] = {
      title = "Königshain",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056561",
          },
        },
      },
    },
    ["5567"] = {
      title = "Reichenstein",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056562",
          },
        },
      },
    },
    ["5568"] = {
      title = "Patschkau",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056563",
          },
        },
      },
    },
    ["5569"] = {
      title = "Neisse (West)",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056564",
          },
        },
      },
    },
    ["5570"] = {
      title = "Neisse (Ost)",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056565",
          },
        },
      },
    },
    ["5571"] = {
      title = "Friedland in Oberschlesien",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056566",
          },
        },
      },
    },
    ["5572"] = {
      title = "Schelitz",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056567",
          },
        },
      },
    },
    ["5573"] = {
      title = "Krappitz",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056568",
          },
        },
      },
    },
    ["5574"] = {
      title = "Gogolin",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056569",
          },
        },
      },
    },
    ["5575"] = {
      title = "Leschnitz",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056570",
          },
        },
      },
    },
    ["5576"] = {
      title = "Quellengrund",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056572",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1882,
          sheet_title = "Blottnitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056571",
          },
        },
      },
    },
    ["5577"] = {
      title = "Tost",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056573",
          },
        },
      },
    },
    ["5578"] = {
      title = "Dramatal",
      editions = { 
        { 
          pub_year = 1923,
          rec_year = 1882,
          sheet_title = "Broslawitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056574",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056575",
          },
        },
      },
    },
    ["5579"] = {
      title = "Tarnowitz",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056576",
          },
        },
      },
    },
    ["5580"] = {
      title = "Brinitz",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056577",
          },
        },
      },
    },
    ["5602"] = {
      title = "Recht",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056578",
          },
        },
      },
    },
    ["5603"] = {
      title = "Meyerode",
      t_now = "Wischeid",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056579",
          },
        },
      },
    },
    ["5604"] = {
      title = "Hallschlag",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056580",
          },
        },
        { 
          pub_year = 1910,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056581",
          },
        },
      },
    },
    ["5605"] = {
      title = "Stadtkyll",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056582",
          },
        },
      },
    },
    ["5606"] = {
      title = "Dollendorf",
      t_now = "Üxheim",
      editions = { 
        { 
          pub_year = 1896,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056583",
          },
        },
      },
    },
    ["5607"] = {
      title = "Adenau",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056584",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056585",
          },
        },
      },
    },
    ["5608"] = {
      title = "Virneburg",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056586",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056587",
          },
        },
      },
    },
    ["5609"] = {
      title = "Mayen",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056588",
          },
        },
      },
    },
    ["5610"] = {
      title = "Bassenheim",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056589",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056590",
          },
        },
      },
    },
    ["5611"] = {
      title = "Coblenz",
      t_now = "Koblenz",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1861,
          sheet_title = "Niederlahnstein",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056591",
          },
        },
        { 
          pub_year = 1914,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056592",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056593",
          },
        },
        { 
          pub_year = 1934,
          sheet_title = "Koblenz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056594",
          },
        },
      },
    },
    ["5612"] = {
      title = "Ems",
      t_now = "Bad Ems",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056595",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056597",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056596",
          },
        },
      },
    },
    ["5613"] = {
      title = "Schaumburg",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056598",
          },
        },
      },
    },
    ["5614"] = {
      title = "Limburg",
      t_now = "Limburg an der Lahn",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056599",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056600",
          },
        },
      },
    },
    ["5615"] = {
      title = "Villmar",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          sheet_title = "Eisenbach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056601",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056602",
          },
        },
      },
    },
    ["5616"] = {
      title = "Grävenwiesbach",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          sheet_title = "Gemünden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056603",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056604",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056605",
          },
        },
      },
    },
    ["5617"] = {
      title = "Usingen",
      editions = { 
        { 
          pub_year = 1877,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056606",
          },
        },
      },
    },
    ["5618"] = {
      title = "Friedberg",
      t_now = "Friedberg in Hessen",
      editions = { 
        { 
          pub_year = 1918,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056607",
          },
        },
        { 
          pub_year = 1922,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056608",
          },
        },
      },
    },
    ["5619"] = {
      title = "Staden",
    },
    ["5620"] = {
      title = "Ortenberg",
    },
    ["5621"] = {
      title = "Wenings (Birstein)",
      t_now = "Wenings",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056610",
          },
        },
      },
    },
    ["5622"] = {
      title = "Steinau",
      t_now = "Steinau an der Straße",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056611",
          },
        },
      },
    },
    ["5623"] = {
      title = "Schlüchtern",
      editions = { 
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056612",
          },
        },
      },
    },
    ["5624"] = {
      title = "Bad Brückenau",
    },
    ["5625"] = {
      title = "Wildflecken",
    },
    ["5626"] = {
      title = "Sandberg",
    },
    ["5627"] = {
      title = "Bad Neustadt an der Saale",
    },
    ["5628"] = {
      title = "Königshofen im Grabfeld",
      t_now = "Bad Königshofen im Grabfeld",
      editions = { 
        { 
          pub_year = 1943,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056613",
          },
        },
      },
    },
    ["5629"] = {
      title = "Römhild (Trappstadt)",
      t_now = "Römhild",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056614",
          },
        },
      },
    },
    ["5630"] = {
      title = "Rodach bei Coburg",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1856,
          sheet_title = "Rodach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056615",
          },
        },
        { 
          pub_year = 1943,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056616",
          },
        },
      },
    },
    ["5631"] = {
      title = "Meeder",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056617",
          },
        },
      },
    },
    ["5632"] = {
      title = "Neustadt bei Coburg",
      editions = { 
        { 
          pub_year = 1943,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056618",
          },
        },
      },
    },
    ["5633"] = {
      title = "Sonneberg (Rothenkirchen)",
      t_now = "Sonneberg",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056619",
          },
        },
      },
    },
    ["5634"] = {
      title = "Teuschnitz",
    },
    ["5635"] = {
      title = "Nordhalben",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1903,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056620",
          },
        },
      },
    },
    ["5636"] = {
      title = "Naila",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1903,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056621",
          },
        },
      },
    },
    ["5637"] = {
      title = "Heinersgrün",
      t_now = "Hof",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Blosenberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056622",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          sheet_title = "Blosenberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056623",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056624",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056625",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          sheet_title = "Hof (Heinersgrün)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056626",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1903,
          rec_office = "Königreich Bayern",
          sheet_title = "Hof",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056627",
          },
        },
      },
    },
    ["5638"] = {
      title = "Bobenneukirchen",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056628",
          },
        },
        { 
          pub_year = 1887,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056629",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056630",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056631",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056632",
          },
        },
        { 
          pub_year = 1942,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056633",
          },
        },
      },
    },
    ["5639"] = {
      title = "Adorf",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056634",
          },
        },
        { 
          pub_year = 1890,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056635",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056636",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056637",
          },
        },
        { 
          pub_year = 1929,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056638",
          },
        },
        { 
          pub_year = 1942,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056639",
          },
        },
      },
    },
    ["5640"] = {
      title = "Zwota",
      t_now = "Klingenthal",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056640",
          },
        },
        { 
          pub_year = 1893,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056641",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056642",
          },
        },
        { 
          pub_year = 1934,
          rec_office = "Königreich Sachsen",
          sheet_title = "Klingenthal",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056643",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1921,
          rec_office = "Königreich Sachsen",
          sheet_title = "Klingenthal",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056644",
          },
        },
      },
    },
    ["5641"] = {
      title = "Aschberg",
      t_now = "Graslitz",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056645",
          },
        },
        { 
          pub_year = 1897,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056646",
          },
        },
      },
    },
    ["5663"] = {
      title = "Tassau",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056647",
          },
        },
      },
    },
    ["5664"] = {
      title = "Grunwald",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056648",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056649",
          },
        },
      },
    },
    ["5665"] = {
      title = "Alt-Lomnitz",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056650",
          },
        },
        { 
          pub_year = 1936,
          sheet_title = "Alt Lomnitz",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056651",
          },
        },
      },
    },
    ["5666"] = {
      title = "Ullersdorf",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056652",
          },
        },
      },
    },
    ["5667"] = {
      title = "Landeck in Schlesien",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056653",
          },
        },
      },
    },
    ["5668"] = {
      title = "Ober Hermsdorf",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056654",
          },
        },
      },
    },
    ["5669"] = {
      title = "Kaindorf",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056655",
          },
        },
      },
    },
    ["5670"] = {
      title = "Ziegenhals",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056657",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056658",
          },
        },
      },
    },
    ["5671"] = {
      title = "Neustadt in Oberschlesien",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056659",
          },
        },
      },
    },
    ["5672"] = {
      title = "Deutsch Rasselwitz",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056660",
          },
        },
      },
    },
    ["5673"] = {
      title = "Oberglogau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056661",
          },
        },
      },
    },
    ["5674"] = {
      title = "Cosel",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056662",
          },
        },
      },
    },
    ["5675"] = {
      title = "Kandrzin",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1882,
          sheet_title = "Heydebreck in Oberschlesien",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056664",
          },
        },
        { 
          pub_year = 1912,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056663",
          },
        },
      },
    },
    ["5676"] = {
      title = "Ujest",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056665",
          },
        },
      },
    },
    ["5677"] = {
      title = "Peiskretscham",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056666",
          },
        },
      },
    },
    ["5678"] = {
      title = "Zabrze",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056667",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1882,
          sheet_title = "Hindenburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056668",
          },
        },
      },
    },
    ["5679"] = {
      title = "Beuthen in Oberschlesien",
      editions = { 
        { 
          pub_year = 1923,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056669",
          },
        },
        { 
          pub_year = 1883,
          rec_year = 1881,
          sheet_title = "Beuthen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056670",
          },
        },
        { 
          pub_year = 1926,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056671",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056672",
          },
        },
      },
    },
    ["5680"] = {
      title = "Laurahütte",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056673",
          },
        },
      },
    },
    ["5702"] = {
      title = "St. Vith",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056674",
          },
        },
      },
    },
    ["5703"] = {
      title = "Bleialf",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056675",
          },
        },
      },
    },
    ["5704"] = {
      title = "Prüm",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056676",
          },
        },
      },
    },
    ["5705"] = {
      title = "Gerolstein",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056677",
          },
        },
      },
    },
    ["5706"] = {
      title = "Hillesheim",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056678",
          },
        },
      },
    },
    ["5707"] = {
      title = "Kelberg",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056679",
          },
        },
      },
    },
    ["5708"] = {
      title = "Kaisersesch",
      editions = { 
        { 
          pub_year = 1895,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056680",
          },
        },
      },
    },
    ["5709"] = {
      title = "Kaifenheim",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1893,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056681",
          },
        },
      },
    },
    ["5710"] = {
      title = "Münstermaifeld",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056682",
          },
        },
      },
    },
    ["5711"] = {
      title = "Braubach",
      t_now = "Boppard",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056683",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          sheet_title = "Boppard",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056684",
          },
        },
      },
    },
    ["5712"] = {
      title = "Dachsenhausen",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056685",
          },
        },
        { 
          pub_year = 1905,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016404",
          },
        },
        { 
          pub_year = 1902,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056686",
          },
        },
      },
    },
    ["5713"] = {
      title = "Rettert",
      t_now = "Katzenelnbogen",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056687",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          sheet_title = "Katzenelnbogen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056688",
          },
        },
      },
    },
    ["5714"] = {
      title = "Kettenbach",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056689",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056690",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056691",
          },
        },
      },
    },
    ["5715"] = {
      title = "Idstein",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056692",
          },
        },
      },
    },
    ["5716"] = {
      title = "Feldberg",
      t_now = "Oberreifenberg",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056693",
          },
        },
      },
    },
    ["5717"] = {
      title = "Homburg vor der Höhe",
      t_now = "Bad Homburg vor der Höhe",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056695",
          },
        },
        { 
          pub_year = 1876,
          rec_year = 1867,
          sheet_title = "Homburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056694",
          },
        },
      },
    },
    ["5718"] = {
      title = "Ilbenstadt",
    },
    ["5719"] = {
      title = "Altenstadt",
    },
    ["5720"] = {
      title = "Büdingen",
    },
    ["5721"] = {
      title = "Gelnhausen",
    },
    ["5722"] = {
      title = "Salmünster",
    },
    ["5723"] = {
      title = "Altengronau",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056698",
          },
        },
      },
    },
    ["5724"] = {
      title = "Zeitlofs",
    },
    ["5725"] = {
      title = "Stangenroth",
    },
    ["5726"] = {
      title = "Bad Kissingen (Nord)",
    },
    ["5727"] = {
      title = "Münnerstadt",
    },
    ["5728"] = {
      title = "Oberlauringen",
    },
    ["5729"] = {
      title = "Alsleben-Rieth",
      t_now = "Alsleben",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1901,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056699",
          },
        },
      },
    },
    ["5730"] = {
      title = "Gemünda-Heldburg",
      t_now = "Heldburg",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1920,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056700",
          },
        },
      },
    },
    ["5731"] = {
      title = "Coburg",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056701",
          },
        },
        { 
          pub_year = 1924,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056702",
          },
        },
      },
    },
    ["5732"] = {
      title = "Sonnefeld",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1925,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056703",
          },
        },
      },
    },
    ["5733"] = {
      title = "Steinach",
      t_now = "Kronach",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1856,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056704",
          },
        },
        { 
          pub_year = 1943,
          rec_office = "Königreich Bayern",
          sheet_title = "Kronach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056705",
          },
        },
      },
    },
    ["5734"] = {
      title = "Wallenfels",
    },
    ["5735"] = {
      title = "Schwarzenbach am Wald",
    },
    ["5736"] = {
      title = "Helmbrechts",
    },
    ["5737"] = {
      title = "Schwarzenbach an der Saale",
    },
    ["5738"] = {
      title = "Rehau",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1909,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056706",
          },
        },
      },
    },
    ["5739"] = {
      title = "Brambach",
      t_now = "Rehau (Anhang)",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056707",
          },
        },
        { 
          pub_year = 1887,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056708",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056709",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056710",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Königreich Sachsen",
          sheet_title = "Bad Elster",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056711",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          sheet_title = "Bad Elster",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056712",
          },
        },
        { 
          pub_year = 1933,
          rec_office = "Königreich Sachsen",
          sheet_title = "Bad Elster (Wildenau)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056713",
          },
        },
      },
    },
    ["5740"] = {
      title = "Hennebach",
      t_now = "Schönbach",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056714",
          },
        },
        { 
          pub_year = 1887,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056715",
          },
        },
        { 
          pub_year = 1898,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056716",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Sachsen",
          sheet_title = "Landwüst",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056717",
          },
        },
        { 
          pub_year = 1943,
          rec_office = "Königreich Sachsen",
          sheet_title = "Schönbach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056718",
          },
        },
      },
    },
    ["5764"] = {
      title = "Langenbrück",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056719",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056720",
          },
        },
      },
    },
    ["5765"] = {
      title = "Habelschwerdt",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056721",
          },
        },
      },
    },
    ["5766"] = {
      title = "Wölfelsdorf",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056722",
          },
        },
      },
    },
    ["5767"] = {
      title = "Wilhelmsthal",
      editions = { 
        { 
          pub_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056723",
          },
        },
      },
    },
    ["5768"] = {
      title = "Bielendorf",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056724",
          },
        },
      },
    },
    ["5770"] = {
      title = "Arnoldsdorf",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056725",
          },
        },
      },
    },
    ["5771"] = {
      title = "Kunzendorf",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056726",
          },
        },
      },
    },
    ["5772"] = {
      title = "Leobschütz",
      editions = { 
        { 
          pub_year = 1930,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056727",
          },
        },
      },
    },
    ["5773"] = {
      title = "Leisnitz in Oberschlesien",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056728",
          },
        },
      },
    },
    ["5774"] = {
      title = "Groß Neukirch",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056729",
          },
        },
      },
    },
    ["5775"] = {
      title = "Birawa",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056730",
          },
        },
      },
    },
    ["5776"] = {
      title = "Jakobswalde",
      editions = { 
        { 
          pub_year = 1902,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056732",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056731",
          },
        },
      },
    },
    ["5777"] = {
      title = "Kieferstädtel",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056733",
          },
        },
      },
    },
    ["5778"] = {
      title = "Gleiwitz",
      editions = { 
        { 
          pub_year = 1926,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056734",
          },
        },
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056735",
          },
        },
      },
    },
    ["5779"] = {
      title = "Schwientochlowitz",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056736",
          },
        },
      },
    },
    ["5780"] = {
      title = "Kattowitz",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056737",
          },
        },
      },
    },
    ["5781"] = {
      title = "Birkental",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056738",
          },
        },
      },
    },
    ["5802"] = {
      title = "Burg-Reuland",
      t_now = "Sevenig an der Our",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056739",
          },
        },
      },
    },
    ["5803"] = {
      title = "Leidenborn",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056740",
          },
        },
      },
    },
    ["5804"] = {
      title = "Schönecken",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056741",
          },
        },
      },
    },
    ["5805"] = {
      title = "Mürlenbach",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056742",
          },
        },
      },
    },
    ["5806"] = {
      title = "Daun",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056743",
          },
        },
      },
    },
    ["5807"] = {
      title = "Gillenfeld",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90020121",
          },
        },
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056744",
          },
        },
      },
    },
    ["5808"] = {
      title = "Cochem",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056745",
          },
        },
      },
    },
    ["5809"] = {
      title = "Treis",
      t_now = "Treis-Karden",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056746",
          },
        },
      },
    },
    ["5810"] = {
      title = "Dommershausen",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056747",
          },
        },
      },
    },
    ["5811"] = {
      title = "Kestert",
      editions = { 
        { 
          pub_year = 1947,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056748",
          },
        },
      },
    },
    ["5812"] = {
      title = "St. Goarshausen",
      editions = { 
        { 
          pub_year = 1878,
          rec_year = 1878,
          sheet_title = "Niederkestert; St. Goarshausen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056749",
          },
        },
        { 
          pub_year = 1917,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056750",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056751",
          },
        },
      },
    },
    ["5813"] = {
      title = "Nastätten",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          sheet_title = "Algenroth",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056752",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056753",
          },
        },
      },
    },
    ["5814"] = {
      title = "Langenschwalbach",
      t_now = "Bad Schwalbach",
      editions = { 
        { 
          pub_year = 1894,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056754",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056755",
          },
        },
      },
    },
    ["5815"] = {
      title = "Wehen",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          sheet_title = "Platte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056756",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056757",
          },
        },
      },
    },
    ["5816"] = {
      title = "Königstein am Taunus",
      t_now = "Königstein im Taunus",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1868,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056758",
          },
        },
      },
    },
    ["5817"] = {
      title = "Rödelheim",
      t_now = "Frankfurt am Main (West)",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056759",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          sheet_title = "Höchst",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056760",
          },
        },
        { 
          pub_year = 1934,
          sheet_title = "Frankfurt am Main (West) (Steinbach)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056761",
          },
        },
      },
    },
    ["5818"] = {
      title = "Frankfurt am Main",
      t_now = "Frankfurt am Main (Ost)",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056762",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056763",
          },
        },
        { 
          pub_year = 1935,
          sheet_title = "Frankfurt am Main (Ost) (Offenbach)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056764",
          },
        },
      },
    },
    ["5819"] = {
      title = "Hanau",
    },
    ["5820"] = {
      title = "Langenselbold",
      editions = { 
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056765",
          },
        },
      },
    },
    ["5821"] = {
      title = "Bieber",
      editions = { 
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90016577",
          },
        },
      },
    },
    ["5822"] = {
      title = "Wiesen",
    },
    ["5823"] = {
      title = "Burgsinn",
    },
    ["5824"] = {
      title = "Gräfendorf",
    },
    ["5825"] = {
      title = "Hammelburg",
    },
    ["5826"] = {
      title = "Bad Kissingen (Süd)",
    },
    ["5827"] = {
      title = "Maßbach",
    },
    ["5828"] = {
      title = "Stadtlauringen",
    },
    ["5829"] = {
      title = "Hofheim in Unterfranken",
    },
    ["5830"] = {
      title = "Pfarrweisach",
    },
    ["5831"] = {
      title = "Rossach",
      t_now = "Seßlach",
      editions = { 
        { 
          pub_year = 1873,
          rec_year = 1856,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056766",
          },
        },
      },
    },
    ["5832"] = {
      title = "Lichtenfels",
    },
    ["5833"] = {
      title = "Burgkunstadt",
    },
    ["5834"] = {
      title = "Kulmbach",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1937,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056767",
          },
        },
      },
    },
    ["5835"] = {
      title = "Stadtsteinach",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1937,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056768",
          },
        },
      },
    },
    ["5836"] = {
      title = "Münchberg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1936,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056769",
          },
        },
      },
    },
    ["5837"] = {
      title = "Weißenstadt",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1936,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056770",
          },
        },
      },
    },
    ["5838"] = {
      title = "Selb",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1919,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056771",
          },
        },
      },
    },
    ["5839"] = {
      title = "Schönberg",
      editions = { 
        { 
          pub_year = 1887,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056772",
          },
        },
        { 
          pub_year = 1903,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056773",
          },
        },
        { 
          pub_year = 1909,
          rec_office = "Königreich Sachsen",
          sheet_series = "Äquidistantenkarte",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056774",
          },
        },
        { 
          pub_year = 1919,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056775",
          },
        },
        { 
          pub_year = 1922,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056776",
          },
        },
        { 
          pub_year = 1929,
          rec_office = "Königreich Sachsen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056777",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1920,
          rec_office = "Königreich Bayern",
          sheet_title = "Längenau (Schönberg)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056778",
          },
        },
        { 
          pub_year = 1933,
          rec_office = "Königreich Bayern",
          sheet_title = "Längenau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056779",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1908,
          rec_office = "Königreich Bayern",
          sheet_title = "Haslau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056780",
          },
        },
      },
    },
    ["5840"] = {
      title = "Schönberg (Anhang)",
    },
    ["5865"] = {
      title = "Rosenthal in Schlesien",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056781",
          },
        },
      },
    },
    ["5866"] = {
      title = "Mittelwalde",
      editions = { 
        { 
          pub_year = 1919,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056782",
          },
        },
      },
    },
    ["5871"] = {
      title = "Troplowitz",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056783",
          },
        },
      },
    },
    ["5872"] = {
      title = "Sauerwitz",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056784",
          },
        },
      },
    },
    ["5873"] = {
      title = "Bauerwitz",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056785",
          },
        },
      },
    },
    ["5874"] = {
      title = "Preußisch Krawarn",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056786",
          },
        },
      },
    },
    ["5875"] = {
      title = "Buchenau in Oberschlesien",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056787",
          },
        },
      },
    },
    ["5876"] = {
      title = "Groß Rauden",
      editions = { 
        { 
          pub_year = 1923,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056788",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056789",
          },
        },
      },
    },
    ["5877"] = {
      title = "Golleow",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056790",
          },
        },
      },
    },
    ["5878"] = {
      title = "Orzesche",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056791",
          },
        },
      },
    },
    ["5879"] = {
      title = "Nikolai",
      editions = { 
        { 
          pub_year = 1931,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056792",
          },
        },
      },
    },
    ["5880"] = {
      title = "Lendzin",
      editions = { 
        { 
          pub_year = 1931,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056793",
          },
        },
      },
    },
    ["5881"] = {
      title = "Imielin",
      editions = { 
        { 
          pub_year = 1931,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056794",
          },
        },
      },
    },
    ["5902"] = {
      title = "Dasburg",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056795",
          },
        },
      },
    },
    ["5903"] = {
      title = "Neuerburg",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056796",
          },
        },
      },
    },
    ["5904"] = {
      title = "Waxweiler",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056797",
          },
        },
      },
    },
    ["5905"] = {
      title = "Kyllburg",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          sheet_title = "Kilburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056798",
          },
        },
        { 
          pub_year = 1910,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056799",
          },
        },
      },
    },
    ["5906"] = {
      title = "Manderscheid",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056800",
          },
        },
      },
    },
    ["5907"] = {
      title = "Hasborn",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056801",
          },
        },
      },
    },
    ["5908"] = {
      title = "Alf",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056802",
          },
        },
      },
    },
    ["5909"] = {
      title = "Zell",
      t_now = "Zell an der Mosel",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056803",
          },
        },
      },
    },
    ["5910"] = {
      title = "Kastellaun",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056804",
          },
        },
      },
    },
    ["5911"] = {
      title = "Kisselbach",
      editions = { 
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056805",
          },
        },
      },
    },
    ["5912"] = {
      title = "Kaub",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1867,
          sheet_title = "Caub",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056806",
          },
        },
        { 
          pub_year = 1903,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056807",
          },
        },
        { 
          pub_year = 1915,
          rec_year = 1901,
          sheet_title = "Caub",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056808",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056809",
          },
        },
      },
    },
    ["5913"] = {
      title = "Presberg",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056810",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056811",
          },
        },
      },
    },
    ["5914"] = {
      title = "Eltville",
      t_now = "Eltville am Rhein",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056812",
          },
        },
        { 
          pub_year = 1895,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056813",
          },
        },
        { 
          pub_year = 1907,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056814",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056815",
          },
        },
      },
    },
    ["5915"] = {
      title = "Wiesbaden",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056816",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056817",
          },
        },
        { 
          pub_year = 1915,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056818",
          },
        },
        { 
          pub_year = 1929,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056819",
          },
        },
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056820",
          },
        },
      },
    },
    ["5916"] = {
      title = "Hochheim",
      t_now = "Hochheim am Main",
      editions = { 
        { 
          pub_year = 1876,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056821",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056823",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1904,
          sheet_title = "Wiesbaden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056822",
          },
        },
        { 
          pub_year = 1929,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056824",
          },
        },
      },
    },
    ["5917"] = {
      title = "Niederrad",
      t_now = "Kelsterbach",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          sheet_title = "Kelsterbach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056825",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056826",
          },
        },
      },
    },
    ["5918"] = {
      title = "Sachsenhausen",
      t_now = "Neu-Isenburg",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          sheet_title = "Neu-Isenburg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056827",
          },
        },
        { 
          pub_year = 1906,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056828",
          },
        },
        { 
          pub_year = 1934,
          sheet_title = "Neu-Isenburg (Sachsenhausen)",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056829",
          },
        },
      },
    },
    ["5919"] = {
      title = "Seligenstadt",
    },
    ["5920"] = {
      title = "Alzenau in Unterfranken",
    },
    ["5921"] = {
      title = "Schöllkrippen",
    },
    ["5922"] = {
      title = "Frammersbach",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1902,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056830",
          },
        },
      },
    },
    ["5923"] = {
      title = "Rieneck",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1902,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056831",
          },
        },
      },
    },
    ["5924"] = {
      title = "Gemünden",
      t_now = "Gemünden am Main",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1902,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056832",
          },
        },
      },
    },
    ["5925"] = {
      title = "Gauaschach",
    },
    ["5926"] = {
      title = "Geldersheim",
    },
    ["5927"] = {
      title = "Schweinfurt",
    },
    ["5928"] = {
      title = "Obertheres",
    },
    ["5929"] = {
      title = "Haßfurt",
    },
    ["5930"] = {
      title = "Ebern",
    },
    ["5931"] = {
      title = "Ebensfeld",
    },
    ["5932"] = {
      title = "Uetzing",
    },
    ["5933"] = {
      title = "Weismain",
    },
    ["5934"] = {
      title = "Thurnau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1937,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056833",
          },
        },
      },
    },
    ["5935"] = {
      title = "Marktschorgast",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1937,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056834",
          },
        },
      },
    },
    ["5936"] = {
      title = "Berneck im Fichtelgebirge",
      t_now = "Bad Berneck im Fichtelgebirge",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1936,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056835",
          },
        },
      },
    },
    ["5937"] = {
      title = "Fichtelberg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1936,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056836",
          },
        },
      },
    },
    ["5938"] = {
      title = "Marktredwitz",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1919,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056837",
          },
        },
      },
    },
    ["5939"] = {
      title = "Waldsassen",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1920,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056838",
          },
        },
      },
    },
    ["5940"] = {
      title = "Hatzenreuth",
      editions = { 
        { 
          pub_year = 1923,
          rec_year = 1920,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056839",
          },
        },
      },
    },
    ["5972"] = {
      title = "Branitz",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056840",
          },
        },
      },
    },
    ["5973"] = {
      title = "Altstett",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056842",
          },
        },
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056841",
          },
        },
      },
    },
    ["5974"] = {
      title = "Katscher",
      editions = { 
        { 
          pub_year = 1938,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056843",
          },
        },
      },
    },
    ["5975"] = {
      title = "Ratibor",
      editions = { 
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056844",
          },
        },
      },
    },
    ["5976"] = {
      title = "Loslau",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056845",
          },
        },
      },
    },
    ["5977"] = {
      title = "Rybnik",
      editions = { 
        { 
          pub_year = 1931,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056846",
          },
        },
      },
    },
    ["5978"] = {
      title = "Sohrau",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056847",
          },
        },
      },
    },
    ["5979"] = {
      title = "Kobier",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056848",
          },
        },
      },
    },
    ["5980"] = {
      title = "Altberun",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056849",
          },
        },
      },
    },
    ["5981"] = {
      title = "Neuberun",
      editions = { 
        { 
          pub_year = 1931,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056850",
          },
        },
      },
    },
    ["6002"] = {
      title = "Gemünd",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056851",
          },
        },
      },
    },
    ["6003"] = {
      title = "Mettendorf",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056852",
          },
        },
      },
    },
    ["6004"] = {
      title = "Oberweis",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056853",
          },
        },
      },
    },
    ["6005"] = {
      title = "Bitburg",
      editions = { 
        { 
          pub_year = 1950,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056854",
          },
        },
      },
    },
    ["6006"] = {
      title = "Landscheid",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056855",
          },
        },
      },
    },
    ["6007"] = {
      title = "Wittlich",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056856",
          },
        },
      },
    },
    ["6008"] = {
      title = "Bernkastel",
      t_now = "Bernkastel-Kues",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056857",
          },
        },
        { 
          pub_year = 1914,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056858",
          },
        },
      },
    },
    ["6009"] = {
      title = "Sohren",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056859",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056860",
          },
        },
        { 
          pub_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056861",
          },
        },
      },
    },
    ["6010"] = {
      title = "Kirchberg im Hunsrück",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056862",
          },
        },
      },
    },
    ["6011"] = {
      title = "Simmern",
      t_now = "Simmern im Hunsrück",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056863",
          },
        },
        { 
          pub_year = 1920,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056864",
          },
        },
        { 
          pub_year = 1925,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056865",
          },
        },
      },
    },
    ["6012"] = {
      title = "Stromberg",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056866",
          },
        },
      },
    },
    ["6013"] = {
      title = "Rüdesheim",
      t_now = "Bingen am Rhein",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1867,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056867",
          },
        },
      },
    },
    ["6014"] = {
      title = "Ingelheim",
      t_now = "Ingelheim am Rhein",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1900,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056868",
          },
        },
      },
    },
    ["6015"] = {
      title = "Mainz",
      editions = { 
        { 
          pub_year = 1947,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056869",
          },
        },
      },
    },
    ["6016"] = {
      title = "Groß-Gerau",
      editions = { 
        { 
          pub_year = 1899,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056870",
          },
        },
        { 
          pub_year = 1941,
          rec_year = 1896,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056871",
          },
        },
      },
    },
    ["6017"] = {
      title = "Mörfelden",
      editions = { 
        { 
          pub_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056872",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056873",
          },
        },
      },
    },
    ["6018"] = {
      title = "Messel",
      t_now = "Langen",
      editions = { 
        { 
          pub_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056874",
          },
        },
      },
    },
    ["6019"] = {
      title = "Babenhausen",
    },
    ["6020"] = {
      title = "Aschaffenburg",
    },
    ["6021"] = {
      title = "Haibach",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1935,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056876",
          },
        },
      },
    },
    ["6022"] = {
      title = "Rothenbuch",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1937,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056877",
          },
        },
      },
    },
    ["6023"] = {
      title = "Lohr",
      t_now = "Lohr am Main",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1937,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056878",
          },
        },
      },
    },
    ["6024"] = {
      title = "Karlstadt",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1937,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056879",
          },
        },
      },
    },
    ["6025"] = {
      title = "Arnstein",
    },
    ["6026"] = {
      title = "Werneck",
    },
    ["6027"] = {
      title = "Grettstadt",
    },
    ["6028"] = {
      title = "Gerolzhofen",
    },
    ["6029"] = {
      title = "Knetzgau",
    },
    ["6030"] = {
      title = "Eltmann",
    },
    ["6031"] = {
      title = "Bamberg (Nord)",
      editions = { 
        { 
          pub_year = 1935,
          rec_year = 1922,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056880",
          },
        },
      },
    },
    ["6032"] = {
      title = "Scheßlitz",
    },
    ["6033"] = {
      title = "Hollfeld",
    },
    ["6034"] = {
      title = "Mistelgau",
    },
    ["6035"] = {
      title = "Bayreuth",
    },
    ["6036"] = {
      title = "Weidenberg",
    },
    ["6037"] = {
      title = "Ebnath",
    },
    ["6038"] = {
      title = "Waldershof",
    },
    ["6039"] = {
      title = "Mitterteich",
    },
    ["6040"] = {
      title = "Neualbenreuth",
    },
    ["6041"] = {
      title = "Mähring",
    },
    ["6073"] = {
      title = "Piltsch",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056881",
          },
        },
      },
    },
    ["6074"] = {
      title = "Deutsch Krawarn",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056882",
          },
        },
      },
    },
    ["6075"] = {
      title = "Haatsch",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056883",
          },
        },
      },
    },
    ["6076"] = {
      title = "Groß Gorschütz",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056884",
          },
        },
      },
    },
    ["6077"] = {
      title = "Jastrzemb",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056885",
          },
        },
      },
    },
    ["6078"] = {
      title = "Pawlowitz",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056886",
          },
        },
      },
    },
    ["6079"] = {
      title = "Pleß",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056887",
          },
        },
      },
    },
    ["6080"] = {
      title = "Grzawa",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056888",
          },
        },
      },
    },
    ["6103"] = {
      title = "Wallendorf",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056889",
          },
        },
      },
    },
    ["6104"] = {
      title = "Bollendorf",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056890",
          },
        },
      },
    },
    ["6105"] = {
      title = "Welschbillig",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056891",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056892",
          },
        },
      },
    },
    ["6106"] = {
      title = "Schweich",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056893",
          },
        },
      },
    },
    ["6107"] = {
      title = "Neumagen",
      t_now = "Neumagen-Dhron",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056894",
          },
        },
        { 
          pub_year = 1934,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056895",
          },
        },
      },
    },
    ["6108"] = {
      title = "Morbach",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056896",
          },
        },
      },
    },
    ["6109"] = {
      title = "Hottenbach",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056897",
          },
        },
      },
    },
    ["6110"] = {
      title = "Gemünden",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056898",
          },
        },
      },
    },
    ["6111"] = {
      title = "Pferdsfeld",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056899",
          },
        },
        { 
          pub_year = 1918,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056900",
          },
        },
      },
    },
    ["6112"] = {
      title = "Waldböckelheim",
      editions = { 
        { 
          pub_year = 1907,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056901",
          },
        },
        { 
          pub_year = 1935,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056902",
          },
        },
      },
    },
    ["6113"] = {
      title = "Bad Kreuznach",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056903",
          },
        },
      },
    },
    ["6114"] = {
      title = "Wörrstadt",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056904",
          },
        },
      },
    },
    ["6115"] = {
      title = "Undenheim",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056905",
          },
        },
      },
    },
    ["6116"] = {
      title = "Oppenheim",
    },
    ["6117"] = {
      title = "Darmstadt",
      t_now = "Darmstadt (West)",
      editions = { 
        { 
          pub_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056906",
          },
        },
        { 
          pub_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056907",
          },
        },
      },
    },
    ["6118"] = {
      title = "Roßdorf",
      t_now = "Darmstadt (Ost)",
      editions = { 
        { 
          pub_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056908",
          },
        },
        { 
          pub_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056909",
          },
        },
      },
    },
    ["6119"] = {
      title = "Groß-Umstadt",
    },
    ["6120"] = {
      title = "Obernburg",
      t_now = "Obernburg am Main",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1935,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056910",
          },
        },
      },
    },
    ["6121"] = {
      title = "Heimbuchenthal",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1935,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056911",
          },
        },
      },
    },
    ["6122"] = {
      title = "Bischbrunn",
    },
    ["6123"] = {
      title = "Marktheidenfeld",
    },
    ["6124"] = {
      title = "Remlingen",
    },
    ["6125"] = {
      title = "Würzburg (Nord)",
    },
    ["6126"] = {
      title = "Dettelbach",
    },
    ["6127"] = {
      title = "Volkach",
    },
    ["6128"] = {
      title = "Ebrach",
    },
    ["6129"] = {
      title = "Burgwindheim",
    },
    ["6130"] = {
      title = "Burgebrach",
    },
    ["6131"] = {
      title = "Bamberg (Süd)",
    },
    ["6132"] = {
      title = "Buttenheim",
    },
    ["6133"] = {
      title = "Muggendorf",
    },
    ["6134"] = {
      title = "Waischenfeld",
    },
    ["6135"] = {
      title = "Creußen",
    },
    ["6136"] = {
      title = "Kirchenlaibach",
    },
    ["6137"] = {
      title = "Kemnath",
      editions = { 
        { 
          pub_year = 1933,
          rec_year = 1922,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056912",
          },
        },
      },
    },
    ["6138"] = {
      title = "Erbendorf",
      editions = { 
        { 
          pub_year = 1928,
          rec_year = 1922,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056913",
          },
        },
        { 
          pub_year = 1933,
          rec_year = 1922,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056914",
          },
        },
      },
    },
    ["6139"] = {
      title = "Falkenberg",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1924,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056915",
          },
        },
      },
    },
    ["6140"] = {
      title = "Tirschenreuth",
    },
    ["6141"] = {
      title = "Treppenstein",
    },
    ["6175"] = {
      title = "Hultschin",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056916",
          },
        },
      },
    },
    ["6177"] = {
      title = "Pilgramsdorf",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056917",
          },
        },
      },
    },
    ["6178"] = {
      title = "Petersdorf",
      editions = { 
        { 
          pub_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056918",
          },
        },
      },
    },
    ["6204"] = {
      title = "Langsur",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056919",
          },
        },
      },
    },
    ["6205"] = {
      title = "Trier",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056920",
          },
        },
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056921",
          },
        },
      },
    },
    ["6206"] = {
      title = "Pfalzel",
      t_now = "Trier-Pfalzel",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056922",
          },
        },
      },
    },
    ["6207"] = {
      title = "Beuren",
      t_now = "Beuren im Hochwald",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056923",
          },
        },
      },
    },
    ["6208"] = {
      title = "Morscheid",
      t_now = "Morscheid-Riedenburg",
      editions = { 
        { 
          pub_year = 1945,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056924",
          },
        },
      },
    },
    ["6209"] = {
      title = "Idar-Oberstein",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056925",
          },
        },
      },
    },
    ["6210"] = {
      title = "Kirn",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056926",
          },
        },
      },
    },
    ["6211"] = {
      title = "Sobernheim",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056927",
          },
        },
      },
    },
    ["6212"] = {
      title = "Meisenheim",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1905,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056928",
          },
        },
      },
    },
    ["6213"] = {
      title = "Kriegsfeld",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056929",
          },
        },
      },
    },
    ["6214"] = {
      title = "Alzey",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1902,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056930",
          },
        },
      },
    },
    ["6215"] = {
      title = "Gau-Odernheim",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056931",
          },
        },
      },
    },
    ["6216"] = {
      title = "Gernsheim",
      editions = { 
        { 
          pub_year = 1901,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056932",
          },
        },
        { 
          pub_year = 1928,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056933",
          },
        },
      },
    },
    ["6217"] = {
      title = "Zwingenberg",
      editions = { 
        { 
          pub_year = 1922,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056935",
          },
        },
        { 
          pub_year = 1937,
          rec_year = 1889,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056934",
          },
        },
      },
    },
    ["6218"] = {
      title = "Neunkirchen",
    },
    ["6219"] = {
      title = "Brensbach",
    },
    ["6220"] = {
      title = "Wörth am Main",
      editions = { 
        { 
          pub_year = 1893,
          sheet_title = "Woerth",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056937",
          },
        },
        { 
          pub_year = 1943,
          rec_year = 1935,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056936",
          },
        },
      },
    },
    ["6221"] = {
      title = "Freudenberg",
      t_now = "Miltenberg",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056938",
          },
        },
      },
    },
    ["6222"] = {
      title = "Nassig",
      t_now = "Stadtprozelten",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056939",
          },
        },
      },
    },
    ["6223"] = {
      title = "Wertheim",
      editions = { 
        { 
          pub_year = 1927,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056940",
          },
        },
      },
    },
    ["6224"] = {
      title = "Gerchsheim",
      t_now = "Helmstadt",
      editions = { 
        { 
          pub_year = 1928,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056941",
          },
        },
      },
    },
    ["6225"] = {
      title = "Würzburg (Süd)",
    },
    ["6226"] = {
      title = "Kitzingen",
    },
    ["6227"] = {
      title = "Iphofen",
    },
    ["6228"] = {
      title = "Wiesentheid",
    },
    ["6229"] = {
      title = "Schlüsselfeld",
    },
    ["6230"] = {
      title = "Höchstadt an der Aisch",
    },
    ["6231"] = {
      title = "Miltenberg (Freudenberg)",
      t_now = "Adelsdorf",
      editions = { 
        { 
          pub_year = 1935,
          rec_year = 1935,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056942",
          },
        },
      },
    },
    ["6232"] = {
      title = "Forchheim",
      editions = { 
        { 
          pub_year = 1929,
          rec_year = 1922,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056943",
          },
        },
      },
    },
    ["6233"] = {
      title = "Ebermannstadt",
    },
    ["6234"] = {
      title = "Pottenstein",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1938,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056944",
          },
        },
      },
    },
    ["6235"] = {
      title = "Pegnitz",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1938,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056945",
          },
        },
      },
    },
    ["6236"] = {
      title = "Eschenbach in der Oberpfalz",
      editions = { 
        { 
          pub_year = 1933,
          rec_year = 1930,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056946",
          },
        },
      },
    },
    ["6237"] = {
      title = "Grafenwöhr",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1905,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056947",
          },
        },
      },
    },
    ["6238"] = {
      title = "Parkstein",
    },
    ["6239"] = {
      title = "Neustadt an der Waldnaab",
    },
    ["6240"] = {
      title = "Flossenbürg",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1923,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056948",
          },
        },
      },
    },
    ["6304"] = {
      title = "Wincheringen",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056949",
          },
        },
      },
    },
    ["6305"] = {
      title = "Saarburg im Rheinland",
      t_now = "Saarburg",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056950",
          },
        },
      },
    },
    ["6306"] = {
      title = "Kell",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056951",
          },
        },
      },
    },
    ["6307"] = {
      title = "Hermeskeil",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056952",
          },
        },
      },
    },
    ["6308"] = {
      title = "Birkenfeld (West)",
      editions = { 
        { 
          pub_year = 1937,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056953",
          },
        },
      },
    },
    ["6309"] = {
      title = "Birkenfeld (Ost)",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056954",
          },
        },
      },
    },
    ["6310"] = {
      title = "Baumholder",
      editions = { 
        { 
          pub_year = 1936,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056955",
          },
        },
      },
    },
    ["6311"] = {
      title = "Lauterecken",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1912,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056956",
          },
        },
      },
    },
    ["6312"] = {
      title = "Rockenhausen",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1905,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056957",
          },
        },
      },
    },
    ["6313"] = {
      title = "Dannenfels",
      editions = { 
        { 
          pub_year = 1921,
          rec_year = 1913,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056958",
          },
        },
      },
    },
    ["6314"] = {
      title = "Kirchheimbolanden",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1913,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056959",
          },
        },
      },
    },
    ["6315"] = {
      title = "Pfeddersheim",
      t_now = "Worms-Pfeddersheim",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1904,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056960",
          },
        },
      },
    },
    ["6316"] = {
      title = "Worms",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056961",
          },
        },
      },
    },
    ["6317"] = {
      title = "Bensheim",
    },
    ["6318"] = {
      title = "Laudenbach",
      t_now = "Lindenfels",
      editions = { 
        { 
          pub_year = 1882,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056962",
          },
        },
      },
    },
    ["6319"] = {
      title = "Erbach",
    },
    ["6320"] = {
      title = "Michelstadt",
    },
    ["6321"] = {
      title = "Rippberg",
      t_now = "Amorbach",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056963",
          },
        },
      },
    },
    ["6322"] = {
      title = "Hardheim",
      editions = { 
        { 
          pub_year = 1935,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056965",
          },
        },
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056964",
          },
        },
      },
    },
    ["6323"] = {
      title = "Tauberbischofsheim",
      t_now = "Tauberbischofsheim (West)",
      editions = { 
        { 
          pub_year = 1928,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056967",
          },
        },
        { 
          pub_year = 1886,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056966",
          },
        },
      },
    },
    ["6324"] = {
      title = "Grünsfeld",
      t_now = "Tauberbischofsheim (Ost)",
      editions = { 
        { 
          pub_year = 1932,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056969",
          },
        },
        { 
          pub_year = 1882,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056968",
          },
        },
      },
    },
    ["6325"] = {
      title = "Wittighausen",
      t_now = "Giebelstadt",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056970",
          },
        },
      },
    },
    ["6326"] = {
      title = "Ochsenfurt",
    },
    ["6327"] = {
      title = "Markt Einersheim",
    },
    ["6328"] = {
      title = "Scheinfeld",
    },
    ["6329"] = {
      title = "Baudenbach",
    },
    ["6330"] = {
      title = "Uehlfeld",
    },
    ["6331"] = {
      title = "Röttenbach",
    },
    ["6332"] = {
      title = "Erlangen (Nord)",
    },
    ["6333"] = {
      title = "Gräfenberg",
    },
    ["6334"] = {
      title = "Betzenstein",
    },
    ["6335"] = {
      title = "Auerbach in der Oberpfalz",
    },
    ["6336"] = {
      title = "Vilseck",
    },
    ["6337"] = {
      title = "Kaltenbrunn",
      editions = { 
        { 
          pub_year = 1928,
          rec_year = 1905,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056971",
          },
        },
      },
    },
    ["6338"] = {
      title = "Weiden in der Oberpfalz",
    },
    ["6339"] = {
      title = "Waldthurn",
    },
    ["6340"] = {
      title = "Vohenstrauß",
    },
    ["6341"] = {
      title = "Frankenreuth",
    },
    ["6404"] = {
      title = "Kirf",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056972",
          },
        },
      },
    },
    ["6405"] = {
      title = "Freudenburg",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056973",
          },
        },
      },
    },
    ["6406"] = {
      title = "Losheim",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056974",
          },
        },
      },
    },
    ["6407"] = {
      title = "Wadern",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056975",
          },
        },
      },
    },
    ["6408"] = {
      title = "Nohfelden",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056976",
          },
        },
      },
    },
    ["6409"] = {
      title = "Freisen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056977",
          },
        },
      },
    },
    ["6410"] = {
      title = "Thallichtenberg",
      t_now = "Kusel",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056978",
          },
        },
        { 
          pub_year = 1938,
          rec_year = 1912,
          rec_office = "Königreich Bayern",
          sheet_title = "Kusel",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056979",
          },
        },
      },
    },
    ["6411"] = {
      title = "Wolfstein",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056980",
          },
        },
      },
    },
    ["6412"] = {
      title = "Otterberg",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056981",
          },
        },
      },
    },
    ["6413"] = {
      title = "Winnweiler",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1913,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056982",
          },
        },
      },
    },
    ["6414"] = {
      title = "Grünstadt in der Pfalz (West)",
      t_now = "Grünstadt (West)",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1913,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056983",
          },
        },
      },
    },
    ["6415"] = {
      title = "Grünstadt in der Pfalz (Ost)",
      t_now = "Grünstadt (Ost)",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1913,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056984",
          },
        },
      },
    },
    ["6416"] = {
      title = "Sandhofen",
      t_now = "Mannheim (Nordwest)",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056985",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056986",
          },
        },
      },
    },
    ["6417"] = {
      title = "Käferthal",
      t_now = "Mannheim (Nordost)",
      editions = { 
        { 
          pub_year = 1885,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056987",
          },
        },
      },
    },
    ["6418"] = {
      title = "Weinheim",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056988",
          },
        },
        { 
          pub_year = 1937,
          sheet_title = "Birkenau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056989",
          },
        },
      },
    },
    ["6419"] = {
      title = "Beerfelden",
    },
    ["6420"] = {
      title = "Schloßau",
      t_now = "Mudau-Schloßau",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056990",
          },
        },
      },
    },
    ["6421"] = {
      title = "Buchen",
      t_now = "Buchen im Odenwald",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056991",
          },
        },
      },
    },
    ["6422"] = {
      title = "Walldürn",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056992",
          },
        },
      },
    },
    ["6423"] = {
      title = "Gissigheim",
      t_now = "Ahorn",
      editions = { 
        { 
          pub_year = 1886,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056993",
          },
        },
      },
    },
    ["6424"] = {
      title = "Königshofen",
      t_now = "Lauda-Königshofen",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056995",
          },
        },
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056994",
          },
        },
      },
    },
    ["6425"] = {
      title = "Röttingen",
    },
    ["6426"] = {
      title = "Aub",
    },
    ["6427"] = {
      title = "Uffenheim",
    },
    ["6428"] = {
      title = "Bad Windsheim",
    },
    ["6429"] = {
      title = "Neustadt an der Aisch",
    },
    ["6430"] = {
      title = "Emskirchen",
    },
    ["6431"] = {
      title = "Herzogenaurach",
    },
    ["6432"] = {
      title = "Erlangen (Süd)",
    },
    ["6433"] = {
      title = "Lauf an der Pegnitz",
    },
    ["6434"] = {
      title = "Hersbruck",
    },
    ["6435"] = {
      title = "Pommelsbrunn",
    },
    ["6436"] = {
      title = "Sulzbach-Rosenberg (Nord)",
    },
    ["6437"] = {
      title = "Hirschau",
    },
    ["6438"] = {
      title = "Schnaittenbach",
    },
    ["6439"] = {
      title = "Tännesberg",
    },
    ["6440"] = {
      title = "Moosbach",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1932,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056996",
          },
        },
      },
    },
    ["6441"] = {
      title = "Eslarn",
    },
    ["6501"] = {
      title = "Deutschoth",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056997",
          },
        },
      },
    },
    ["6502"] = {
      title = "Wollmeringen",
      editions = { 
        { 
          pub_year = 1908,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056998",
          },
        },
      },
    },
    ["6503"] = {
      title = "Kattenhofen",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71056999",
          },
        },
      },
    },
    ["6504"] = {
      title = "Sierck",
      t_now = "Perl",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057000",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057001",
          },
        },
      },
    },
    ["6505"] = {
      title = "Merzig",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057002",
          },
        },
      },
    },
    ["6506"] = {
      title = "Reimsbach",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057003",
          },
        },
      },
    },
    ["6507"] = {
      title = "Lebach",
      editions = { 
        { 
          pub_year = 1941,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057004",
          },
        },
      },
    },
    ["6508"] = {
      title = "Ottweiler",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057005",
          },
        },
      },
    },
    ["6509"] = {
      title = "St. Wendel",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1905,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057006",
          },
        },
      },
    },
    ["6510"] = {
      title = "Glan-Münchweiler",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1912,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057007",
          },
        },
      },
    },
    ["6511"] = {
      title = "Landstuhl",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1912,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057008",
          },
        },
      },
    },
    ["6512"] = {
      title = "Kaiserslautern",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057009",
          },
        },
      },
    },
    ["6513"] = {
      title = "Hochspeyer",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057010",
          },
        },
      },
    },
    ["6514"] = {
      title = "Dürkheim (West)",
      t_now = "Bad Dürkheim (West)",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1910,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057011",
          },
        },
      },
    },
    ["6515"] = {
      title = "Dürkheim (Ost)",
      t_now = "Bad Dürkheim (Ost)",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1910,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057012",
          },
        },
      },
    },
    ["6516"] = {
      title = "Mannheim (Süd)",
      t_now = "Mannheim (Südwest)",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Mannheim",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057013",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1910,
          rec_office = "Königreich Bayern",
          sheet_title = "Ludwigshafen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057014",
          },
        },
        { 
          pub_year = 1944,
          rec_year = 1910,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057015",
          },
        },
      },
    },
    ["6517"] = {
      title = "Ladenburg",
      t_now = "Mannheim (Südost)",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057016",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057017",
          },
        },
      },
    },
    ["6518"] = {
      title = "Heidelberg",
      t_now = "Heidelberg (Nord)",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057018",
          },
        },
      },
    },
    ["6519"] = {
      title = "Eberbach",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057019",
          },
        },
      },
    },
    ["6520"] = {
      title = "Zwingenberg",
      t_now = "Waldbrunn",
      editions = { 
        { 
          pub_year = 1923,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057020",
          },
        },
      },
    },
    ["6521"] = {
      title = "Oberschefflenz",
      t_now = "Limbach",
      editions = { 
        { 
          pub_year = 1929,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057021",
          },
        },
      },
    },
    ["6522"] = {
      title = "Adelsheim",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057022",
          },
        },
      },
    },
    ["6523"] = {
      title = "Boxberg",
      editions = { 
        { 
          pub_year = 1886,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057023",
          },
        },
      },
    },
    ["6524"] = {
      title = "Assamstadt",
      t_now = "Bad Mergentheim",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057024",
          },
        },
      },
    },
    ["6525"] = {
      title = "Weikersheim",
    },
    ["6526"] = {
      title = "Creglingen",
    },
    ["6527"] = {
      title = "Burgbernheim",
    },
    ["6528"] = {
      title = "Marktbergel",
    },
    ["6529"] = {
      title = "Markt Erlbach",
    },
    ["6530"] = {
      title = "Langenzenn",
    },
    ["6531"] = {
      title = "Fürth",
    },
    ["6532"] = {
      title = "Nürnberg",
    },
    ["6533"] = {
      title = "Röthenbach an der Pegnitz",
    },
    ["6534"] = {
      title = "Happurg",
    },
    ["6535"] = {
      title = "Alfeld",
    },
    ["6536"] = {
      title = "Sulzbach-Rosenberg (Süd)",
    },
    ["6537"] = {
      title = "Amberg",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1921,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057025",
          },
        },
      },
    },
    ["6538"] = {
      title = "Schmidgaden",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1933,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057026",
          },
        },
      },
    },
    ["6539"] = {
      title = "Nabburg",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1934,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057027",
          },
        },
      },
    },
    ["6540"] = {
      title = "Oberviechtach",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1932,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057028",
          },
        },
      },
    },
    ["6541"] = {
      title = "Tiefenbach",
    },
    ["6542"] = {
      title = "Untergrafenried",
    },
    ["6601"] = {
      title = "Fentsch",
      editions = { 
        { 
          pub_year = 1881,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90017288",
          },
        },
      },
    },
    ["6602"] = {
      title = "Hayingen",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057029",
          },
        },
      },
    },
    ["6603"] = {
      title = "Diedenhofen",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057030",
          },
        },
      },
    },
    ["6604"] = {
      title = "Monneren",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057031",
          },
        },
      },
    },
    ["6605"] = {
      title = "Groß Hemmersdorf",
      t_now = "Hemmersdorf",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057032",
          },
        },
      },
    },
    ["6606"] = {
      title = "Saarlouis",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057033",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057034",
          },
        },
        { 
          pub_year = 1936,
          sheet_title = "Saarlautern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057036",
          },
        },
        { 
          pub_year = 1936,
          sheet_title = "Saarlautern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057035",
          },
        },
      },
    },
    ["6607"] = {
      title = "Heusweiler",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057037",
          },
        },
      },
    },
    ["6608"] = {
      title = "Illingen",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1905,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057038",
          },
        },
      },
    },
    ["6609"] = {
      title = "Neunkirchen",
      t_now = "Neunkirchen an der Saar",
      editions = { 
        { 
          pub_year = 1933,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057039",
          },
        },
      },
    },
    ["6610"] = {
      title = "Homburg",
      editions = { 
        { 
          pub_year = 1929,
          rec_year = 1912,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057040",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1912,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057041",
          },
        },
      },
    },
    ["6611"] = {
      title = "Hermersberg",
      editions = { 
        { 
          pub_year = 1944,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057042",
          },
        },
      },
    },
    ["6612"] = {
      title = "Trippstadt",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1912,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057043",
          },
        },
      },
    },
    ["6613"] = {
      title = "Elmstein",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1910,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057044",
          },
        },
      },
    },
    ["6614"] = {
      title = "Neustadt an der Weinstraße",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1909,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057045",
          },
        },
      },
    },
    ["6615"] = {
      title = "Haßloch",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1909,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057046",
          },
        },
      },
    },
    ["6616"] = {
      title = "Speyer (Altlußheim)",
      t_now = "Speyer",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Altlußheim",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057047",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1898,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057048",
          },
        },
      },
    },
    ["6617"] = {
      title = "Speyer",
      t_now = "Schwetzingen",
      editions = { 
        { 
          pub_year = 1924,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057049",
          },
        },
      },
    },
    ["6618"] = {
      title = "Neckargemünd",
      t_now = "Heidelberg (Süd)",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057050",
          },
        },
      },
    },
    ["6619"] = {
      title = "Epfenbach",
      t_now = "Helmstadt-Bargen",
      editions = { 
        { 
          pub_year = 1936,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057051",
          },
        },
      },
    },
    ["6620"] = {
      title = "Mosbach",
      editions = { 
        { 
          pub_year = 1907,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057052",
          },
        },
      },
    },
    ["6621"] = {
      title = "Böttingerhof; Siglingen",
      t_now = "Billigheim",
      editions = { 
        { 
          pub_year = 1904,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057053",
          },
        },
      },
    },
    ["6622"] = {
      title = "Sennfeld",
      t_now = "Möckmühl",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90017439",
          },
        },
      },
    },
    ["6623"] = {
      title = "Krautheim",
      t_now = "Ingelfingen",
      editions = { 
        { 
          pub_year = 1882,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90017444",
          },
        },
      },
    },
    ["6624"] = {
      title = "Dörzbach",
      t_now = "Mulfingen",
      editions = { 
        { 
          pub_year = 1939,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057054",
          },
        },
      },
    },
    ["6625"] = {
      title = "Schrozberg",
      t_now = "Schrozberg (West)",
      editions = { 
        { 
          pub_year = 1939,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057055",
          },
        },
      },
    },
    ["6626"] = {
      title = "Gammesfeld",
      t_now = "Schrozberg (Ost)",
      editions = { 
        { 
          pub_year = 1944,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057056",
          },
        },
      },
    },
    ["6627"] = {
      title = "Rothenburg ob der Tauber",
    },
    ["6628"] = {
      title = "Leutershausen",
    },
    ["6629"] = {
      title = "Ansbach (Nord)",
    },
    ["6630"] = {
      title = "Heilsbronn",
    },
    ["6631"] = {
      title = "Roßtal",
    },
    ["6632"] = {
      title = "Schwabach",
    },
    ["6633"] = {
      title = "Feucht",
    },
    ["6634"] = {
      title = "Altdorf bei Nürnberg",
    },
    ["6635"] = {
      title = "Lauterhofen",
    },
    ["6636"] = {
      title = "Kastl",
    },
    ["6637"] = {
      title = "Rieden",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1937,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057057",
          },
        },
      },
    },
    ["6638"] = {
      title = "Schwandorf in Bayern",
      t_now = "Schwandorf",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1933,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057058",
          },
        },
      },
    },
    ["6639"] = {
      title = "Wackersdorf",
    },
    ["6640"] = {
      title = "Neunburg vorm Wald",
    },
    ["6641"] = {
      title = "Rötz",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1929,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057059",
          },
        },
      },
    },
    ["6642"] = {
      title = "Waldmünchen",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1927,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057060",
          },
        },
      },
    },
    ["6643"] = {
      title = "Furth im Wald",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1926,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057061",
          },
        },
      },
    },
    ["6644"] = {
      title = "Furth im Wald (Anhang)",
    },
    ["6702"] = {
      title = "Großmövern",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057062",
          },
        },
      },
    },
    ["6703"] = {
      title = "Lüttingen",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057063",
          },
        },
      },
    },
    ["6704"] = {
      title = "Gelmingen",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057064",
          },
        },
      },
    },
    ["6705"] = {
      title = "Busendorf in der Westmark",
      t_now = "Ittersdorf",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057065",
          },
        },
      },
    },
    ["6706"] = {
      title = "Ludweiler",
      t_now = "Ludweiler-Warndt",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057066",
          },
        },
      },
    },
    ["6707"] = {
      title = "Saarbrücken",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057067",
          },
        },
        { 
          pub_year = 1921,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057068",
          },
        },
        { 
          pub_year = 1934,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057069",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057070",
          },
        },
      },
    },
    ["6708"] = {
      title = "St. Johann",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057071",
          },
        },
      },
    },
    ["6709"] = {
      title = "Blieskastel",
    },
    ["6710"] = {
      title = "Zweibrücken",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1911,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057072",
          },
        },
      },
    },
    ["6711"] = {
      title = "Pirmasens (Nord)",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1911,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057073",
          },
        },
      },
    },
    ["6712"] = {
      title = "Merzalben",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1912,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057074",
          },
        },
      },
    },
    ["6713"] = {
      title = "Annweiler",
      t_now = "Annweiler am Trifels",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1910,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057075",
          },
        },
      },
    },
    ["6714"] = {
      title = "Edenkoben",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1909,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057076",
          },
        },
      },
    },
    ["6715"] = {
      title = "Zeiskam",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1898,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057077",
          },
        },
      },
    },
    ["6716"] = {
      title = "Philippsburg",
      t_now = "Germersheim",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057078",
          },
        },
      },
    },
    ["6717"] = {
      title = "Wiesental",
      t_now = "Waghäusel",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057079",
          },
        },
      },
    },
    ["6718"] = {
      title = "Wiesloch",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057080",
          },
        },
      },
    },
    ["6719"] = {
      title = "Sinsheim",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057081",
          },
        },
      },
    },
    ["6720"] = {
      title = "Gundelsheim",
      t_now = "Bad Rappenau",
      editions = { 
        { 
          pub_year = 1882,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90017450",
          },
        },
      },
    },
    ["6721"] = {
      title = "Kochendorf",
      t_now = "Bad Friedrichshall",
      editions = { 
        { 
          pub_year = 1902,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057082",
          },
        },
      },
    },
    ["6722"] = {
      title = "Brettach",
      t_now = "Hardthausen am Kocher",
      editions = { 
        { 
          pub_year = 1933,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057083",
          },
        },
      },
    },
    ["6723"] = {
      title = "Öhringen",
      editions = { 
        { 
          pub_year = 1933,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057084",
          },
        },
      },
    },
    ["6724"] = {
      title = "Künzelsau",
      editions = { 
        { 
          pub_year = 1932,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057085",
          },
        },
      },
    },
    ["6725"] = {
      title = "Gerabronn",
      editions = { 
        { 
          pub_year = 1938,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057086",
          },
        },
      },
    },
    ["6726"] = {
      title = "Rot am See",
    },
    ["6727"] = {
      title = "Schillingsfürst",
    },
    ["6728"] = {
      title = "Herrieden",
    },
    ["6729"] = {
      title = "Ansbach (Süd)",
    },
    ["6730"] = {
      title = "Windsbach",
    },
    ["6731"] = {
      title = "Abenberg",
    },
    ["6732"] = {
      title = "Roth bei Nürnberg",
    },
    ["6733"] = {
      title = "Allersberg",
    },
    ["6734"] = {
      title = "Neumarkt in der Oberpfalz",
    },
    ["6735"] = {
      title = "Deining",
    },
    ["6736"] = {
      title = "Velburg",
    },
    ["6737"] = {
      title = "Schmidmühlen",
    },
    ["6738"] = {
      title = "Burglengenfeld",
    },
    ["6739"] = {
      title = "Bruck in der Oberpfalz",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1937,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057087",
          },
        },
      },
    },
    ["6740"] = {
      title = "Neukirchen-Balbini",
    },
    ["6741"] = {
      title = "Cham (West)",
    },
    ["6742"] = {
      title = "Cham (Ost)",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1928,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057088",
          },
        },
      },
    },
    ["6743"] = {
      title = "Neukirchen beim Heiligen Blut",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1927,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057089",
          },
        },
      },
    },
    ["6744"] = {
      title = "Rittsteig",
    },
    ["6802"] = {
      title = "Gravelotte",
      editions = { 
        { 
          pub_year = 1901,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057090",
          },
        },
      },
    },
    ["6804"] = {
      title = "Bolchen",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057091",
          },
        },
      },
    },
    ["6805"] = {
      title = "Lubeln",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057092",
          },
        },
      },
    },
    ["6806"] = {
      title = "St. Avold",
      t_now = "Lauterbach im Warndt",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057093",
          },
        },
      },
    },
    ["6807"] = {
      title = "Forbach",
      t_now = "Emmersweiler",
      editions = { 
        { 
          pub_year = 1936,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057094",
          },
        },
      },
    },
    ["6808"] = {
      title = "Saargemünd",
      t_now = "Kleinblittersdorf",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057095",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057096",
          },
        },
      },
    },
    ["6809"] = {
      title = "Bliesbrücken",
      t_now = "Gersheim",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057097",
          },
        },
      },
    },
    ["6810"] = {
      title = "Hornbach",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057098",
          },
        },
      },
    },
    ["6811"] = {
      title = "Pirmasens (Süd)",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057099",
          },
        },
      },
    },
    ["6812"] = {
      title = "Dahn",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1912,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057100",
          },
        },
      },
    },
    ["6813"] = {
      title = "Bergzabern",
      t_now = "Bad Bergzabern",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1911,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057101",
          },
        },
      },
    },
    ["6814"] = {
      title = "Landau",
      t_now = "Landau in der Pfalz",
      editions = { 
        { 
          pub_year = 1944,
          rec_year = 1912,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057102",
          },
        },
      },
    },
    ["6815"] = {
      title = "Herxheim",
      t_now = "Herxheim bei Landau",
      editions = { 
        { 
          pub_year = 1943,
          rec_year = 1909,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057103",
          },
        },
      },
    },
    ["6816"] = {
      title = "Graben",
      t_now = "Graben-Neudorf",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057104",
          },
        },
      },
    },
    ["6817"] = {
      title = "Bruchsal",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90017453",
          },
        },
      },
    },
    ["6818"] = {
      title = "Odenheim",
      t_now = "Kraichtal",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057105",
          },
        },
      },
    },
    ["6819"] = {
      title = "Niederhofen (Württ.) - Eppingen (Bad.)",
      t_now = "Eppingen",
      editions = { 
        { 
          pub_year = 1930,
          rec_year = 1877,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057107",
          },
        },
        { 
          pub_year = 1902,
          rec_office = "Königreich Württemberg",
          sheet_title = "Niederhofen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057106",
          },
        },
      },
    },
    ["6820"] = {
      title = "Schwaigern",
      editions = { 
        { 
          pub_year = 1902,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057108",
          },
        },
      },
    },
    ["6821"] = {
      title = "Heilbronn",
      editions = { 
        { 
          pub_year = 1902,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057109",
          },
        },
      },
    },
    ["6822"] = {
      title = "Willsbach",
      t_now = "Obersulm",
      editions = { 
        { 
          pub_year = 1932,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057110",
          },
        },
      },
    },
    ["6823"] = {
      title = "Pfedelbach",
      editions = { 
        { 
          pub_year = 1932,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057111",
          },
        },
      },
    },
    ["6824"] = {
      title = "Hall",
      t_now = "Schwäbisch Hall",
      editions = { 
        { 
          pub_year = 1930,
          rec_year = 1923,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057112",
          },
        },
      },
    },
    ["6825"] = {
      title = "Ilshofen",
      editions = { 
        { 
          pub_year = 1937,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057113",
          },
        },
      },
    },
    ["6826"] = {
      title = "Crailsheim",
      editions = { 
        { 
          pub_year = 1938,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057114",
          },
        },
      },
    },
    ["6827"] = {
      title = "Feuchtwangen (West)",
    },
    ["6828"] = {
      title = "Feuchtwangen (Ost)",
    },
    ["6829"] = {
      title = "Ornbau",
    },
    ["6830"] = {
      title = "Gunzenhausen",
    },
    ["6831"] = {
      title = "Spalt",
    },
    ["6832"] = {
      title = "Heideck",
    },
    ["6833"] = {
      title = "Hilpoltstein",
    },
    ["6834"] = {
      title = "Berching",
    },
    ["6835"] = {
      title = "Wissing",
    },
    ["6836"] = {
      title = "Parsberg",
    },
    ["6837"] = {
      title = "Kallmünz",
    },
    ["6838"] = {
      title = "Regenstauf",
    },
    ["6839"] = {
      title = "Nittenau",
    },
    ["6840"] = {
      title = "Reichenbach",
    },
    ["6841"] = {
      title = "Roding",
    },
    ["6842"] = {
      title = "Miltach",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1928,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057115",
          },
        },
      },
    },
    ["6843"] = {
      title = "Kötzting",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1928,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057116",
          },
        },
      },
    },
    ["6844"] = {
      title = "Lam",
    },
    ["6845"] = {
      title = "Bayerisch Eisenstein",
    },
    ["6901"] = {
      title = "Gorze",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057117",
          },
        },
      },
    },
    ["6902"] = {
      title = "Ars an der Mosel",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057118",
          },
        },
        { 
          pub_year = 1908,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057119",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90017456",
          },
        },
      },
    },
    ["6903"] = {
      title = "Verny",
      editions = { 
        { 
          pub_year = 1876,
          rec_year = 1857,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057120",
          },
        },
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057121",
          },
        },
      },
    },
    ["6905"] = {
      title = "Falkenberg in Lothringen",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057122",
          },
        },
      },
    },
    ["6909"] = {
      title = "Rohrbach bei Bitsch",
      editions = { 
        { 
          pub_year = 1942,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057123",
          },
        },
      },
    },
    ["6910"] = {
      title = "Bitsch",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057124",
          },
        },
      },
    },
    ["6911"] = {
      title = "Stürzelbronn",
      t_now = "Ludwigswinkel",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057125",
          },
        },
      },
    },
    ["6912"] = {
      title = "Lembach",
      t_now = "Fischbach bei Dahn",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057126",
          },
        },
      },
    },
    ["6913"] = {
      title = "Weißenburg",
      t_now = "Oberotterbach",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057127",
          },
        },
      },
    },
    ["6914"] = {
      title = "Schaidt",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1909,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057128",
          },
        },
      },
    },
    ["6915"] = {
      title = "Wörth am Rhein",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Daxlanden; Maxau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057129",
          },
        },
        { 
          pub_year = 1939,
          rec_year = 1909,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057130",
          },
        },
      },
    },
    ["6916"] = {
      title = "Carlsruhe",
      t_now = "Karlsruhe (Nord)",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057131",
          },
        },
      },
    },
    ["6917"] = {
      title = "Weingarten",
      t_now = "Weingarten in Baden",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057132",
          },
        },
      },
    },
    ["6918"] = {
      title = "Knittlingen",
      t_now = "Bretten",
      editions = { 
        { 
          pub_year = 1907,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057133",
          },
        },
        { 
          pub_year = 1929,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057134",
          },
        },
      },
    },
    ["6919"] = {
      title = "Güglingen",
      editions = { 
        { 
          pub_year = 1901,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057135",
          },
        },
      },
    },
    ["6920"] = {
      title = "Lauffen am Neckar",
      t_now = "Brackenheim",
      editions = { 
        { 
          pub_year = 1902,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057136",
          },
        },
      },
    },
    ["6921"] = {
      title = "Großbottwar",
      editions = { 
        { 
          pub_year = 1901,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057137",
          },
        },
      },
    },
    ["6922"] = {
      title = "Löwenstein",
      t_now = "Wüstenrot",
      editions = { 
        { 
          pub_year = 1932,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057138",
          },
        },
      },
    },
    ["6923"] = {
      title = "Sulzbach an der Murr",
      editions = { 
        { 
          pub_year = 1931,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057139",
          },
        },
      },
    },
    ["6924"] = {
      title = "Gaildorf",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057140",
          },
        },
      },
    },
    ["6925"] = {
      title = "Obersontheim",
      editions = { 
        { 
          pub_year = 1936,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057141",
          },
        },
      },
    },
    ["6926"] = {
      title = "Jagstheim",
      t_now = "Stimpfach",
      editions = { 
        { 
          pub_year = 1936,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057142",
          },
        },
      },
    },
    ["6927"] = {
      title = "Dinkelsbühl",
    },
    ["6928"] = {
      title = "Weiltingen",
    },
    ["6929"] = {
      title = "Wassertrüdingen",
    },
    ["6930"] = {
      title = "Heidenheim",
    },
    ["6931"] = {
      title = "Weißenburg in Bayern",
    },
    ["6932"] = {
      title = "Nennslingen",
    },
    ["6933"] = {
      title = "Thalmässing",
    },
    ["6934"] = {
      title = "Beilngries",
    },
    ["6935"] = {
      title = "Dietfurt an der Altmühl",
    },
    ["6936"] = {
      title = "Hemau",
    },
    ["6937"] = {
      title = "Laaber",
    },
    ["6938"] = {
      title = "Regensburg",
    },
    ["6939"] = {
      title = "Donaustauf",
    },
    ["6940"] = {
      title = "Wörth an der Donau",
    },
    ["6941"] = {
      title = "Stallwang",
    },
    ["6942"] = {
      title = "Sankt Englmar",
    },
    ["6943"] = {
      title = "Viechtach",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1931,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057143",
          },
        },
      },
    },
    ["6944"] = {
      title = "Bodenmais",
    },
    ["6945"] = {
      title = "Zwiesel",
      editions = { 
        { 
          pub_year = 1930,
          rec_year = 1926,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057144",
          },
        },
      },
    },
    ["6946"] = {
      title = "Hirschbach",
    },
    ["7003"] = {
      title = "Solgne",
      editions = { 
        { 
          pub_year = 1882,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057145",
          },
        },
      },
    },
    ["7006"] = {
      title = "Groß Tänchen",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057146",
          },
        },
      },
    },
    ["7007"] = {
      title = "Insmingen",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057147",
          },
        },
      },
    },
    ["7008"] = {
      title = "Saar-Buckenheim",
      editions = { 
        { 
          pub_year = 1917,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057148",
          },
        },
      },
    },
    ["7010"] = {
      title = "Saareinsberg",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057149",
          },
        },
      },
    },
    ["7011"] = {
      title = "Niederbronn",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057150",
          },
        },
      },
    },
    ["7012"] = {
      title = "Wörth an der Sauer",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057151",
          },
        },
      },
    },
    ["7013"] = {
      title = "Sulz unterm Wald",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057152",
          },
        },
      },
    },
    ["7014"] = {
      title = "Mothern",
      t_now = "Scheibenhardt",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057153",
          },
        },
      },
    },
    ["7015"] = {
      title = "Lauterburg im Elsass",
      t_now = "Rheinstetten",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Durmersheim",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057154",
          },
        },
        { 
          pub_year = 1884,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057155",
          },
        },
      },
    },
    ["7016"] = {
      title = "Ettlingen",
      t_now = "Karlsruhe (Süd)",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057156",
          },
        },
      },
    },
    ["7017"] = {
      title = "Königsbach",
      t_now = "Pfinztal",
      editions = { 
        { 
          pub_year = 1876,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057157",
          },
        },
      },
    },
    ["7018"] = {
      title = "Ötisheim",
      t_now = "Pforzheim (Nord)",
      editions = { 
        { 
          pub_year = 1905,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057158",
          },
        },
      },
    },
    ["7019"] = {
      title = "Vaihingen an der Enz",
      t_now = "Mühlacker",
      editions = { 
        { 
          pub_year = 1901,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057159",
          },
        },
        { 
          pub_year = 1937,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057160",
          },
        },
      },
    },
    ["7020"] = {
      title = "Bietigheim",
      t_now = "Bietigheim-Bissingen",
      editions = { 
        { 
          pub_year = 1897,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057161",
          },
        },
      },
    },
    ["7021"] = {
      title = "Marbach",
      t_now = "Marbach am Neckar",
      editions = { 
        { 
          pub_year = 1898,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057162",
          },
        },
      },
    },
    ["7022"] = {
      title = "Backnang",
      editions = { 
        { 
          pub_year = 1903,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057163",
          },
        },
      },
    },
    ["7023"] = {
      title = "Murrhardt",
      editions = { 
        { 
          pub_year = 1903,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057164",
          },
        },
      },
    },
    ["7024"] = {
      title = "Gschwend",
      editions = { 
        { 
          pub_year = 1904,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057165",
          },
        },
      },
    },
    ["7025"] = {
      title = "Untergröningen",
      t_now = "Sulzbach-Laufen",
      editions = { 
        { 
          pub_year = 1935,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057166",
          },
        },
      },
    },
    ["7026"] = {
      title = "Ellwangen",
      t_now = "Ellwangen an der Jagst (West)",
      editions = { 
        { 
          pub_year = 1935,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057167",
          },
        },
      },
    },
    ["7027"] = {
      title = "Zöbingen",
      t_now = "Ellwangen an der Jagst (Ost)",
      editions = { 
        { 
          pub_year = 1935,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057168",
          },
        },
      },
    },
    ["7028"] = {
      title = "Unterschneidheim",
      editions = { 
        { 
          pub_year = 1944,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057169",
          },
        },
      },
    },
    ["7029"] = {
      title = "Oettingen in Bayern",
    },
    ["7030"] = {
      title = "Wolferstadt",
    },
    ["7031"] = {
      title = "Treuchtlingen",
    },
    ["7032"] = {
      title = "Bieswang",
    },
    ["7033"] = {
      title = "Titting",
    },
    ["7034"] = {
      title = "Kipfenberg",
    },
    ["7035"] = {
      title = "Schamhaupten",
    },
    ["7036"] = {
      title = "Riedenburg",
    },
    ["7037"] = {
      title = "Kelheim",
    },
    ["7038"] = {
      title = "Bad Abbach",
    },
    ["7039"] = {
      title = "Mintraching",
    },
    ["7040"] = {
      title = "Pfatter",
    },
    ["7041"] = {
      title = "Münster",
    },
    ["7042"] = {
      title = "Bogen",
    },
    ["7043"] = {
      title = "Ruhmannsfelden",
    },
    ["7044"] = {
      title = "Regen",
    },
    ["7045"] = {
      title = "Frauenau",
    },
    ["7046"] = {
      title = "Spiegelau",
    },
    ["7047"] = {
      title = "Finsterau",
    },
    ["7103"] = {
      title = "Erlen",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1880,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057170",
          },
        },
      },
    },
    ["7105"] = {
      title = "Château-Salins",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057171",
          },
        },
      },
    },
    ["7106"] = {
      title = "Duß",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057172",
          },
        },
      },
    },
    ["7110"] = {
      title = "Buchsweiler",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057173",
          },
        },
      },
    },
    ["7111"] = {
      title = "Pfaffenhofen",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057174",
          },
        },
      },
    },
    ["7112"] = {
      title = "Hagenau im Elsass",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057175",
          },
        },
      },
    },
    ["7113"] = {
      title = "Sufflenheim",
      editions = { 
        { 
          pub_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057176",
          },
        },
      },
    },
    ["7114"] = {
      title = "Selz",
      t_now = "Iffezheim",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Iffezheim",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057177",
          },
        },
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057178",
          },
        },
      },
    },
    ["7115"] = {
      title = "Rastatt",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057179",
          },
        },
      },
    },
    ["7116"] = {
      title = "Malsch",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014617",
          },
        },
        { 
          pub_year = 1905,
          rec_office = "Königreich Württemberg",
          sheet_title = "Bernbach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057180",
          },
        },
      },
    },
    ["7117"] = {
      title = "Neuenbürg",
      t_now = "Birkenfeld",
      editions = { 
        { 
          pub_year = 1907,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057181",
          },
        },
      },
    },
    ["7118"] = {
      title = "Wurmberg",
      t_now = "Pforzheim (Süd)",
      editions = { 
        { 
          pub_year = 1906,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057182",
          },
        },
      },
    },
    ["7119"] = {
      title = "Weissach",
      t_now = "Rutesheim",
      editions = { 
        { 
          pub_year = 1900,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057183",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057184",
          },
        },
      },
    },
    ["7120"] = {
      title = "Leonberg",
      t_now = "Stuttgart (Nordwest)",
      editions = { 
        { 
          pub_year = 1896,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057185",
          },
        },
        { 
          pub_year = 1929,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057186",
          },
        },
      },
    },
    ["7121"] = {
      title = "Stuttgart (Nordost) (Cannstatt)",
      t_now = "Stuttgart (Nordost)",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Württemberg",
          sheet_title = "Cannstatt",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057187",
          },
        },
        { 
          pub_year = 1936,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057188",
          },
        },
      },
    },
    ["7122"] = {
      title = "Winnenden",
      editions = { 
        { 
          pub_year = 1904,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057189",
          },
        },
      },
    },
    ["7123"] = {
      title = "Schorndorf",
      editions = { 
        { 
          pub_year = 1932,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057190",
          },
        },
      },
    },
    ["7124"] = {
      title = "Gmünd",
      t_now = "Schwäbisch Gmünd (Nord)",
      editions = { 
        { 
          pub_year = 1932,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057191",
          },
        },
      },
    },
    ["7125"] = {
      title = "Mögglingen",
      editions = { 
        { 
          pub_year = 1934,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057192",
          },
        },
      },
    },
    ["7126"] = {
      title = "Aalen",
      editions = { 
        { 
          pub_year = 1934,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057193",
          },
        },
      },
    },
    ["7127"] = {
      title = "Lauchheim",
      t_now = "Westhausen",
      editions = { 
        { 
          pub_year = 1935,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057194",
          },
        },
      },
    },
    ["7128"] = {
      title = "Nördlingen",
    },
    ["7129"] = {
      title = "Deiningen",
    },
    ["7130"] = {
      title = "Wemding",
    },
    ["7131"] = {
      title = "Monheim",
    },
    ["7132"] = {
      title = "Dollnstein",
    },
    ["7133"] = {
      title = "Eichstätt",
    },
    ["7134"] = {
      title = "Gaimersheim",
    },
    ["7135"] = {
      title = "Kösching",
    },
    ["7136"] = {
      title = "Neustadt an der Donau",
    },
    ["7137"] = {
      title = "Abensberg",
    },
    ["7138"] = {
      title = "Langquaid",
    },
    ["7139"] = {
      title = "Aufhausen",
    },
    ["7140"] = {
      title = "Geiselhöring",
    },
    ["7141"] = {
      title = "Straubing",
    },
    ["7142"] = {
      title = "Straßkirchen",
    },
    ["7143"] = {
      title = "Deggendorf",
    },
    ["7144"] = {
      title = "Lalling",
    },
    ["7145"] = {
      title = "Schöfweg",
    },
    ["7146"] = {
      title = "Grafenau",
    },
    ["7147"] = {
      title = "Freyung",
    },
    ["7148"] = {
      title = "Bischofsreut",
    },
    ["7204"] = {
      title = "Kambrich",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057195",
          },
        },
      },
    },
    ["7206"] = {
      title = "Maizières",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057196",
          },
        },
      },
    },
    ["7207"] = {
      title = "Langenberg",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057197",
          },
        },
      },
    },
    ["7208"] = {
      title = "Saarburg in Lothringen",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057198",
          },
        },
      },
    },
    ["7209"] = {
      title = "Pfalzburg",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057199",
          },
        },
      },
    },
    ["7210"] = {
      title = "Zabern",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057200",
          },
        },
      },
    },
    ["7211"] = {
      title = "Hochfelden",
      editions = { 
        { 
          pub_year = 1888,
          rec_year = 1886,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057201",
          },
        },
      },
    },
    ["7212"] = {
      title = "Brumath",
      editions = { 
        { 
          pub_year = 1914,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057202",
          },
        },
      },
    },
    ["7213"] = {
      title = "Scherzheim",
      t_now = "Lichtenau-Scherzheim",
      editions = { 
        { 
          pub_year = 1906,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057203",
          },
        },
      },
    },
    ["7214"] = {
      title = "Stattmatten",
      t_now = "Sinzheim",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057204",
          },
        },
      },
    },
    ["7215"] = {
      title = "Baden-Baden",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1875,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057205",
          },
        },
      },
    },
    ["7216"] = {
      title = "Loffenau",
      t_now = "Gernsbach",
      editions = { 
        { 
          pub_year = 1901,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057206",
          },
        },
      },
    },
    ["7217"] = {
      title = "Wildbad im Schwarzwald",
    },
    ["7218"] = {
      title = "Neuhausen",
      t_now = "Calw",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057207",
          },
        },
      },
    },
    ["7219"] = {
      title = "Weil der Stadt",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057208",
          },
        },
      },
    },
    ["7220"] = {
      title = "Möhringen",
      t_now = "Stuttgart (Südwest)",
      editions = { 
        { 
          pub_year = 1899,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057209",
          },
        },
        { 
          pub_year = 1911,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057210",
          },
        },
        { 
          pub_year = 1929,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057211",
          },
        },
      },
    },
    ["7221"] = {
      title = "Stuttgart",
      t_now = "Stuttgart (Südost)",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057212",
          },
        },
      },
    },
    ["7222"] = {
      title = "Plochingen",
      editions = { 
        { 
          pub_year = 1904,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057213",
          },
        },
      },
    },
    ["7223"] = {
      title = "Göppingen",
      editions = { 
        { 
          pub_year = 1935,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057214",
          },
        },
      },
    },
    ["7224"] = {
      title = "Lorch",
      t_now = "Schwäbisch Gmünd (Süd)",
      editions = { 
        { 
          pub_year = 1934,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057215",
          },
        },
      },
    },
    ["7225"] = {
      title = "Heubach",
      editions = { 
        { 
          pub_year = 1928,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057216",
          },
        },
      },
    },
    ["7226"] = {
      title = "Oberkochen",
      editions = { 
        { 
          pub_year = 1927,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057217",
          },
        },
      },
    },
    ["7227"] = {
      title = "Elchingen",
      t_now = "Neresheim (West)",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057218",
          },
        },
      },
    },
    ["7228"] = {
      title = "Neresheim (Ost)",
    },
    ["7229"] = {
      title = "Bissingen",
    },
    ["7230"] = {
      title = "Donauwörth",
    },
    ["7231"] = {
      title = "Genderkingen",
    },
    ["7232"] = {
      title = "Burgheim (Nord)",
    },
    ["7233"] = {
      title = "Neuburg an der Donau",
    },
    ["7234"] = {
      title = "Ingolstadt",
    },
    ["7235"] = {
      title = "Vohburg an der Donau",
    },
    ["7236"] = {
      title = "Münchsmünster",
    },
    ["7237"] = {
      title = "Siegenburg",
    },
    ["7238"] = {
      title = "Rottenburg an der Laaber",
    },
    ["7239"] = {
      title = "Mallersdorf",
    },
    ["7240"] = {
      title = "Mengkofen",
    },
    ["7241"] = {
      title = "Pilsting",
    },
    ["7242"] = {
      title = "Wallersdorf",
    },
    ["7243"] = {
      title = "Plattling",
    },
    ["7244"] = {
      title = "Osterhofen",
    },
    ["7245"] = {
      title = "Schöllnach",
    },
    ["7246"] = {
      title = "Tittling",
    },
    ["7247"] = {
      title = "Waldkirchen",
    },
    ["7248"] = {
      title = "Jandelsbrunn",
    },
    ["7249"] = {
      title = "Jandelsbrunn (Anhang)",
    },
    ["7306"] = {
      title = "Elfringen",
      editions = { 
        { 
          pub_year = 1917,
          rec_year = 1881,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057219",
          },
        },
      },
    },
    ["7307"] = {
      title = "Rixingen",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057220",
          },
        },
        { 
          pub_year = 1917,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057221",
          },
        },
      },
    },
    ["7308"] = {
      title = "Alberschweiler",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057222",
          },
        },
      },
    },
    ["7310"] = {
      title = "Wasselnheim",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057223",
          },
        },
      },
    },
    ["7311"] = {
      title = "Truchtersheim",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057224",
          },
        },
      },
    },
    ["7312"] = {
      title = "Schiltigheim",
      t_now = "Kinzigmündung",
      editions = { 
        { 
          pub_year = 1886,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Kinzigmündung",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057225",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057226",
          },
        },
      },
    },
    ["7313"] = {
      title = "Gambsheim",
      t_now = "Rheinau",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057227",
          },
        },
      },
    },
    ["7314"] = {
      title = "Bühl",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057228",
          },
        },
      },
    },
    ["7315"] = {
      title = "Bühlerthal",
      t_now = "Bühlertal",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057229",
          },
        },
      },
    },
    ["7316"] = {
      title = "Enzklösterle",
      t_now = "Forbach",
      editions = { 
        { 
          pub_year = 1899,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057230",
          },
        },
      },
    },
    ["7317"] = {
      title = "Simmersfeld",
      t_now = "Neuweiler",
      editions = { 
        { 
          pub_year = 1894,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057231",
          },
        },
      },
    },
    ["7318"] = {
      title = "Stammheim",
      t_now = "Wildberg",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057232",
          },
        },
      },
    },
    ["7319"] = {
      title = "Aidlingen",
      t_now = "Gärtringen",
      editions = { 
        { 
          pub_year = 1898,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057233",
          },
        },
      },
    },
    ["7320"] = {
      title = "Böblingen",
      editions = { 
        { 
          pub_year = 1900,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057234",
          },
        },
      },
    },
    ["7321"] = {
      title = "Neuhausen auf den Fildern",
      t_now = "Filderstadt",
      editions = { 
        { 
          pub_year = 1899,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057235",
          },
        },
      },
    },
    ["7322"] = {
      title = "Kirchheim unter Teck",
      editions = { 
        { 
          pub_year = 1905,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057236",
          },
        },
      },
    },
    ["7323"] = {
      title = "Weilheim an der Teck",
      editions = { 
        { 
          pub_year = 1905,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057237",
          },
        },
      },
    },
    ["7324"] = {
      title = "Altenstadt",
      t_now = "Geislingen an der Steige (West)",
      editions = { 
        { 
          pub_year = 1933,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057238",
          },
        },
      },
    },
    ["7325"] = {
      title = "Geislingen an der Steige",
      t_now = "Geislingen an der Steige (Ost)",
      editions = { 
        { 
          pub_year = 1925,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057239",
          },
        },
      },
    },
    ["7326"] = {
      title = "Heidenheim",
      t_now = "Heidenheim an der Brenz",
      editions = { 
        { 
          pub_year = 1928,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057240",
          },
        },
      },
    },
    ["7327"] = {
      title = "Giengen",
      t_now = "Giengen an der Brenz",
      editions = { 
        { 
          pub_year = 1931,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057241",
          },
        },
      },
    },
    ["7328"] = {
      title = "Wittislingen",
    },
    ["7329"] = {
      title = "Höchstädt an der Donau",
    },
    ["7330"] = {
      title = "Mertingen",
    },
    ["7331"] = {
      title = "Rain",
    },
    ["7332"] = {
      title = "Burgheim (Süd)",
    },
    ["7333"] = {
      title = "Karlshuld",
    },
    ["7334"] = {
      title = "Reichertshofen",
    },
    ["7335"] = {
      title = "Geisenfeld",
    },
    ["7336"] = {
      title = "Mainburg",
    },
    ["7337"] = {
      title = "Pfeffenhausen",
    },
    ["7338"] = {
      title = "Hohenthann",
    },
    ["7339"] = {
      title = "Ergoldsbach",
    },
    ["7340"] = {
      title = "Dingolfing (West)",
    },
    ["7341"] = {
      title = "Dingolfing (Ost)",
    },
    ["7342"] = {
      title = "Landau an der Isar",
    },
    ["7343"] = {
      title = "Eichendorf",
    },
    ["7344"] = {
      title = "Pleinting",
    },
    ["7345"] = {
      title = "Vilshofen",
    },
    ["7346"] = {
      title = "Hutthurm",
    },
    ["7347"] = {
      title = "Hauzenberg",
    },
    ["7348"] = {
      title = "Wegscheid",
    },
    ["7349"] = {
      title = "Wegscheid (Anhang)",
    },
    ["7408"] = {
      title = "Lascemborn",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057242",
          },
        },
      },
    },
    ["7409"] = {
      title = "Lützelhausen",
      editions = { 
        { 
          pub_year = 1883,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057243",
          },
        },
        { 
          pub_year = 1909,
          rec_year = 1882,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014602",
          },
        },
      },
    },
    ["7410"] = {
      title = "Molsheim",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057244",
          },
        },
      },
    },
    ["7411"] = {
      title = "Geispolsheim",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057245",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014614",
          },
        },
      },
    },
    ["7412"] = {
      title = "Straßburg im Elsass",
      t_now = "Kehl",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Kehl",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057246",
          },
        },
        { 
          pub_year = 1916,
          rec_year = 1916,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057247",
          },
        },
      },
    },
    ["7413"] = {
      title = "Appenweier",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014615",
          },
        },
      },
    },
    ["7414"] = {
      title = "Oberkirch",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057248",
          },
        },
      },
    },
    ["7415"] = {
      title = "Seebach; Allerheiligen",
      t_now = "Seebach",
      editions = { 
        { 
          pub_year = 1875,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057249",
          },
        },
      },
    },
    ["7416"] = {
      title = "Baiersbronn",
      editions = { 
        { 
          pub_year = 1899,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057250",
          },
        },
        { 
          pub_year = 1907,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057251",
          },
        },
      },
    },
    ["7417"] = {
      title = "Altensteig",
      editions = { 
        { 
          pub_year = 1931,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057252",
          },
        },
      },
    },
    ["7418"] = {
      title = "Nagold",
      editions = { 
        { 
          pub_year = 1931,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057253",
          },
        },
      },
    },
    ["7419"] = {
      title = "Herrenberg",
      editions = { 
        { 
          pub_year = 1901,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057254",
          },
        },
      },
    },
    ["7420"] = {
      title = "Tübingen",
      editions = { 
        { 
          pub_year = 1901,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057255",
          },
        },
      },
    },
    ["7421"] = {
      title = "Metzingen",
      editions = { 
        { 
          pub_year = 1901,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057256",
          },
        },
      },
    },
    ["7422"] = {
      title = "Dettingen an der Erms",
      t_now = "Lenningen",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057257",
          },
        },
      },
    },
    ["7423"] = {
      title = "Wiesensteig",
      editions = { 
        { 
          pub_year = 1935,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057258",
          },
        },
      },
    },
    ["7424"] = {
      title = "Deggingen",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057259",
          },
        },
      },
    },
    ["7425"] = {
      title = "Weidenstetten",
      t_now = "Lonsee",
      editions = { 
        { 
          pub_year = 1926,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057260",
          },
        },
      },
    },
    ["7426"] = {
      title = "Dettingen am Albuch",
      t_now = "Langenau",
      editions = { 
        { 
          pub_year = 1926,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057261",
          },
        },
      },
    },
    ["7427"] = {
      title = "Sontheim an der Brenz",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057262",
          },
        },
      },
    },
    ["7428"] = {
      title = "Dillingen an der Donau (West)",
    },
    ["7429"] = {
      title = "Dillingen an der Donau (Ost)",
    },
    ["7430"] = {
      title = "Wertingen",
    },
    ["7431"] = {
      title = "Thierhaupten",
    },
    ["7432"] = {
      title = "Pöttmes",
    },
    ["7433"] = {
      title = "Schrobenhausen",
    },
    ["7434"] = {
      title = "Hohenwart",
    },
    ["7435"] = {
      title = "Pfaffenhofen an der Ilm",
    },
    ["7436"] = {
      title = "Au in der Hallertau",
    },
    ["7437"] = {
      title = "Bruckberg",
    },
    ["7438"] = {
      title = "Landshut (West)",
    },
    ["7439"] = {
      title = "Landshut (Ost)",
    },
    ["7440"] = {
      title = "Aham",
    },
    ["7441"] = {
      title = "Frontenhausen",
    },
    ["7442"] = {
      title = "Arnstorf",
    },
    ["7443"] = {
      title = "Roßbach",
    },
    ["7444"] = {
      title = "Aidenbach",
    },
    ["7445"] = {
      title = "Ortenburg",
    },
    ["7446"] = {
      title = "Passau",
    },
    ["7447"] = {
      title = "Obernzell",
    },
    ["7448"] = {
      title = "Untergriesbach",
    },
    ["7508"] = {
      title = "Blen",
      editions = { 
        { 
          pub_year = 1916,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057263",
          },
        },
      },
    },
    ["7509"] = {
      title = "Schirmeck",
      editions = { 
        { 
          pub_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057264",
          },
        },
      },
    },
    ["7510"] = {
      title = "Barr",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057265",
          },
        },
      },
    },
    ["7511"] = {
      title = "Erstein",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057266",
          },
        },
      },
    },
    ["7512"] = {
      title = "Plobsheim",
      t_now = "Neuried",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057267",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057268",
          },
        },
      },
    },
    ["7513"] = {
      title = "Offenburg",
      editions = { 
        { 
          pub_year = 1928,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057269",
          },
        },
      },
    },
    ["7514"] = {
      title = "Gengenbach",
      editions = { 
        { 
          pub_year = 1874,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057270",
          },
        },
      },
    },
    ["7515"] = {
      title = "Petersthal",
      t_now = "Oppenau",
      editions = { 
        { 
          pub_year = 1885,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057271",
          },
        },
        { 
          pub_year = 1899,
          rec_office = "Königreich Württemberg",
          sheet_title = "Kniebis",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057272",
          },
        },
        { 
          pub_year = 1940,
          rec_year = 1875,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Oppenau",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057273",
          },
        },
      },
    },
    ["7516"] = {
      title = "Freudenstadt",
      editions = { 
        { 
          pub_year = 1910,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057274",
          },
        },
        { 
          pub_year = 1926,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057275",
          },
        },
      },
    },
    ["7517"] = {
      title = "Dornstetten (Württ.) - Dettingen (Preuß.)",
      t_now = "Dornstetten",
      editions = { 
        { 
          pub_year = 1909,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057276",
          },
        },
      },
    },
    ["7518"] = {
      title = "Horb (Württ.) - Imnau (Preuß.)",
      t_now = "Horb am Neckar",
      editions = { 
        { 
          pub_year = 1909,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057277",
          },
        },
      },
    },
    ["7519"] = {
      title = "Rottenburg (Württ.) - Bietenhausen (Preuß.)",
      t_now = "Rottenburg am Neckar",
      editions = { 
        { 
          pub_year = 1909,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057278",
          },
        },
      },
    },
    ["7520"] = {
      title = "Mössingen",
      editions = { 
        { 
          pub_year = 1911,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057279",
          },
        },
      },
    },
    ["7521"] = {
      title = "Reutlingen",
      editions = { 
        { 
          pub_year = 1908,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057280",
          },
        },
        { 
          pub_year = 1910,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057281",
          },
        },
        { 
          pub_year = 1915,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057282",
          },
        },
        { 
          pub_year = 1936,
          rec_year = 1871,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057283",
          },
        },
      },
    },
    ["7522"] = {
      title = "Urach",
      t_now = "Bad Urach",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057284",
          },
        },
      },
    },
    ["7523"] = {
      title = "Böhringen (Münsingen)",
      t_now = "Münsingen",
      editions = { 
        { 
          pub_year = 1901,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057285",
          },
        },
        { 
          pub_year = 1932,
          rec_office = "Königreich Württemberg",
          sheet_title = "Böhringen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057286",
          },
        },
      },
    },
    ["7524"] = {
      title = "Blaubeuren",
      editions = { 
        { 
          pub_year = 1935,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057287",
          },
        },
      },
    },
    ["7525"] = {
      title = "Bermaringen",
      t_now = "Ulm (Nordwest)",
      editions = { 
        { 
          pub_year = 1909,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057288",
          },
        },
        { 
          pub_year = 1926,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057289",
          },
        },
      },
    },
    ["7526"] = {
      title = "Langenau",
      t_now = "Ulm (Nordost)",
      editions = { 
        { 
          pub_year = 1912,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057290",
          },
        },
        { 
          pub_year = 1926,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057291",
          },
        },
      },
    },
    ["7527"] = {
      title = "Schotthof",
      t_now = "Günzburg",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057292",
          },
        },
      },
    },
    ["7528"] = {
      title = "Burgau",
    },
    ["7529"] = {
      title = "Zusmarshausen",
    },
    ["7530"] = {
      title = "Gablingen",
    },
    ["7531"] = {
      title = "Gersthofen",
    },
    ["7532"] = {
      title = "Aichach",
    },
    ["7533"] = {
      title = "Kühbach",
    },
    ["7534"] = {
      title = "Petershausen",
    },
    ["7535"] = {
      title = "Allershausen",
    },
    ["7536"] = {
      title = "Freising (Nord)",
    },
    ["7537"] = {
      title = "Moosburg an der Isar",
    },
    ["7538"] = {
      title = "Buch am Erlbach",
    },
    ["7539"] = {
      title = "Geisenhausen",
    },
    ["7540"] = {
      title = "Vilsbiburg",
    },
    ["7541"] = {
      title = "Gangkofen",
    },
    ["7542"] = {
      title = "Eggenfelden",
    },
    ["7543"] = {
      title = "Pfarrkirchen",
    },
    ["7544"] = {
      title = "Birnbach",
    },
    ["7545"] = {
      title = "Griesbach im Rottal",
    },
    ["7546"] = {
      title = "Neuhau am Inn",
    },
    ["7609"] = {
      title = "Weiler",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057293",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057294",
          },
        },
      },
    },
    ["7610"] = {
      title = "Dambach",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057295",
          },
        },
        { 
          pub_year = 1917,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014637",
          },
        },
      },
    },
    ["7611"] = {
      title = "Benfeld",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057296",
          },
        },
      },
    },
    ["7612"] = {
      title = "Gerstheim",
      t_now = "Lahr-Schwarzwald (West)",
      editions = { 
        { 
          pub_year = 1884,
          rec_year = 1883,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057297",
          },
        },
      },
    },
    ["7613"] = {
      title = "Lahr",
      t_now = "Lahr-Schwarzwald (Ost)",
      editions = { 
        { 
          pub_year = 1932,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057298",
          },
        },
      },
    },
    ["7614"] = {
      title = "Zell am Harmersbach",
      editions = { 
        { 
          pub_year = 1935,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057299",
          },
        },
      },
    },
    ["7615"] = {
      title = "Oberwolfach",
      t_now = "Wolfach",
      editions = { 
        { 
          pub_year = 1926,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057300",
          },
        },
      },
    },
    ["7616"] = {
      title = "Alpirsbach",
      editions = { 
        { 
          pub_year = 1908,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057301",
          },
        },
      },
    },
    ["7617"] = {
      title = "Sulz (Württ.) - Glatt (Preuß.)",
      t_now = "Sulz am Neckar",
      editions = { 
        { 
          pub_year = 1909,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057302",
          },
        },
      },
    },
    ["7618"] = {
      title = "Haigerloch (Preuß.) - Binsdorf (Württ.)",
      t_now = "Haigerloch",
      editions = { 
        { 
          pub_year = 1910,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057303",
          },
        },
      },
    },
    ["7619"] = {
      title = "Hechingen (Preuß.) - Bodelshausen (Württ.)",
      t_now = "Hechingen",
      editions = { 
        { 
          pub_year = 1910,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057304",
          },
        },
      },
    },
    ["7620"] = {
      title = "Talheim (Württ.) - Jungingen (Preuß.)",
      t_now = "Jungingen",
      editions = { 
        { 
          pub_year = 1910,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057305",
          },
        },
      },
    },
    ["7621"] = {
      title = "Trochtelfingen (Preuß.) - Undingen (Württ.)",
      t_now = "Trochtelfingen",
      editions = { 
        { 
          pub_year = 1910,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057306",
          },
        },
      },
    },
    ["7622"] = {
      title = "Buttenhausen",
      t_now = "Hohenstein",
      editions = { 
        { 
          pub_year = 1912,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057307",
          },
        },
      },
    },
    ["7623"] = {
      title = "Mehrstetten",
      editions = { 
        { 
          pub_year = 1912,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057308",
          },
        },
      },
    },
    ["7624"] = {
      title = "Schelklingen",
      editions = { 
        { 
          pub_year = 1912,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057309",
          },
        },
      },
    },
    ["7625"] = {
      title = "Ulm",
      t_now = "Ulm (Südwest)",
      editions = { 
        { 
          pub_year = 1909,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057310",
          },
        },
      },
    },
    ["7626"] = {
      title = "Ulm (Südost) (Neu-Ulm)",
    },
    ["7627"] = {
      title = "Ichenhausen",
    },
    ["7628"] = {
      title = "Jettingen",
    },
    ["7629"] = {
      title = "Dinkelscherben",
    },
    ["7630"] = {
      title = "Westheim bei Augsburg",
    },
    ["7631"] = {
      title = "Augsburg",
    },
    ["7632"] = {
      title = "Dasing",
    },
    ["7633"] = {
      title = "Altomünster",
    },
    ["7634"] = {
      title = "Markt Indersdorf",
    },
    ["7635"] = {
      title = "Haimhausen",
    },
    ["7636"] = {
      title = "Freising (Süd)",
    },
    ["7637"] = {
      title = "Erding",
    },
    ["7638"] = {
      title = "Taufkirchen an der Vils",
    },
    ["7639"] = {
      title = "Velden",
    },
    ["7640"] = {
      title = "Egglkofen",
    },
    ["7641"] = {
      title = "Neumarkt-Sankt Veit",
    },
    ["7642"] = {
      title = "Wurmannsquick",
    },
    ["7643"] = {
      title = "Tann",
    },
    ["7644"] = {
      title = "Triftern",
    },
    ["7645"] = {
      title = "Rotthalmünster",
    },
    ["7646"] = {
      title = "Würding",
    },
    ["7708"] = {
      title = "Eckerich",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057311",
          },
        },
      },
    },
    ["7709"] = {
      title = "Markirch",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057312",
          },
        },
      },
    },
    ["7710"] = {
      title = "Schlettstadt",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057313",
          },
        },
      },
    },
    ["7711"] = {
      title = "Weisweil (Rheinbrücke)",
      t_now = "Weisweil",
      editions = { 
        { 
          pub_year = 1886,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057314",
          },
        },
      },
    },
    ["7712"] = {
      title = "Ettenheim",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057315",
          },
        },
      },
    },
    ["7713"] = {
      title = "Schweighausen",
      t_now = "Schuttertal",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057316",
          },
        },
      },
    },
    ["7714"] = {
      title = "Haslach",
      t_now = "Haslach im Kinzigtal",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057317",
          },
        },
      },
    },
    ["7715"] = {
      title = "Hornberg",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057318",
          },
        },
      },
    },
    ["7716"] = {
      title = "Schiltach",
      t_now = "Schramberg",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057319",
          },
        },
      },
    },
    ["7717"] = {
      title = "Oberndorf",
      t_now = "Oberndorf am Neckar",
      editions = { 
        { 
          pub_year = 1908,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057320",
          },
        },
      },
    },
    ["7718"] = {
      title = "Geislingen am Riedbach",
      t_now = "Geislingen",
      editions = { 
        { 
          pub_year = 1911,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057321",
          },
        },
      },
    },
    ["7719"] = {
      title = "Balingen (Württ.) - Thanheim (Preuß.)",
      t_now = "Balingen",
      editions = { 
        { 
          pub_year = 1911,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057322",
          },
        },
      },
    },
    ["7720"] = {
      title = "Ebingen (Württ.) - Burladingen (Preuß.)",
      t_now = "Albstadt",
      editions = { 
        { 
          pub_year = 1910,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057323",
          },
        },
      },
    },
    ["7721"] = {
      title = "Gammertingen (Preuß.) - Mägerkingen (Württ.)",
      t_now = "Gammertingen",
      editions = { 
        { 
          pub_year = 1910,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057324",
          },
        },
      },
    },
    ["7722"] = {
      title = "Zwiefalten (Württ.) - Kettenacker (Preuß.)",
      t_now = "Zwiefalten",
      editions = { 
        { 
          pub_year = 1912,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057325",
          },
        },
      },
    },
    ["7723"] = {
      title = "Munderkingen",
      editions = { 
        { 
          pub_year = 1913,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057326",
          },
        },
      },
    },
    ["7724"] = {
      title = "Ehingen",
      t_now = "Ehingen an der Donau",
      editions = { 
        { 
          pub_year = 1913,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057327",
          },
        },
      },
    },
    ["7725"] = {
      title = "Laupheim",
      editions = { 
        { 
          pub_year = 1915,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057328",
          },
        },
      },
    },
    ["7726"] = {
      title = "Dietenheim",
      t_now = "Illertissen",
      editions = { 
        { 
          pub_year = 1917,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057329",
          },
        },
      },
    },
    ["7727"] = {
      title = "Buch",
    },
    ["7728"] = {
      title = "Krumbach in Schwaben",
    },
    ["7729"] = {
      title = "Ziemetshausen",
    },
    ["7730"] = {
      title = "Großaitingen",
    },
    ["7731"] = {
      title = "Mering",
    },
    ["7732"] = {
      title = "Mammendorf",
    },
    ["7733"] = {
      title = "Maisach",
    },
    ["7734"] = {
      title = "Dachau",
    },
    ["7735"] = {
      title = "Oberschleißheim",
    },
    ["7736"] = {
      title = "Ismaning",
    },
    ["7737"] = {
      title = "Altenerding",
    },
    ["7738"] = {
      title = "Dorfen",
    },
    ["7739"] = {
      title = "Schwindegg",
    },
    ["7740"] = {
      title = "Ampfing",
    },
    ["7741"] = {
      title = "Mühldorf am Inn",
    },
    ["7742"] = {
      title = "Altötting",
    },
    ["7743"] = {
      title = "Marktl",
    },
    ["7744"] = {
      title = "Simbach am Inn",
    },
    ["7745"] = {
      title = "Rotthalmünster (Anhang)",
    },
    ["7808"] = {
      title = "Urbeis",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          sheet_title = "Rappoltsweiler",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057330",
          },
        },
        { 
          pub_year = 1913,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014673",
          },
        },
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014672",
          },
        },
      },
    },
    ["7809"] = {
      title = "Rappoltsweiler",
      editions = { 
        { 
          pub_year = 1913,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014671",
          },
        },
      },
    },
    ["7811"] = {
      title = "Sasbach",
      t_now = "Wyhl",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057331",
          },
        },
        { 
          pub_year = 1920,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057332",
          },
        },
      },
    },
    ["7812"] = {
      title = "Markolsheim",
      t_now = "Kenzingen",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057333",
          },
        },
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Endingen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057334",
          },
        },
      },
    },
    ["7813"] = {
      title = "Emmendingen",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057335",
          },
        },
      },
    },
    ["7814"] = {
      title = "Elzach",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057336",
          },
        },
      },
    },
    ["7815"] = {
      title = "Triberg",
      t_now = "Triberg im Schwarzwald",
      editions = { 
        { 
          pub_year = 1916,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057337",
          },
        },
      },
    },
    ["7816"] = {
      title = "Königsfeld",
      t_now = "St. Georgen im Schwarzwald",
      editions = { 
        { 
          pub_year = 1910,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057338",
          },
        },
      },
    },
    ["7817"] = {
      title = "Niedereschach",
      t_now = "Rottweil",
      editions = { 
        { 
          pub_year = 1911,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057339",
          },
        },
      },
    },
    ["7818"] = {
      title = "Wehingen (Württ.) - Wilflingen (Preuß.)",
      t_now = "Wehingen",
      editions = { 
        { 
          pub_year = 1911,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057340",
          },
        },
      },
    },
    ["7819"] = {
      title = "Schwenningen",
      t_now = "Meßstetten",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057341",
          },
        },
      },
    },
    ["7820"] = {
      title = "Stetten am kalten Markt",
      t_now = "Winterlingen",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057342",
          },
        },
      },
    },
    ["7821"] = {
      title = "Veringenstadt (Preuß.) - Emerfeld (Württ.)",
      t_now = "Veringenstadt",
      editions = { 
        { 
          pub_year = 1910,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057343",
          },
        },
      },
    },
    ["7822"] = {
      title = "Riedlingen (Württ.) - Langenenslingen (Preuß.)",
      t_now = "Riedlingen",
      editions = { 
        { 
          pub_year = 1911,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057344",
          },
        },
      },
    },
    ["7823"] = {
      title = "Uttenweiler",
      editions = { 
        { 
          pub_year = 1914,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057345",
          },
        },
      },
    },
    ["7824"] = {
      title = "Warthausen",
      t_now = "Biberach an der Riß (Nord)",
      editions = { 
        { 
          pub_year = 1915,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057346",
          },
        },
      },
    },
    ["7825"] = {
      title = "Schwendi",
      editions = { 
        { 
          pub_year = 1918,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057347",
          },
        },
      },
    },
    ["7826"] = {
      title = "Kirchberg an der Iller",
      editions = { 
        { 
          pub_year = 1915,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057348",
          },
        },
      },
    },
    ["7827"] = {
      title = "Babenhausen",
    },
    ["7828"] = {
      title = "Kirchheim in Schwaben",
    },
    ["7829"] = {
      title = "Ettringen",
    },
    ["7830"] = {
      title = "Schwabmünchen",
    },
    ["7831"] = {
      title = "Egling an der Paar",
    },
    ["7832"] = {
      title = "Türkenfeld",
    },
    ["7833"] = {
      title = "Fürstenfeldbruck",
    },
    ["7834"] = {
      title = "München-Pasing",
    },
    ["7835"] = {
      title = "München",
    },
    ["7836"] = {
      title = "München-Trudering",
    },
    ["7837"] = {
      title = "Markt in Schwaben",
    },
    ["7838"] = {
      title = "Albaching",
    },
    ["7839"] = {
      title = "Haag in Oberbayern",
    },
    ["7840"] = {
      title = "Kraiburg am Inn",
    },
    ["7841"] = {
      title = "Garching an der Alz",
    },
    ["7842"] = {
      title = "Burghausen",
    },
    ["7843"] = {
      title = "Burghausen (Anhang (Ost))",
    },
    ["7908"] = {
      title = "Münster im Elsass",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057349",
          },
        },
      },
    },
    ["7910"] = {
      title = "Colmar",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057350",
          },
        },
      },
    },
    ["7911"] = {
      title = "Breisach (Alt)",
      t_now = "Breisach am Rhein",
      editions = { 
        { 
          pub_year = 1926,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057352",
          },
        },
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057351",
          },
        },
        { 
          pub_year = 1885,
          rec_year = 1884,
          sheet_title = "Neubreisach",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057353",
          },
        },
      },
    },
    ["7912"] = {
      title = "Eichstetten",
      t_now = "Freiburg im Breisgau (Nordwest)",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057354",
          },
        },
      },
    },
    ["7913"] = {
      title = "Waldkirch",
      t_now = "Freiburg im Breisgau (Nordost)",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057355",
          },
        },
      },
    },
    ["7914"] = {
      title = "St. Peter",
      t_now = "Sankt Peter",
      editions = { 
        { 
          pub_year = 1928,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057356",
          },
        },
      },
    },
    ["7915"] = {
      title = "Furtwangen",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057357",
          },
        },
      },
    },
    ["7916"] = {
      title = "Villingen",
      t_now = "Villingen-Schwenningen (West)",
      editions = { 
        { 
          pub_year = 1908,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057358",
          },
        },
      },
    },
    ["7917"] = {
      title = "Dürrheim",
      t_now = "Villingen-Schwenningen (Ost)",
      editions = { 
        { 
          pub_year = 1884,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057359",
          },
        },
      },
    },
    ["7918"] = {
      title = "Spaichingen",
      editions = { 
        { 
          pub_year = 1912,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057360",
          },
        },
      },
    },
    ["7919"] = {
      title = "Buchheim",
      t_now = "Mühlheim an der Donau",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057361",
          },
        },
      },
    },
    ["7920"] = {
      title = "Leibertingen",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057362",
          },
        },
      },
    },
    ["7921"] = {
      title = "Göggingen",
      t_now = "Sigmaringen",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057363",
          },
        },
      },
    },
    ["7922"] = {
      title = "Saulgau",
      t_now = "Saulgau (West)",
      editions = { 
        { 
          pub_year = 1915,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057364",
          },
        },
      },
    },
    ["7923"] = {
      title = "Buchau",
      t_now = "Saulgau (Ost)",
      editions = { 
        { 
          pub_year = 1914,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057365",
          },
        },
      },
    },
    ["7924"] = {
      title = "Biberach",
      t_now = "Biberach an der Riß (Süd)",
      editions = { 
        { 
          pub_year = 1915,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057366",
          },
        },
      },
    },
    ["7925"] = {
      title = "Ochsenhausen",
      editions = { 
        { 
          pub_year = 1918,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057367",
          },
        },
      },
    },
    ["7926"] = {
      title = "Erolzheim",
      t_now = "Rot an der Rot",
      editions = { 
        { 
          pub_year = 1915,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057368",
          },
        },
      },
    },
    ["7927"] = {
      title = "Amendingen",
    },
    ["7928"] = {
      title = "Mindelheim",
    },
    ["7929"] = {
      title = "Bad Wörishofen",
    },
    ["7930"] = {
      title = "Buchloe",
    },
    ["7931"] = {
      title = "Landsberg am Lech",
    },
    ["7932"] = {
      title = "Utting am Ammersee",
    },
    ["7933"] = {
      title = "Weßling",
    },
    ["7934"] = {
      title = "Starnberg (Nord)",
    },
    ["7935"] = {
      title = "München-Solln",
    },
    ["7936"] = {
      title = "Zorneding",
    },
    ["7937"] = {
      title = "Grafing bei München",
    },
    ["7938"] = {
      title = "Steinhöring",
    },
    ["7939"] = {
      title = "Wasserburg am Inn",
    },
    ["7940"] = {
      title = "Obing",
    },
    ["7941"] = {
      title = "Trostberg",
    },
    ["7942"] = {
      title = "Tittmoning",
    },
    ["7943"] = {
      title = "Tittmoning (Anhang)",
    },
    ["8007"] = {
      title = "Wildenstein",
      editions = { 
        { 
          pub_year = 1885,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057369",
          },
        },
      },
    },
    ["8008"] = {
      title = "Lautenbach",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057370",
          },
        },
      },
    },
    ["8009"] = {
      title = "Gebweiler",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1884,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057371",
          },
        },
      },
    },
    ["8011"] = {
      title = "Hartheim",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057372",
          },
        },
      },
    },
    ["8012"] = {
      title = "Ehrenstetten",
      t_now = "Freiburg im Breisgau (Südwest)",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014748",
          },
        },
      },
    },
    ["8013"] = {
      title = "Freiburg",
      t_now = "Freiburg im Breisgau (Südost)",
      editions = { 
        { 
          pub_year = 1935,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90014749",
          },
        },
      },
    },
    ["8014"] = {
      title = "Höllsteig",
      t_now = "Hinterzarten",
      editions = { 
        { 
          pub_year = 1881,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057373",
          },
        },
      },
    },
    ["8015"] = {
      title = "Neustadt",
      t_now = "Titisee-Neustadt",
      editions = { 
        { 
          pub_year = 1922,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057374",
          },
        },
      },
    },
    ["8016"] = {
      title = "Donaueschingen",
      editions = { 
        { 
          pub_year = 1921,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057375",
          },
        },
      },
    },
    ["8017"] = {
      title = "Geisingen",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057376",
          },
        },
        { 
          pub_year = 1894,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057377",
          },
        },
      },
    },
    ["8018"] = {
      title = "Tuttlingen",
    },
    ["8019"] = {
      title = "Neuhausen ob Eck",
      editions = { 
        { 
          pub_year = 1900,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Emmingen ab Egg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057378",
          },
        },
        { 
          pub_year = 1926,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057379",
          },
        },
      },
    },
    ["8020"] = {
      title = "Meßkirch",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057380",
          },
        },
      },
    },
    ["8021"] = {
      title = "Pfullendorf",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057381",
          },
        },
      },
    },
    ["8022"] = {
      title = "Königseggwald",
      t_now = "Ostrach",
      editions = { 
        { 
          pub_year = 1936,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057382",
          },
        },
      },
    },
    ["8023"] = {
      title = "Altshausen",
      t_now = "Aulendorf",
      editions = { 
        { 
          pub_year = 1914,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057383",
          },
        },
      },
    },
    ["8024"] = {
      title = "Waldsee",
      t_now = "Bad Waldsee",
      editions = { 
        { 
          pub_year = 1914,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057384",
          },
        },
      },
    },
    ["8025"] = {
      title = "Wurzach",
      t_now = "Bad Wurzach",
      editions = { 
        { 
          pub_year = 1920,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057385",
          },
        },
      },
    },
    ["8026"] = {
      title = "Aitrach",
      editions = { 
        { 
          pub_year = 1921,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057386",
          },
        },
      },
    },
    ["8027"] = {
      title = "Memmingen",
    },
    ["8028"] = {
      title = "Markt Rettenbach",
    },
    ["8029"] = {
      title = "Kaufbeuren-Neugablonz",
    },
    ["8030"] = {
      title = "Waal",
    },
    ["8031"] = {
      title = "Denklingen",
    },
    ["8032"] = {
      title = "Dießen am Ammersee",
    },
    ["8033"] = {
      title = "Tutzing",
    },
    ["8034"] = {
      title = "Starnberg (Süd)",
    },
    ["8035"] = {
      title = "Sauerlach",
    },
    ["8036"] = {
      title = "Otterfing",
    },
    ["8037"] = {
      title = "Glonn",
    },
    ["8038"] = {
      title = "Rott am Inn",
    },
    ["8039"] = {
      title = "Endorf in Oberbayern",
    },
    ["8040"] = {
      title = "Eggstätt",
    },
    ["8041"] = {
      title = "Traunreut",
    },
    ["8042"] = {
      title = "Waging am See",
    },
    ["8043"] = {
      title = "Laufen",
    },
    ["8107"] = {
      title = "Urbis",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057387",
          },
        },
      },
    },
    ["8108"] = {
      title = "Thann",
      editions = { 
        { 
          pub_year = 1897,
          rec_year = 1895,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057388",
          },
        },
      },
    },
    ["8109"] = {
      title = "Sennheim",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057389",
          },
        },
      },
    },
    ["8110"] = {
      title = "Ensisheim",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057390",
          },
        },
      },
    },
    ["8111"] = {
      title = "Rumersheim",
      t_now = "Müllheim",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057391",
          },
        },
      },
    },
    ["8112"] = {
      title = "Staufen (Belchen)",
      t_now = "Staufen im Breisgau",
      editions = { 
        { 
          pub_year = 1928,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057392",
          },
        },
      },
    },
    ["8113"] = {
      title = "Todtnau",
      editions = { 
        { 
          pub_year = 1885,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057393",
          },
        },
      },
    },
    ["8114"] = {
      title = "Feldberg (Altglashütten)",
      t_now = "Feldberg im Schwarzwald",
      editions = { 
        { 
          pub_year = 1926,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057394",
          },
        },
      },
    },
    ["8115"] = {
      title = "Lenzkirch",
      editions = { 
        { 
          pub_year = 1926,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057395",
          },
        },
      },
    },
    ["8116"] = {
      title = "Bonndorf",
      t_now = "Löffingen",
      editions = { 
        { 
          pub_year = 1878,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057396",
          },
        },
      },
    },
    ["8117"] = {
      title = "Blumberg",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057397",
          },
        },
      },
    },
    ["8118"] = {
      title = "Engen",
      editions = { 
        { 
          pub_year = 1894,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057398",
          },
        },
      },
    },
    ["8119"] = {
      title = "Eigeltingen",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057399",
          },
        },
      },
    },
    ["8120"] = {
      title = "Stockach",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057400",
          },
        },
      },
    },
    ["8121"] = {
      title = "Heiligenberg",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057401",
          },
        },
      },
    },
    ["8122"] = {
      title = "Wilhelmsdorf",
      editions = { 
        { 
          pub_year = 1917,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057402",
          },
        },
      },
    },
    ["8123"] = {
      title = "Weingarten",
      editions = { 
        { 
          pub_year = 1914,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057403",
          },
        },
      },
    },
    ["8124"] = {
      title = "Reute",
      t_now = "Wolfegg",
      editions = { 
        { 
          pub_year = 1913,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057404",
          },
        },
      },
    },
    ["8125"] = {
      title = "Diepoldshofen",
      t_now = "Leutkirch im Allgäu (West)",
      editions = { 
        { 
          pub_year = 1920,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057405",
          },
        },
      },
    },
    ["8126"] = {
      title = "Leutkirch",
      t_now = "Leutkirch im Allgäu (Ost)",
      editions = { 
        { 
          pub_year = 1921,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057406",
          },
        },
      },
    },
    ["8127"] = {
      title = "Grönenbach",
    },
    ["8128"] = {
      title = "Obergünzburg",
    },
    ["8129"] = {
      title = "Kaufbeuren",
    },
    ["8130"] = {
      title = "Bidingen",
    },
    ["8131"] = {
      title = "Schongau",
    },
    ["8132"] = {
      title = "Weilheim in Oberbayern",
    },
    ["8133"] = {
      title = "Seeshaupt",
    },
    ["8134"] = {
      title = "Königsdorf",
    },
    ["8135"] = {
      title = "Sachsenkam",
    },
    ["8136"] = {
      title = "Holzkirchen",
    },
    ["8137"] = {
      title = "Bruckmühl",
    },
    ["8138"] = {
      title = "Rosenheim",
    },
    ["8139"] = {
      title = "Stephanskirchen",
    },
    ["8140"] = {
      title = "Prien am Chiemsee",
    },
    ["8141"] = {
      title = "Traunstein",
    },
    ["8142"] = {
      title = "Teisendorf",
    },
    ["8143"] = {
      title = "Freilassing",
    },
    ["8144"] = {
      title = "Freilassing (Anhang)",
    },
    ["8207"] = {
      title = "Masmünster",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057407",
          },
        },
      },
    },
    ["8208"] = {
      title = "Sentheim",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057408",
          },
        },
      },
    },
    ["8209"] = {
      title = "Mülhausen (West)",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057409",
          },
        },
      },
    },
    ["8210"] = {
      title = "Mülhausen (Ost)",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057410",
          },
        },
      },
    },
    ["8211"] = {
      title = "Homburg",
      t_now = "Kandern",
      editions = { 
        { 
          pub_year = 1886,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057411",
          },
        },
      },
    },
    ["8212"] = {
      title = "Wies (Blauen)",
      t_now = "Malsburg-Marzell",
      editions = { 
        { 
          pub_year = 1928,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057412",
          },
        },
      },
    },
    ["8213"] = {
      title = "Schönau (Zell im Wiesental)",
      t_now = "Zell im Wiesental",
      editions = { 
        { 
          pub_year = 1927,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057413",
          },
        },
      },
    },
    ["8214"] = {
      title = "St. Blasien",
      editions = { 
        { 
          pub_year = 1926,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057414",
          },
        },
      },
    },
    ["8215"] = {
      title = "Grafenhausen",
      t_now = "Ühlingen-Birkendorf",
      editions = { 
        { 
          pub_year = 1922,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057415",
          },
        },
      },
    },
    ["8216"] = {
      title = "Stühlingen",
      editions = { 
        { 
          pub_year = 1882,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057416",
          },
        },
      },
    },
    ["8217"] = {
      title = "Wiechs",
      t_now = "Tengen-Wiechs am Randen",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057417",
          },
        },
      },
    },
    ["8218"] = {
      title = "Oberteuringen",
      t_now = "Gottmadingen",
      editions = { 
        { 
          pub_year = 1894,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015124",
          },
        },
      },
    },
    ["8219"] = {
      title = "Radolfzell",
      t_now = "Singen (Hohentwiel)",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057418",
          },
        },
      },
    },
    ["8220"] = {
      title = "Ueberlingen",
      t_now = "Überlingen (West)",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057419",
          },
        },
      },
    },
    ["8221"] = {
      title = "Mainau",
      t_now = "Überlingen (Ost)",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057420",
          },
        },
      },
    },
    ["8222"] = {
      title = "Oberteuringen",
      t_now = "Markdorf",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Markdorf; Adelsreuthe",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057421",
          },
        },
        { 
          pub_year = 1877,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015123",
          },
        },
      },
    },
    ["8223"] = {
      title = "Ravensburg",
      editions = { 
        { 
          pub_year = 1908,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057422",
          },
        },
      },
    },
    ["8224"] = {
      title = "Waldburg",
      t_now = "Vogt",
      editions = { 
        { 
          pub_year = 1908,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057423",
          },
        },
      },
    },
    ["8225"] = {
      title = "Kißlegg",
      editions = { 
        { 
          pub_year = 1907,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057424",
          },
        },
      },
    },
    ["8226"] = {
      title = "Herlazhofen",
      t_now = "Isny im Allgäu (Nord)",
      editions = { 
        { 
          pub_year = 1921,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057425",
          },
        },
      },
    },
    ["8227"] = {
      title = "Kempten im Allgäu",
    },
    ["8228"] = {
      title = "Wildpoldsried",
    },
    ["8229"] = {
      title = "Marktoberdorf",
    },
    ["8230"] = {
      title = "Lechbruck",
    },
    ["8231"] = {
      title = "Peiting",
    },
    ["8232"] = {
      title = "Uffing am Staffelsee",
    },
    ["8233"] = {
      title = "Iffeldorf",
    },
    ["8234"] = {
      title = "Penzberg",
    },
    ["8235"] = {
      title = "Bad Tölz",
    },
    ["8236"] = {
      title = "Tegernsee",
    },
    ["8237"] = {
      title = "Miesbach",
    },
    ["8238"] = {
      title = "Neubeuern",
    },
    ["8239"] = {
      title = "Aschau im Chiemgau",
    },
    ["8240"] = {
      title = "Marquartstein",
    },
    ["8241"] = {
      title = "Ruhpolding",
    },
    ["8242"] = {
      title = "Inzell",
    },
    ["8243"] = {
      title = "Bad Reichenhall",
    },
    ["8244"] = {
      title = "Berchtesgaden (Ost) (Anhang)",
    },
    ["8308"] = {
      title = "Dammerkirch",
      editions = { 
        { 
          pub_year = 1887,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057426",
          },
        },
      },
    },
    ["8309"] = {
      title = "Altkirch",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057488",
          },
        },
      },
    },
    ["8310"] = {
      title = "Landser",
      editions = { 
        { 
          pub_year = 1915,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057487",
          },
        },
      },
    },
    ["8311"] = {
      title = "Lörrach",
      editions = { 
        { 
          pub_year = 1877,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015122",
          },
        },
      },
    },
    ["8312"] = {
      title = "Schopfheim",
      editions = { 
        { 
          pub_year = 1935,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057429",
          },
        },
      },
    },
    ["8313"] = {
      title = "Wehr",
      editions = { 
        { 
          pub_year = 1927,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057430",
          },
        },
      },
    },
    ["8314"] = {
      title = "Görwihl",
      editions = { 
        { 
          pub_year = 1925,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057431",
          },
        },
      },
    },
    ["8315"] = {
      title = "Waldshut",
      t_now = "Waldshut-Tiengen",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057432",
          },
        },
      },
    },
    ["8316"] = {
      title = "Grießen",
      t_now = "Klettgau",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057433",
          },
        },
      },
    },
    ["8317"] = {
      title = "Jestetten",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057434",
          },
        },
      },
    },
    ["8318"] = {
      title = "Gailingen",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057435",
          },
        },
      },
    },
    ["8319"] = {
      title = "Oehningen",
      t_now = "Öhningen",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057436",
          },
        },
      },
    },
    ["8320"] = {
      title = "Reichenau",
      t_now = "Konstanz (West)",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057437",
          },
        },
      },
    },
    ["8321"] = {
      title = "Konstanz",
      t_now = "Konstanz (Ost)",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057438",
          },
        },
      },
    },
    ["8322"] = {
      title = "Immenstaad",
      t_now = "Friedrichshafen",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057439",
          },
        },
        { 
          pub_year = 1905,
          rec_office = "Königreich Württemberg",
          sheet_title = "Friedrichshafen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057440",
          },
        },
      },
    },
    ["8323"] = {
      title = "Tettnang",
      editions = { 
        { 
          pub_year = 1908,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057441",
          },
        },
      },
    },
    ["8324"] = {
      title = "Neukirch (Württ.) - Achberg (Preuß.)",
      t_now = "Wangen im Allgäu (West)",
      editions = { 
        { 
          pub_year = 1911,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057442",
          },
        },
      },
    },
    ["8325"] = {
      title = "Wangen",
      t_now = "Wangen im Allgäu (Ost)",
      editions = { 
        { 
          pub_year = 1920,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057443",
          },
        },
      },
    },
    ["8326"] = {
      title = "Isny",
      t_now = "Isny im Allgäu (Süd)",
      editions = { 
        { 
          pub_year = 1920,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057444",
          },
        },
      },
    },
    ["8327"] = {
      title = "Buchenberg",
    },
    ["8328"] = {
      title = "Nesselwang (West)",
    },
    ["8329"] = {
      title = "Nesselwang (Ost)",
    },
    ["8330"] = {
      title = "Roßhaupten",
    },
    ["8331"] = {
      title = "Bayersoien",
    },
    ["8332"] = {
      title = "Unterammergau",
    },
    ["8333"] = {
      title = "Murnau am Staffelsee",
    },
    ["8334"] = {
      title = "Kochel am See",
    },
    ["8335"] = {
      title = "Lenggries",
    },
    ["8336"] = {
      title = "Rottach-Egern",
    },
    ["8337"] = {
      title = "Josefsthal",
    },
    ["8338"] = {
      title = "Bayrischzell",
    },
    ["8339"] = {
      title = "Oberaudorf",
    },
    ["8340"] = {
      title = "Reit im Winkl",
    },
    ["8341"] = {
      title = "Seegatterl",
    },
    ["8342"] = {
      title = "Schneizlreuth",
    },
    ["8343"] = {
      title = "Berchtesgaden (West)",
    },
    ["8344"] = {
      title = "Berchtesgaden (Ost)",
    },
    ["8408"] = {
      title = "Friesen",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057491",
          },
        },
      },
    },
    ["8409"] = {
      title = "Hirsingen",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057490",
          },
        },
      },
    },
    ["8410"] = {
      title = "Volkensberg",
      editions = { 
        { 
          pub_year = 1914,
          rec_year = 1885,
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057489",
          },
        },
      },
    },
    ["8411"] = {
      title = "Weil am Rhein",
      editions = { 
        { 
          pub_year = 1880,
          rec_year = 1880,
          rec_office = "Großherzogthum Baden",
          sheet_title = "Weil",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/90015121",
          },
        },
        { 
          pub_year = 1887,
          rec_year = 1885,
          sheet_title = "Hüningen",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057448",
          },
        },
        { 
          pub_year = 1942,
          rec_year = 1880,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057449",
          },
        },
      },
    },
    ["8412"] = {
      title = "Wyhlen",
      t_now = "Rheinfelden in Baden",
      editions = { 
        { 
          pub_year = 1928,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057450",
          },
        },
      },
    },
    ["8413"] = {
      title = "Saeckingen",
      t_now = "Bad Säckingen",
      editions = { 
        { 
          pub_year = 1882,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057451",
          },
        },
      },
    },
    ["8414"] = {
      title = "Klein Laufenburg",
      t_now = "Laufenburg in Baden",
      editions = { 
        { 
          pub_year = 1882,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057452",
          },
        },
      },
    },
    ["8415"] = {
      title = "Dangstetten",
      t_now = "Küssaberg; Dangstetten",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057453",
          },
        },
      },
    },
    ["8416"] = {
      title = "Lienheim",
      t_now = "Hohentengen am Hochrhein",
      editions = { 
        { 
          pub_year = 1879,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057454",
          },
        },
      },
    },
    ["8417"] = {
      title = "Blatt 170",
      t_now = "Jestetten",
      editions = { 
        { 
          pub_year = 1883,
          rec_office = "Großherzogthum Baden",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057455",
          },
        },
      },
    },
    ["8423"] = {
      title = "Langenargen",
      t_now = "Kressbronn am Bodensee",
      editions = { 
        { 
          pub_year = 1893,
          rec_office = "Königreich Württemberg",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057456",
          },
        },
      },
    },
    ["8424"] = {
      title = "Lindau am Bodensee",
    },
    ["8425"] = {
      title = "Weiler-Simmerberg",
    },
    ["8426"] = {
      title = "Oberstaufen",
    },
    ["8427"] = {
      title = "Immenstadt im Allgäu",
    },
    ["8428"] = {
      title = "Hindelang",
    },
    ["8429"] = {
      title = "Pfronten",
    },
    ["8430"] = {
      title = "Füssen",
    },
    ["8431"] = {
      title = "Linderhof",
    },
    ["8432"] = {
      title = "Oberammergau",
    },
    ["8433"] = {
      title = "Eschenlohe",
    },
    ["8434"] = {
      title = "Vorderriß",
    },
    ["8435"] = {
      title = "Fall",
    },
    ["8436"] = {
      title = "Rottach-Egern (Anhang (Süd))",
    },
    ["8437"] = {
      title = "Josefsthal (Anhang (Süd))",
    },
    ["8442"] = {
      title = "Hirschbichl",
    },
    ["8443"] = {
      title = "Königssee",
    },
    ["8444"] = {
      title = "Hoher Göll",
    },
    ["8525"] = {
      title = "Balderschwang (Anhang)",
    },
    ["8526"] = {
      title = "Balderschwang",
    },
    ["8527"] = {
      title = "Oberstdorf",
    },
    ["8528"] = {
      title = "Hinterstein",
    },
    ["8531"] = {
      title = "Zugspitze",
    },
    ["8532"] = {
      title = "Garmisch-Partenkirchen",
    },
    ["8533"] = {
      title = "Mittenwald",
    },
    ["8534"] = {
      title = "Östliche Karwendelspitze",
    },
    ["8543"] = {
      title = "Funtensee",
    },
    ["8544"] = {
      title = "Funtensee (Anhang)",
    },
    ["8626"] = {
      title = "Hoher Ifen",
    },
    ["8627"] = {
      title = "Einödsbach",
    },
    ["8628"] = {
      title = "Hochvogel",
    },
    ["8631"] = {
      title = "Zugspitze (Anhang)",
    },
    ["8632"] = {
      title = "Garmisch-Partenkirchen (Anhang)",
    },
    ["8633"] = {
      title = "Mittenwald (Anhang)",
    },
    ["8727"] = {
      title = "Biberkopf",
    },
    ["B028"] = {
      title = "Königshofen im Grabfeld",
      editions = { 
        { 
          pub_year = 1904,
          rec_year = 1901,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057457",
          },
        },
      },
    },
    ["B337"] = {
      title = "Roth bei Nürnberg",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1878,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057458",
          },
        },
      },
    },
    ["B383"] = {
      title = "Gnotzheim",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1876,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057459",
          },
        },
      },
    },
    ["B410"] = {
      title = "Neudorf",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1877,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057460",
          },
        },
      },
    },
    ["B435"] = {
      title = "Pappenheim",
      editions = { 
        { 
          pub_year = 1942,
          rec_year = 1873,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057461",
          },
        },
      },
    },
    ["B463"] = {
      title = "Wellheim",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1873,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057462",
          },
        },
      },
    },
    ["B464"] = {
      title = "Nassenfels",
      editions = { 
        { 
          pub_year = 1937,
          rec_year = 1873,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057463",
          },
        },
      },
    },
    ["B468"] = {
      title = "Neustadt an der Donau",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1897,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057464",
          },
        },
      },
    },
    ["B489"] = {
      title = "Ebermergen",
      editions = { 
        { 
          pub_year = 1939,
          rec_year = 1876,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057465",
          },
        },
      },
    },
    ["B519"] = {
      title = "Mertingen",
      editions = { 
        { 
          pub_year = 1933,
          rec_year = 1872,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057466",
          },
        },
      },
    },
    ["B520"] = {
      title = "Holzheim",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1872,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057467",
          },
        },
      },
    },
    ["B600"] = {
      title = "Neuulm",
      editions = { 
        { 
          pub_year = 1939,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057468",
          },
        },
      },
    },
    ["B638"] = {
      title = "Odelzhausen",
      editions = { 
        { 
          pub_year = 1912,
          rec_year = 1908,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057469",
          },
        },
      },
    },
    ["B639"] = {
      title = "Schwabhausen",
      editions = { 
        { 
          pub_year = 1933,
          rec_year = 1908,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057470",
          },
        },
      },
    },
    ["B640"] = {
      title = "Röhrmoos",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1900,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057471",
          },
        },
      },
    },
    ["B683"] = {
      title = "Pfaffenhausen",
      editions = { 
        { 
          pub_year = 1938,
          rec_year = 1879,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057472",
          },
        },
      },
    },
    ["B759"] = {
      title = "Münsing",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1889,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057473",
          },
        },
      },
    },
    ["B761"] = {
      title = "Dietramszell",
      editions = { 
        { 
          pub_year = 1890,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057474",
          },
        },
      },
    },
    ["B770"] = {
      title = "Oberteisendorf",
      editions = { 
        { 
          pub_year = 1934,
          rec_year = 1888,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057475",
          },
        },
      },
    },
    ["B787"] = {
      title = "Miesbach",
      editions = { 
        { 
          pub_year = 1910,
          rec_year = 1905,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057476",
          },
        },
      },
    },
    ["B812"] = {
      title = "Tegernsee",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1899,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057477",
          },
        },
      },
    },
    ["B813"] = {
      title = "Schliersee",
      editions = { 
        { 
          pub_year = 1924,
          rec_year = 1887,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057478",
          },
        },
      },
    },
    ["B821"] = {
      title = "Reichenhall",
      editions = { 
        { 
          pub_year = 1940,
          rec_year = 1889,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057479",
          },
        },
      },
    },
    ["B849"] = {
      title = "Berchtesgaden",
      editions = { 
        { 
          pub_year = 1880,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057480",
          },
        },
      },
    },
    ["B865"] = {
      title = "Walchensee",
      editions = { 
        { 
          pub_year = 1932,
          rec_year = 1890,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057481",
          },
        },
      },
    },
    ["B875"] = {
      title = "Hinterstein",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1894,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057482",
          },
        },
      },
    },
    ["B881"] = {
      title = "Karwendelspitz",
      editions = { 
        { 
          pub_year = 1941,
          rec_year = 1890,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057483",
          },
        },
      },
    },
    ["B886"] = {
      title = "Höfats",
      editions = { 
        { 
          pub_year = 1930,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057484",
          },
        },
      },
    },
    ["B888"] = {
      title = "Zugspitze",
      editions = { 
        { 
          pub_year = 1932,
          rec_year = 1892,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057485",
          },
        },
        { 
          pub_year = 1941,
          rec_office = "Königreich Bayern",
          urls = { 
            "http://www.deutschefotothek.de/documents/obj/71057486",
          },
        },
      },
    },
}

return mtb