From 7abcb82bc4dc82166799983b7c7bf2d970c05482 Mon Sep 17 00:00:00 2001 From: Pithon Kabiro <pithon.kabiro@hft-stuttgart.de> Date: Thu, 1 Apr 2021 11:36:59 +0200 Subject: [PATCH] Initial commit --- disaggregation_lookahead.py | 946 +++++++++++++++++++++++++ rainau_stat_lines_with_industry.csv | 574 +++++++++++++++ stoeckach_stat_lines_with_industry.csv | 529 ++++++++++++++ 3 files changed, 2049 insertions(+) create mode 100644 disaggregation_lookahead.py create mode 100644 rainau_stat_lines_with_industry.csv create mode 100644 stoeckach_stat_lines_with_industry.csv diff --git a/disaggregation_lookahead.py b/disaggregation_lookahead.py new file mode 100644 index 0000000..e703b01 --- /dev/null +++ b/disaggregation_lookahead.py @@ -0,0 +1,946 @@ +""" +@author: Andrés Lalama +""" + +from locale import atof, setlocale, LC_NUMERIC +import time +from typing import List +import pandas as pd +import math +import array as arr +import sys +import getopt +import json +import subprocess +import time +import os +import platform +from datetime import datetime + + +class Segment(object): + def __init__(self, + id: int, + neighbors=None, + demand=float, + length=None, + totalDistance=None, + isInGrid=False, geometry=None): + self.id = id + self.neighbors: List[int] = neighbors + self.length = length + self.totalDistance = totalDistance + self.demand = demand + self.isInGrid = isInGrid + self.hasUnusedSegments = True + self.geometry = geometry + + +class HeatGrid: + def __init__(self, id: int, targetDemand: float = None, segments=[]): + self.id = id + self.c1 = 368 + self.c2 = 2602.5 + self.a = 0.0725 + # use 'self.targetDemand = targetDemand' in order to use the maximal possible energy demand + self.targetDemand = targetDemand + #self.targetDemand = 33518557 + #self.segmentsFile = "ise_files\\stat_lines_with_industry_v2102.csv" + self.segmentsFile = "ise_files\\Rainau_stat_lines_with_industry.csv" + self.accumulatedDemand = 0 + self.segments = segments + self.availableSegments = [] + self.availableSegmentsCount = 0 + self.investmentCost = 0 + self.totalLength = 0 + self.komMod = [] + self.lookAhead = 2 + self.givenGrid = [] + + def importFromFile(self) -> bool: + if self.segmentsFile.endswith(".csv"): + segmentData = pd.read_csv(self.segmentsFile, sep=";") + + elif self.segmentsFile.endswith(".excel"): + print("found excel") + segmentData = pd.read_excel(self.segmentsFile) + + rightArguments = segmentData + + # setting german locale because of excel files + setlocale(LC_NUMERIC, 'German_Germany.1252') + for index, row in rightArguments.iterrows(): + length = row['Length'] + totalDistance = row['Total Distance'] + demand = row['Total Yearly Heat+DHW demand'] + + if isinstance(length, float) is False: + length = atof(length) + if isinstance(totalDistance, float) is False: + totalDistance = atof(totalDistance) + else: + totalDistance = 0 + if isinstance(demand, float) is False: + demand = atof(demand) + else: + # setting demand to 0 if it the cell is empty + demand = 0 + # converting string to array of int IDs + neighborsString = row['neighbor'] + neighborsString = neighborsString.replace(' ', '') + neighborsString = neighborsString.replace('[', '') + neighborsString = neighborsString.replace(']', '') + + neighbors = [int(s) + for s in neighborsString.split(',') if s.isdigit()] + geometry = row['geometry'] + id = row['ID'] + try: + segId = int(id) + except ValueError: + segId = int(id[:-2]) + newSegment = Segment(id=segId, + neighbors=neighbors, + length=length, totalDistance=totalDistance, demand=demand, geometry=geometry) + self.availableSegments.append(newSegment) + fileNameOnly = "" + if "\\" in self.segmentsFile: + fileNameOnly = self.segmentsFile.split("\\") + elif "/" in self.segmentsFile: + fileNameOnly = self.segmentsFile.split("/") + self.segmentsFile = fileNameOnly[-1] + self.availableSegmentsCount = len(self.availableSegments) + print('Available Segments :', self.availableSegmentsCount) + self.populateNeighbor() + return True + + def importKomModFromFile(self, path: str) -> bool: + if path.endswith(".csv"): + segmentData = pd.read_csv(path, sep=";") + + elif path.endswith(".excel"): + print("found excel") + segmentData = pd.read_excel(path) + + # setting german locale because of excel files + setlocale(LC_NUMERIC, 'German_Germany.1252') + for index, row in segmentData.iterrows(): + cost = row['specificGridCost(kWh)'] + demand = row['totalDemandMean(kWh)'] + grid.komMod.append([cost, demand]) + + print('KomMod Calculations :', len(grid.komMod)) + return True + + def addSegment(self, segment: Segment) -> bool: + """ + addSegments adds a segment to the grid + :param segment: the segment to be added to the grid + :return: true if the segment was added, false if not + """ + if segment.isInGrid: + return False + segment.isInGrid = True + self.segments.append(segment) + self.accumulatedDemand += segment.demand + self.totalLength += (segment.length + segment.totalDistance) + #print('Added Segment:', segment.id) + return True + + def addSegmentById(self, id: int) -> bool: + """ + addSegmentById adds a segment to the grid by a given ID + This method is used when the user provides an existing grid. + :param id: the id of the segment to be added to the grid + :return: true if the segment was added, false if not + """ + for segment in self.availableSegments: + if segment.id == int(id): + #print(f'YES segment ID: ', segment.id) + segment.isInGrid = True + self.segments.append(segment) + self.accumulatedDemand += segment.demand + self.totalLength += (segment.length + segment.totalDistance) + # print( + # f'Adding segment ID: {segment.id:4} - Accumulated demand: {self.accumulatedDemand:13.3f} - Total Length: {self.totalLength:.2f} - Count: {len(self.segments)}') + return True + return False + + def isDemandMet(self) -> bool: + """ + isDemandMet checks wether the grid already has met the heating demand + :return: true if the demand was met, false if not + """ + return (self.accumulatedDemand >= self.targetDemand or math.isclose(self.accumulatedDemand, self.targetDemand, rel_tol=1e-5)) + + def calculateGrid(self): + """ + calculateGrid Runs the algorithm to calculate the grid + """ + highestDemand = self.findHighestDemandNeighbor() + + if highestDemand != None: + self.addSegment(highestDemand) + else: + # Looking for unused segments which are not connected to the grid + stillAvailableSegments = filter( + lambda segment: not segment.isInGrid, self.availableSegments) + startNewGrid = max(stillAvailableSegments, + key=lambda segment: segment.demand) + if startNewGrid != None: + self.addSegment(startNewGrid) + else: + printError() + return + + if self.isDemandMet(): + # if met we are finished + printResults(self) + else: + # continue looking for next best segment + self.calculateGrid() + + def calcGridCost(self): + """ + calcGridCost Runs the algorithm to calculate the grid + """ + q_s = (self.accumulatedDemand/(10**6))*3600 + d_a = 0.0486 * math.log(q_s/self.totalLength) + 0.0007 + self.investmentCost = self.a * \ + (self.c1 + self.c2 * d_a) * self.totalLength + + def populateNeighbor(self): + """ + populateNeighbor Fills a dictionary with segment objects. + The segments are normally delivered as ID strings. + Key = Segment + Values = List of segments neighboring the key segment + """ + for segment in self.availableSegments: + for neighborId in segment.neighbors: + for neighbor in self.availableSegments: + if (neighbor.id == neighborId): + if segment in segNeighborDic: + segNeighborDic[segment].append(neighbor) + else: + segNeighborDic[segment] = [neighbor] + + def findHighestDemandNeighbor(self) -> Segment: + """ + findHighestDemandNeighbor Checks for the neighbor with the highest demand which is not yet part of the grid + :return: true if the demand was met, false if not + """ + + # if the grid has no segments + # look for a segment with the highest demant + # and select it as the starting point + if len(self.segments) == 0: + highestDemand = max(self.availableSegments, + key=lambda segment: segment.demand) + return highestDemand + + score = -1 + bestNeighborObject = None + allCombinations = [] + # iterate through all segments of the grid + for gridSegment in self.segments: + combinations = findPossibilities( + [], gridSegment, self.lookAhead, self) + bestValue = getBestNeighbor(combinations) + if len(bestValue) > 0: + allCombinations.append(bestValue) + + for comb in allCombinations: + # print('all combinations', comb) + if comb[1] > score: + score = comb[1] + bestNeighborObject = comb[0] + return bestNeighborObject + + +def findPossibilities(visitedSegments: List[Segment], startingSegment: Segment, lookAhead: int, grid: HeatGrid) -> List[Segment]: + #print('lookAhead', lookAhead, startingSegment.id, ) + """ + findPossibilities Calculates all possible combinations of segments which can be added to the grid starting com a given segment. + It takes into account how many neighbors to take into account depending of the lookAhead value. + :param visitedSegments: A list of "visited" segments to ignore when looking for further possibilities + :param startingSegment: The "root" segment from where to start looking. It is already part of the grid + :param lookAhead: is the number of further connected segments to also take into consideration + :param grid: The heat grid + :return: A list of all possibilities as an List[List[Segment]] + """ + visited = "" + for segment in visitedSegments: + visited = visited + str(segment.id) + "," + + allCombinationsList = [] + if not startingSegment.hasUnusedSegments: + + return allCombinationsList + + if lookAhead == 0: + allCombinationsList.append([startingSegment]) + return allCombinationsList + hasNeighbors = filter(lambda segment: not segment.isInGrid, + segNeighborDic[startingSegment]) + neighborList = list(hasNeighbors) + if len(neighborList) == 0: + startingSegment.hasUnusedSegments = False + + # add starting segment to the visited segments + newVisitedSegments = [] + visitedSegments + newVisitedSegments.append(startingSegment) + + segmentsNeighbors = filter( + lambda segment: not segment in visitedSegments, neighborList) + currentNotInGrid = list(segmentsNeighbors) + + for nextNeighborSeg in currentNotInGrid: + combinations = findPossibilities( + newVisitedSegments, nextNeighborSeg, lookAhead-1, grid) + + for combination in combinations: + arrayForCombiList = [] + for i in range(len(combination)): + if i == 0: + arrayForCombiList.append(startingSegment) + arrayForCombiList.append(combination[i]) + allCombinationsList.append(arrayForCombiList) + + return allCombinationsList + + +def getBestNeighbor(combinations) -> List[any]: + """ + getBestNeighbor Calculates the best combination out of a combinations list. + The method gives each combination a score by diving the sum of all demands by the sum of all lengths (Σ Q_n / Σ L_n ) + The combination with the highest score is chosen as the best one. + :param tempGridSegments: A list of "visited" segments to ignore when looking for further possibilities + :param neighborSeg: The "root" segment from where to start looking. + :param grid: The heat grid + :return: An array containing the first segment of the best combination and its combination score. + """ + score = 0 + # saves a combination which have the same score as best + areBest = [] + bestNeighbor: Segment + # combinations are List of List of Segments + # combinations[0] = combination[0] = [2 ,3 ,4] + # combination[1] = [2 ,3, 7] + # combination[2] = [2 ,3 ,9] + # combinations[1] = combination[0] = [2 ,5 ,4] + # combination[1] = [2 ,5 ,8] + #print('============') + for combination in combinations: + segString = "" + aggDemand = 0 + aggLength = 0 + for i in range(len(combination)): + if i ==0 : + continue + seg = combination[i] + aggDemand += seg.demand + aggLength += seg.length + segString += str(seg.id) + ", " + if (aggDemand/aggLength) > score: + score = (aggDemand/aggLength) + areBest = [] + areBest.append(combination) + elif (aggDemand/aggLength) == score: + areBest.append(combination) + #print('Combi: ', segString, 'current Score:', score, ' my value: ',str(aggDemand/aggLength) ) + #print('============') + # check if there are many combinations with the same best score + # if it is only one segment choose that one as best + if len(areBest) == 1: + bestNeighbor = areBest[0][1] + + # if there are more than one best segment choose the one with + # the shortest length (which should be cheaper to build) + elif len(areBest) > 1: + for i in range(len(areBest)): + if (i == 0): + bestNeighbor = areBest[i][1] + else: + if (areBest[i][1].demand/areBest[i][1].length) > (bestNeighbor.demand/bestNeighbor.length): + bestNeighbor = areBest[i][1] + + # check if a bestNeighbor was found + try: + bestNeighbor + except NameError: + return [] + else: + return [bestNeighbor, score] + + +def serialize(obj): + if isinstance(obj, Segment): + serial = obj.__dict__ + return serial + return obj.__dict__ + + +segNeighborDic: dict = {} + +grid = HeatGrid(1) + + +def gridCost(grid, total_demand_kWh, total_length_m): + q_s = (total_demand_kWh/(10**6))*3600 + d_a = 0.0486 * math.log(q_s/total_length_m) + 0.0007 + gridInvCostEur = grid.a*(grid.c1 + grid.c2 * d_a) * total_length_m + return gridInvCostEur + +# prints all segments of the grid + + +def exportResult(): + for segment in grid.segments: + print(segment.id) + +# prints help on how to use the script to the command line + + +def printHelp(): + print('') + print('| Option | Fullname | Description') + print('| ------ | --------- | -------------------------------') + print('| -t | target | The target of accumulated demand') + print('| -s | segments | The input file containing the street segments') + print('| -k | kommod | The KomMod file cotaining a list of grids and cost') + print('| -r | rabbitmq | send ') + print('| -g | grid | The IDs to set as existing grid, separated by comma') + print('') + print('example: disaggregation.py -t <target> -i <inputfile> -o <outputfile> -r <rabbitMQServer>') + + +def printError(): + print('---->>>> No segment found : STOPPING <<<<-----') + print('==================================') + print(' Error Results') + print('==================================') + print("Could not find any other possible neighbor") + print("The target demand could not be matched") + + +def printResults(grid): + print('==================================') + print(' Results') + print('==================================') + dem = format(grid.accumulatedDemand, '.2f') + print(f'Accumulated demand (kWh) : {dem}') + + grid.calcGridCost() + + print(f'Investment cost (EUR) : {round(grid.investmentCost,3)}') + print(f'Total grid length (m) : {round(grid.totalLength,3)}') + print('-----------------------------------') + print(f'Please Open the the result file in the result Report') + + +def main(argv): + try: + opts, args = getopt.getopt( + argv, "ht:s:g:k:o:r:", ["target=", "segments=", "grid=", "kommod=", "outfile=", "rabbitmq=", "gui="]) + except getopt.GetoptError: + print('Did not recognize all of the user arguments. Use \'-h\' for help.') + + sys.exit(2) + print('==================================') + print(' ENsource Disaggregation') + print('==================================') + grid.givenGridAvailable = False + for opt, arg in opts: + if opt == '-h': + printHelp() + sys.exit() + elif opt in ("-t", "--target"): + target = arg + grid.targetDemand = float(target) + print('Target (kWh) :', target) + elif opt in ("-c1", "--c1"): + grid.c1 = arg + print('Target (kWh) :', target) + elif opt in ("-s", "--segments"): + grid.segmentsFile = arg + print('Segments file :', grid.segmentsFile) + elif opt in ("-g", "--grid"): + givenGridIds = arg + grid.givenGridAvailable = True + print('Grid IDs :', givenGridIds) + elif opt in ("-k", "--kommod"): + komModFile = arg + grid.importKomModFromFile(komModFile) + elif opt in ("-r", "--rabbitmq"): + inputfile = arg + + grid.importFromFile() + if grid.givenGridAvailable: + grid.givenGridStr = "True" + for id in givenGridIds.split(","): + grid.addSegmentById(id) + else: + grid.givenGridStr = "False" + givenGridIds = "N/A" + print('==================================') + print(' Running Algorithm') + print('==================================') + + maxPossibleDemand = sum(seg.demand for seg in grid.availableSegments) + if grid.targetDemand is None: + grid.targetDemand = maxPossibleDemand + print(f'No target demand provided.') + print(f'Using max possible demand: {round(maxPossibleDemand,3)}') + if grid.targetDemand > maxPossibleDemand: + print(f'---------->> ERROR <<-------------') + print(f'Target demand : {target}') + print(f'Max possible demand : {round(maxPossibleDemand,3)}') + print('The target demand is higher than given segments allow') + print('==================================') + return + start = time.time() + grid.calculateGrid() + end = time.time() + print('Runtime: ',end - start ) + d = datetime.now() + folderName = f'result_{d.year}{d.month}{d.day}{d.hour}{d.minute}{d.second}' + filepathHtml = f'{folderName}.html' + + # create folder for files + os.mkdir(folderName) + + # write html file + resultFileHtml = open(folderName+f'/{folderName}.html', 'w') + wholeGrid = json.dumps(grid.availableSegments, + default=serialize, indent=2) + + # write csv file + resultFileCsv = open(folderName+f'/{folderName}.csv', 'w') + # write headers + headers = 'Segment ID;Demand (kWh);Length (m);Total Distance (m);Acc. Demand (kWh);Total Grid Length(m);Acc. Grid Cost (EUR);Spec. Grid Cost (EUR/kWh)' + resultFileCsv.write(headers) + accDemand = 0 + totalGridLength = 0 + accCost = 0 + for seg in grid.segments: + accDemand += seg.demand + totalGridLength += (seg.length + seg.totalDistance) + accCost = gridCost(grid, accDemand, totalGridLength) + specCost = accCost / accDemand + resultFileCsv.write("\n") + resultFileCsv.write( + f'{seg.id};{seg.demand};{seg.length};{seg.totalDistance};{accDemand};{totalGridLength};{accCost};{specCost}') + + resultFileCsv.close() + + # write json file + # delete attributes to avoid cycles in the data + delattr(grid, 'availableSegments') + delattr(grid, 'komMod') + jsonResultGrid = json.dumps(grid, default=serialize, indent=2) + resultFileJson = open(folderName+f'/{folderName}.json', 'w') + resultReport = """<html> + <head> + <meta charset=\"UTF-8\"> + <style> + h1 { + text-align: center; + color: #002C55; + } + + h2 { + text-align: left; + font-size: 25px; + font-weight: \"bold\"; + color: #002C55; + } + + h1 span { + color: #549925; + } + + table { + border-collapse: collapse; + border: 1px solid #DFDCDC; + border-spacing: 0; + + } + + th { + background-color: #549925; + + color: white; + + text-align: left; + padding: 8px; + } + + td { + text-align: left; + padding: 8px; + } + + tr:nth-child(even) { + background-color: #e7f4d9; + } + + table th, + table td { + border-top: 1px #efe9e3; + border-right: 0px #efe9e3; + border-bottom: 0px #efe9e3; + border-left: 1px #efe9e3; + } + + input[type=\"file\"] { + z-index: -1; + position: absolute; + visibility: hidden; + + } + + .button { + float: left; + padding: 12px 18px; + margin-right: 10px; + cursor: pointer; + border-radius: 3px; + background-color: #549925; + font-size: 14px; + font-weight: bold; + color: #fff; + } + + .button2 { + float: left; + padding: 6px 9px; + cursor: pointer; + margin-top: 20px; + margin-left: 15px; + border-radius: 5px; + background-color: #549925; + font-size: 12px; + font-weight: bold; + color: #fff; + width: 30px; + } + </style> +</head> + +<body> + <h1><span>EN</span>source Disaggregation Report</h1> + <h2 style=\"float:left; width: 100%;\">Run Results</h2> + <table style=\"float:left; width: 49%; margin-right: 10;\"> + <tr> + <th>Target Demand (kWh)</th> + <td id=\"target-demand\">N/A</td> + </tr> + <tr> + <th>Results File</th> + <td id=\"file-name\">N/A</td> + </tr> + <tr> + <th>Segments File</th> + <td id=\"segments-file-name\">"""+grid.segmentsFile+"""</td> + </tr> + <tr> + <th>Available Segments</th> + <td id=\"available-segments\">N/A</td> + </tr> + <tr> + <th>Grid provided</th> + <td id=\"grid-provided\">"""+grid.givenGridStr+"""</td> + </tr> + </table> + + + <table style=\"float:left;width: 49%;\"> + <tr> + <th>Accumulated demand (kWh)</th> + <td id=\"accumulated-demand\">N/A</td> + </tr> + <tr> + <th>Investment cost (EUR)</th> + <td id=\"investment-cost\">N/A</td> + </tr> + <tr> + <th>Total grid length (m)</th> + <td id=\"total-length\">N/A</td> + </tr> + <tr> + <th>Used segments</th> + <td id=\"used-segments\">N/A</td> + </tr> + <tr> + <th>Grid provided IDs</th> + <td id=\"grid-provided-ids\">"""+givenGridIds+"""</td> + </tr> + </table> + + <h2 id=\"calculate-grid-title\" style=\"float:left;\">Calculated Grid</h2> + <button class=\"button2\" id=\"toggle-table\" onclick=\"toggleItem('result-table','toggle-table')\">-</button> + <table id=\"result-table\" border=1 style=\"width: 99%;\"> + <tr> + <th> Segment ID </th> + <th> Demand (kWh)</th> + <th> Length (m)</th> + <th> Acc. Demand (kWh)</th> + <th> Acc. Length (m)</th> + <th> Acc. Grid Cost (EUR)</th> + </table> + <h2 id=\"calculate-grid-title\" style=\"float:left;\">Grid Visualization</h2> + <button class=\"button2\" id=\"toggle-vis\" onclick=\"toggleItem('canvas-wrapper','toggle-vis')\">-</button> + <div id=\"canvas-wrapper\" style=\"width: 100%;float: left\"> + <button class=\"button2\" style=\"width: 100px; margin-left:0px\" onclick=\"toggleResult()\">Toggle Result</button> + <canvas id=\"grid-canvas\" width=\"1280\" height=\"720\"></canvas> + </div> +</body> +<script> + + const c1 = """+str(grid.c1)+"""; + const c2 = """+str(grid.c2)+"""; + const a = """+str(grid.a)+"""; + function readSingleFile(e) { + var file = e.target.files[0]; + if (!file) { + return; + } + var reader = new FileReader(); + reader.onload = function (e) { + var contents = e.target.result; + console.log(contents) + setFileName(file); + displayTable(JSON.parse(contents)); + drawGrid(JSON.parse(contents)) + }; + reader.readAsText(file); + } + + function setFileName(file) { + const element = document.getElementById('file-name'); + element.textContent = file; + } + + function rescaleX(x, minMax) { + return ((1270 - 10) * (x - minMax[0]) / (minMax[1] - minMax[0])) + 10 + } + + function rescaleY(x, minMaY) { + return ((10 - 710) * (x - minMaY[0]) / (minMaY[1] - minMaY[0])) + 710 + } + + const minMaxX = [Number.POSITIVE_INFINITY, 0]; + const minMaxY = [Number.POSITIVE_INFINITY, 0]; + function drawBaseGrid(grid) { + const canvas = document.getElementById('grid-canvas'); + var ctx = canvas.getContext(\"2d\"); + ctx.lineWidth = 1; + ctx.strokeStyle = \"black\"; + + for (var segment in grid) { + const onlyCoords = grid[segment].geometry.substring(12, grid[segment].geometry.length - 1); + const lines = onlyCoords.split(\",\") + for (var i = 0; i < lines.length; i++) { + + lines[i] = lines[i].trim(); + const xyCoords = lines[i].split(\" \") + + // check x + // check minimal + if (xyCoords[0] < minMaxX[0]) { + minMaxX[0] = xyCoords[0] + } + // check maximal + if (xyCoords[0] > minMaxX[1]) { + minMaxX[1] = xyCoords[0] + } + + // check y + // check minimal + if (xyCoords[1] < minMaxY[0]) { + minMaxY[0] = xyCoords[1] + } + // check maximal + if (xyCoords[1] > minMaxY[1]) { + minMaxY[1] = xyCoords[1] + } + } + } + for (var segment in grid) { + const onlyCoords = grid[segment].geometry.substring(12, grid[segment].geometry.length - 1); + const lines = onlyCoords.split(\",\") + for (var i = 0; i < lines.length; i++) { + lines[i] = lines[i].trim(); + const xyCoords = lines[i].split(\" \") + // console.log(xyCoords) + // if (i === 0) + // ctx.moveTo(xyCoords[0].substring(3), xyCoords[1].substring(3)) + // else + // ctx.lineTo(xyCoords[0].substring(3), xyCoords[1].substring(3)) + if (i === 0) + ctx.moveTo(rescaleX(xyCoords[0], minMaxX), rescaleY( + xyCoords[1], minMaxY)) + else + ctx.lineTo(rescaleX(xyCoords[0], minMaxX), rescaleY( + xyCoords[1], minMaxY)) + } + ctx.stroke(); + } + } + + function drawGrid(grid) { + const canvas = document.getElementById('grid-canvas'); + var ctx = canvas.getContext(\"2d\"); + for (var segment in grid.segments) { + const onlyCoords = grid.segments[segment].geometry.substring(12, grid.segments[segment].geometry.length - 1); + const lines = onlyCoords.split(\",\") + ctx.beginPath(); + + ctx.lineWidth = 5; + ctx.strokeStyle = \"red\"; + for (var i = 0; i < lines.length; i++) { + lines[i] = lines[i].trim(); + const xyCoords = lines[i].split(\" \") + + if (i === 0) + ctx.moveTo(rescaleX(xyCoords[0], minMaxX), rescaleY( + xyCoords[1], minMaxY)) + else + ctx.lineTo(rescaleX(xyCoords[0], minMaxX), rescaleY( + xyCoords[1], minMaxY)) + } + ctx.stroke(); + } + } + + function toggleItem(item, source) { + const x = document.getElementById(item); + const btn = document.getElementById(source); + if (x.style.visibility === \"collapse\") { + x.style.visibility = \"visible\"; + btn.textContent = \"-\"; + } else { + x.style.visibility = \"collapse\"; + btn.textContent = \"+\"; + } + } + function displayTable(grid) { + const table = document.getElementById('result-table'); + table.children = null; + //element.texContent = JSON.stringify(result); + const tblBody = document.createElement(\"tbody\"); + let accDemand = 0; + let accLength = 0; + // creating all cells + + const target = document.getElementById('target-demand'); + target.textContent = grid.targetDemand; + const availSegments = document.getElementById('available-segments'); + availSegments.textContent = grid.availableSegmentsCount; + const accumulatedDemand = document.getElementById('accumulated-demand'); + accumulatedDemand.textContent = grid.accumulatedDemand; + const investmentCost = document.getElementById('investment-cost'); + investmentCost.textContent = grid.investmentCost.toFixed(3); + const totalLength = document.getElementById('total-length'); + totalLength.textContent = grid.totalLength; + + const calcGridTitle = document.getElementById('used-segments'); + calcGridTitle.textContent = `${grid.segments.length}`; + + + for (var segment in grid.segments) { + var row = document.createElement(\"tr\"); + + const id = document.createElement(\"td\"); + let cellText = document.createTextNode(grid.segments[segment].id); + id.appendChild(cellText); + + const demand = document.createElement(\"td\"); + cellText = document.createTextNode(grid.segments[segment].demand); + demand.appendChild(cellText); + + const length = document.createElement(\"td\"); + cellText = document.createTextNode(grid.segments[segment].length); + length.appendChild(cellText); + + var accDemandCell = document.createElement(\"td\"); + cellText = document.createTextNode(accDemand += grid.segments[segment].demand); + accDemandCell.appendChild(cellText); + + var accLengthCell = document.createElement(\"td\"); + cellText = document.createTextNode((accLength += grid.segments[segment].length).toFixed(3)); + accLengthCell.appendChild(cellText); + + var accCostCell = document.createElement(\"td\"); + cellText = document.createTextNode( + (gridCost(accDemand,accLength)).toFixed(3)); + accCostCell.appendChild(cellText); + + row.appendChild(id); + row.appendChild(demand); + row.appendChild(length); + row.appendChild(accDemandCell); + row.appendChild(accLengthCell); + row.appendChild(accCostCell); + + // add the row to the end of the table body + tblBody.appendChild(row); + } + + // put the <tbody> in the <table> + if (table.children[1]) table.children[1].replaceWith(tblBody); + else table.appendChild(tblBody); + } + + function gridCost(total_demand_kWh, total_length_m){ + const q_s = (total_demand_kWh/(10**6))*3600; + const d_a = 0.0486 * Math.log(q_s / total_length_m) + 0.0007; + grid_investment_cost_EUR = a*(c1 + c2 * d_a) * total_length_m; + return grid_investment_cost_EUR; + } + + function init() { + setFileName(\""""+f'{folderName}.json'+"""\"); + displayTable(grid); + drawBaseGrid(wholeGrid); + drawGrid(grid) + }; + + // clear the canvas + var resultVisible = true; + + function toggleResult(){ + const canvas = document.getElementById('grid-canvas'); + var ctx = canvas.getContext(\"2d\"); + ctx.clearRect(0,0,canvas.width,canvas.height); + drawBaseGrid(wholeGrid); + if(resultVisible){ + resultVisible = false; + }else { + drawGrid(grid); + resultVisible = true; + } + } + const grid = """+jsonResultGrid+"""; + const wholeGrid = """+wholeGrid+"""; + window.onload = init(); +</script> + +</html>""" + + resultFileHtml.write(resultReport) + resultFileHtml.close() + resultFileJson.write(jsonResultGrid) + resultFileJson.close() + # open results file + # if platform.system() == 'Darwin': # macOS + # subprocess.call(('open', filepathHtml)) + # elif platform.system() == 'Windows': # Windows + # os.startfile(folderName+f'/{filepathHtml}') + # else: # linux variants + # subprocess.call(('xdg-open', filepathHtml)) + + +if __name__ == "__main__": + main(sys.argv[1:]) diff --git a/rainau_stat_lines_with_industry.csv b/rainau_stat_lines_with_industry.csv new file mode 100644 index 0000000..613ff0b --- /dev/null +++ b/rainau_stat_lines_with_industry.csv @@ -0,0 +1,574 @@ +ID;GMLId;Stat PrimaryUsageZoneType;Stat Class year of construction;Building Count;Total Yearly Heat+DHW demand;January Heating Demand;February Heating Demand;March Heating Demand;April Heating Demand;May Heating Demand;June Heating Demand;July Heating Demand;August Heating Demand;September Heating Demand;October Heating Demand;November Heating Demand;December Heating Demand;Total Distance;Length;geometry;neighbor +4,0;['DEBW_001000eaUU2', 'DEBW_001000eaUU8', 'DEBW_001000eaUU9', 'DEBW_001000eaUU4', 'DEBW_001000eaUU5', 'DEBW_001000eaUU6', 'DEBW_001000eaUU7', 'DEBW_001000eaUUa', 'DEBW_001000eaUUb', 'DEBW_001000eaUUc', 'DEBW_001000eaURB', 'DEBW_001000eaURC', 'DEBW_001000eaURz', 'DEBW_001000eaURw', 'DEBW_001000eaURx', 'DEBW_001000eaUUd', 'DEBW_001000eaUUe', 'DEBW_001000eaUUg'];Counter({'non-heated': 9, 'residential': 6, 'office and administration': 2, 'industry': 1});Counter({'1972-1990': 7, 'Before 1948': 4, '1949-1971': 3, '1991-2010': 3, 'After 2011': 1});18,0;247729,0;37869,0;27421,0;17736,0;4049,0;208,0;2,0;0,0;0,0;585,0;7409,0;22936,0;35340,0;426,0;139,968;LINESTRING (3583218.748489811 5419510.643760404, 3583222.974786099 5419511.919236491, 3583244.71468841 5419521.742749697, 3583256.806577565 5419531.978445283, 3583268.482127192 5419536.212663246, 3583289.160854875 5419540.492385629, 3583300.603698289 5419534.779247263, 3583312.465612311 5419517.704701135, 3583339.255928148 5419528.104577934);[54, 55] +5,0;['DEBW_001000eaUDQ', 'DEBW_001000eaUDS', 'DEBW_001000eaUEm'];Counter({'residential': 2, 'office and administration': 1});Counter({'1949-1971': 2, '1972-1990': 1});3,0;39678,0;6960,0;5129,0;3420,0;705,0;24,0;0,0;0,0;0,0;86,0;1382,0;4433,0;6566,0;45,4;48,157;LINESTRING (3583548.62356131 5421624.522636247, 3583564.976078189 5421628.393934096, 3583584.907571856 5421630.16109088, 3583596.221668288 5421629.351974524);[6, 7] +6,0;['DEBW_001000eaUE1', 'DEBW_001000eaUDR', 'DEBW_001000eaUE3', 'DEBW_001000eaUE8', 'DEBW_001000eaUE4', 'DEBW_001000eaUMl', 'DEBW_001000eaUMm'];Counter({'residential': 3, 'non-heated': 3, 'office and administration': 1});Counter({'Before 1948': 2, '1972-1990': 2, '1991-2010': 2, '1949-1971': 1});7,0;74974,0;13321,0;10091,0;7225,0;1955,0;83,0;0,0;0,0;0,0;274,0;3339,0;8794,0;12601,0;117,5;58,586;LINESTRING (3583547.016415369 5421607.057620579, 3583586.187595518 5421616.654675223, 3583593.219190099 5421619.896844314, 3583596.303916156 5421623.86955005, 3583596.221668288 5421629.351974524);[5, 7] +7,0;['DEBW_001000eaUEa', 'DEBW_001000eaUEb', 'DEBW_001000eaUEh', 'DEBW_001000eaUEi'];Counter({'office and administration': 2, 'non-heated': 1, 'residential': 1});Counter({'Before 1948': 2, '1972-1990': 2});4,0;74066,0;12951,0;9964,0;7351,0;2267,0;129,0;1,0;0,0;0,0;323,0;3260,0;8509,0;12153,0;54,1;65,027;LINESTRING (3583648.684217262 5421665.577224016, 3583642.529919748 5421661.024507953, 3583633.965655287 5421655.401187085, 3583628.91697301 5421651.410108803, 3583623.124115882 5421644.260047692, 3583620.439458004 5421640.00413027, 3583596.221668288 5421629.351974524);[5, 6, 553, 540] +8,0;['DEBW_001000eaUNV'];Counter({'residential': 1});Counter({'Before 1948': 1});1,0;10479,0;1898,0;1426,0;989,0;185,0;2,0;0,0;0,0;0,0;15,0;441,0;1248,0;1799,0;22,8;145,346;LINESTRING (3582114.920358846 5423217.16751626, 3582121.507401883 5423223.638102769, 3582139.012583901 5423246.464770826, 3582152.215787641 5423275.8017345, 3582157.038234806 5423298.074360447, 3582157.114210113 5423330.176442799, 3582152.98917299 5423350.036881219);[9, 10, 132] +9,0;['DEBW_001000eaUNY', 'DEBW_001000eaUNW'];Counter({'industry': 2});Counter({'1949-1971': 1, '1972-1990': 1});2,0;63246,0;4176,0;2327,0;688,0;21,0;0,0;0,0;0,0;0,0;0,0;38,0;1194,0;3518,0;40,5;201,278;LINESTRING (3582114.920358846 5423217.16751626, 3582076.594185889 5423237.869782346, 3582095.055967619 5423332.008776428, 3582099.503509606 5423336.979571562, 3582110.256645985 5423340.664073925, 3582123.395525595 5423343.54954911, 3582152.98917299 5423350.036881219);[8, 10, 132] +10,0;['DEBW_001000eaUO0'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;33672,0;2971,0;1675,0;508,0;16,0;0,0;0,0;0,0;0,0;0,0;42,0;1002,0;2604,0;19,8;298,237;LINESTRING (3582242.799488102 5423555.780815348, 3582223.443802236 5423553.181439607, 3582194.976798394 5423549.368725026, 3582176.975668389 5423543.352496326, 3582155.695508287 5423530.647526218, 3582137.215096626 5423512.411308262, 3582119.783930508 5423489.096293935, 3582111.088579711 5423471.093438705, 3582107.926230991 5423457.97729881, 3582113.150865149 5423431.603843526, 3582144.163791456 5423368.660083685, 3582152.98917299 5423350.036881219);[326, 8, 9, 152] +12,0;['DEBW_001000eyVJe', 'DEBW_001000eyVJh', 'DEBW_001000eyVIM'];Counter({'residential': 3});Counter({'1972-1990': 2, '1991-2010': 1});3,0;70723,0;12769,0;9589,0;6630,0;1494,0;59,0;0,0;0,0;0,0;211,0;2992,0;8360,0;12062,0;53,1;43,759;LINESTRING (3586179.062264172 5421377.503221366, 3586222.800905033 5421378.84716921);[13, 14, 564, 570] +13,0;['DEBW_001000eyVJg', 'DEBW_001000eyVJc', 'DEBW_001000eyVJn', 'DEBW_001000eyVJm', 'DEBW_001000eyVJl', 'DEBW_001000eyVJk', 'DEBW_001000eyVJj', 'DEBW_001000eyVJi', 'DEBW_001000eyVJ7', 'DEBW_001000eyVJ6', 'DEBW_001000eyVJ4', 'DEBW_001000eyVJ3', 'DEBW_001000eyVJ2', 'DEBW_001000eyVJ1', 'DEBW_001000eyVJ0', 'DEBW_001000eyVIZ', 'DEBW_001000eyVIY', 'DEBW_001000eyVJ9', 'DEBW_001000eyVIX', 'DEBW_001000eyVJ8'];Counter({'residential': 11, 'non-heated': 9});Counter({'1972-1990': 8, '1949-1971': 7, 'Before 1948': 3, '1991-2010': 1, 'After 2011': 1});20,0;227525,0;40211,0;30110,0;20659,0;4261,0;132,0;0,0;0,0;0,0;535,0;9021,0;26245,0;37981,0;303,3;169,452;LINESTRING (3586149.795303387 5421344.704522206, 3586163.903830805 5421330.584872182, 3586181.849585172 5421314.811626845, 3586213.135329319 5421313.771656294, 3586225.890035728 5421316.104636559, 3586244.992486376 5421332.172893767, 3586248.044829161 5421341.919542684, 3586246.701218826 5421352.0097166, 3586238.812536574 5421362.065341725, 3586222.800905033 5421378.84716921);[12, 14, 564, 565] +14,0;['DEBW_001000eyVIF', 'DEBW_001000eyVIN', 'DEBW_001000eyVIL', 'DEBW_001000eyVIK', 'DEBW_001000eyVIH', 'DEBW_001000eyVIG', 'DEBW_001000eyVIV', 'DEBW_001000eyVIU', 'DEBW_001000eyVIS', 'DEBW_001000eyVIQ', 'DEBW_001000eyVIW'];Counter({'residential': 7, 'non-heated': 4});Counter({'Before 1948': 4, '1972-1990': 3, '1949-1971': 3, '1991-2010': 1});11,0;126392,0;22755,0;17019,0;11506,0;2152,0;60,0;0,0;0,0;0,0;259,0;4938,0;14882,0;21532,0;170,5;190,632;LINESTRING (3586135.337201899 5421421.753709264, 3586144.360115463 5421430.769472389, 3586167.795815022 5421454.323616537, 3586185.650246403 5421456.279320938, 3586209.237733169 5421457.211453059, 3586212.923495938 5421455.388656328, 3586224.368415777 5421444.765123605, 3586242.43767193 5421424.789425398, 3586248.227590919 5421414.412121362, 3586243.137355549 5421400.41824701, 3586222.800905033 5421378.84716921);[12, 13, 569, 570] +16,0;['DEBW_001000eaUY0'];Counter({'office and administration': 1});Counter({'1949-1971': 1});1,0;19365,0;3425,0;2629,0;1924,0;597,0;50,0;2,0;0,0;0,0;116,0;892,0;2240,0;3217,0;369,8;353,404;LINESTRING (3583120.880231177 5420078.068970227, 3583116.940977055 5420096.908197227, 3583105.603211989 5420154.67882346, 3583097.435268065 5420206.379073416, 3583090.31727775 5420258.473165315, 3583082.646670265 5420314.696783437, 3583076.336770357 5420381.451914433, 3583073.349610404 5420427.92374297);[104, 105, 15, 17] +20,0;['DEBW_001000eaUFT', 'DEBW_001000eaUFJ', 'DEBW_001000eaUFL', 'DEBW_001000eaUFU'];Counter({'residential': 2, 'office and administration': 1, 'non-heated': 1});Counter({'1991-2010': 2, '1949-1971': 1, '1972-1990': 1});4,0;86043,0;15987,0;12038,0;8489,0;2292,0;153,0;3,0;0,0;0,0;397,0;3920,0;10537,0;15149,0;86,5;59,273;LINESTRING (3583550.796909035 5421837.383440712, 3583500.499130429 5421824.038233665, 3583494.054781782 5421820.749358957);[65, 66, 19, 21] +21,0;['DEBW_001000eaUEp'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;53444,0;5322,0;3162,0;1097,0;46,0;0,0;0,0;0,0;0,0;0,0;108,0;1967,0;4738,0;19,7;69,296;LINESTRING (3583525.703240311 5421769.824094433, 3583513.911667714 5421769.258056899, 3583506.73875438 5421773.010255867, 3583495.569133566 5421815.065931412, 3583494.054781782 5421820.749358957);[19, 20] +28,0;['DEBW_001000eaUMT', 'DEBW_001000eaUMQ', 'DEBW_001000eaUMR', 'DEBW_001000eaUJN'];Counter({'non-heated': 2, 'residential': 2});Counter({'1972-1990': 2, '1949-1971': 1, '1991-2010': 1});4,0;24633,0;4539,0;3303,0;2183,0;410,0;13,0;0,0;0,0;0,0;53,0;923,0;2916,0;4281,0;64,2;71,101;LINESTRING (3583275.451476303 5421536.076838234, 3583269.800619154 5421529.196235408, 3583257.556891851 5421520.103765999, 3583239.195955546 5421510.319309871, 3583214.971946484 5421500.491858269);[481, 27, 29, 287] +29,0;['DEBW_001000eaUMP', 'DEBW_001000eaUMO'];Counter({'residential': 1, 'non-heated': 1});Counter({'1949-1971': 1, '1991-2010': 1});2,0;15678,0;2728,0;2054,0;1428,0;345,0;15,0;0,0;0,0;0,0;41,0;604,0;1785,0;2575,0;14,0;26,544;LINESTRING (3583206.730818419 5421525.707040244, 3583210.003179005 5421517.135561283, 3583214.971946484 5421500.491858269);[27, 28] +30,0;['DEBW_001000eaUQh', 'DEBW_001000eaUQj', 'DEBW_001000eaUQd', 'DEBW_001000eaUQe', 'DEBW_001000eaUQf', 'DEBW_001000eaUQg', 'DEBW_001000eaUQc', 'DEBW_001000eaUQx', 'DEBW_001000eaUQu', 'DEBW_001000eaUQw', 'DEBW_001000eaUQq', 'DEBW_001000eaUQr', 'DEBW_001000eaUQs'];Counter({'non-heated': 6, 'residential': 6, 'event location': 1});Counter({'1972-1990': 7, '1949-1971': 6});13,0;146344,0;26838,0;20192,0;14111,0;3326,0;181,0;4,0;0,0;1,0;568,0;6478,0;17766,0;25378,0;169,5;134,915;LINESTRING (3583408.947986386 5419796.710159586, 3583433.998253691 5419831.176921037, 3583440.320128724 5419840.359010255, 3583449.571228119 5419852.221096602, 3583468.89299965 5419864.778972461, 3583501.986109168 5419892.347852621);[178, 506] +33,0;['DEBW_001000eaUGx', 'DEBW_001000eaUGD'];Counter({'non-heated': 2});Counter({'1972-1990': 2});2,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;22,3;34,93;LINESTRING (3583386.472661688 5421864.164470384, 3583396.650121662 5421858.955477759, 3583403.259273295 5421851.234903549, 3583408.084672497 5421838.804840001);[32, 34, 459, 153] +34,0;['DEBW_001000eaUGw', 'DEBW_001000eaUGy'];Counter({'residential': 2});Counter({'Before 1948': 1, '1949-1971': 1});2,0;13574,0;2648,0;1898,0;1187,0;174,0;4,0;0,0;0,0;0,0;19,0;494,0;1699,0;2519,0;31,4;40,014;LINESTRING (3583423.056268686 5421801.722303588, 3583414.344444652 5421825.050364627, 3583408.084672497 5421838.804840001);[32, 33, 365, 366] +35,0;['DEBW_001000eyVOT', 'DEBW_001000eyVOM', 'DEBW_001000eyVOZ', 'DEBW_001000eyVOW', 'DEBW_001000eyVOV', 'DEBW_001000eyVOU', 'DEBW_001000eyVHC', 'DEBW_001000eyVGT', 'DEBW_001000eyVGS', 'DEBW_001000eyVGR', 'DEBW_001000eyVGW', 'DEBW_001000eyVGV', 'DEBW_001000eyVGU'];Counter({'non-heated': 6, 'residential': 4, 'office and administration': 3});Counter({'1972-1990': 4, 'Before 1948': 4, '1949-1971': 3, '1991-2010': 2});13,0;129524,0;24024,0;18079,0;12703,0;3255,0;188,0;2,0;0,0;0,0;526,0;5749,0;15750,0;22768,0;289,0;69,696;LINESTRING (3585694.950005639 5420887.660511808, 3585626.905428376 5420872.577355247);[36, 37] +36,0;['DEBW_001000eyVH4', 'DEBW_001000eyVH0', 'DEBW_001000eyVGZ', 'DEBW_001000eyVGY', 'DEBW_001000eyVGX', 'DEBW_001000eyVHd', 'DEBW_001000eyVHc', 'DEBW_001000eyVHb', 'DEBW_001000eyVHf'];Counter({'residential': 5, 'non-heated': 4});Counter({'1972-1990': 3, '1991-2010': 3, '1949-1971': 2, 'Before 1948': 1});9,0;82059,0;15205,0;11324,0;7874,0;1962,0;107,0;0,0;0,0;0,0;299,0;3489,0;9956,0;14382,0;170,4;81,178;LINESTRING (3585633.131391415 5420793.220460848, 3585622.193452711 5420831.43836007, 3585626.720179611 5420867.457867653, 3585626.905428376 5420872.577355247);[35, 37, 300, 190] +37,0;['DEBW_001000eyVGP', 'DEBW_001000eyVGO', 'DEBW_001000eyVGN', 'DEBW_001000eyVHj', 'DEBW_001000eyVHi', 'DEBW_001000eyVHh', 'DEBW_001000eyVHg'];Counter({'residential': 4, 'non-heated': 3});Counter({'1991-2010': 5, '1972-1990': 1, '1949-1971': 1});7,0;62517,0;12107,0;8963,0;6188,0;1516,0;78,0;0,0;0,0;0,0;243,0;2767,0;7917,0;11501,0;106,4;73,583;LINESTRING (3585613.665437184 5420944.707711624, 3585627.144860518 5420882.758701423, 3585626.905428376 5420872.577355247);[35, 36, 189, 190] +38,0;['DEBW_001000eaUI4', 'DEBW_001000eaUI2', 'DEBW_001000eaUHW', 'DEBW_001000eaUHZ'];Counter({'residential': 3, 'non-heated': 1});Counter({'1972-1990': 3, '1949-1971': 1});4,0;50106,0;8727,0;6589,0;4621,0;1065,0;37,0;0,0;0,0;0,0;140,0;2029,0;5724,0;8242,0;57,4;51,295;LINESTRING (3583294.849118965 5421971.210288924, 3583285.419458269 5421974.461861621, 3583275.566416995 5421975.148825981, 3583270.531162482 5421978.599576144, 3583267.263983221 5421982.910978925, 3583255.074873741 5421998.679265022);[39, 40, 311, 188] +39,0;['DEBW_001000eaUGW', 'DEBW_001000eaUGX', 'DEBW_001000eaUHG', 'DEBW_001000eaUID', 'DEBW_001000eaUIE', 'DEBW_001000eaUIF', 'DEBW_001000eaUIG', 'DEBW_001000eaUIA', 'DEBW_001000eaUIB', 'DEBW_001000eaUIC', 'DEBW_001000eaUI8', 'DEBW_001000eaUHY', 'DEBW_001000eaUII', 'DEBW_001000eaUGS', 'DEBW_001000eaUGT', 'DEBW_001000eaUH6', 'DEBW_001000eaUGU', 'DEBW_001000eaUGN', 'DEBW_001000eaUGO', 'DEBW_001000eaUGP', 'DEBW_001000eaUGQ', 'DEBW_001000eaUGM', 'DEBW_001000eaUIe', 'DEBW_001000eaUIf', 'DEBW_001000eaUIg', 'DEBW_001000eaUIa', 'DEBW_001000eaUIb', 'DEBW_001000eaUIc', 'DEBW_001000eaUIt', 'DEBW_001000eaUIu', 'DEBW_001000eaUIv', 'DEBW_001000eaUIw', 'DEBW_001000eaUIp', 'DEBW_001000eaUIq', 'DEBW_001000eaUIr', 'DEBW_001000eaUIs', 'DEBW_001000eaUIl', 'DEBW_001000eaUIm', 'DEBW_001000eaUIn', 'DEBW_001000eaUIo', 'DEBW_001000eaUIh', 'DEBW_001000eaUIi', 'DEBW_001000eaUIk', 'DEBW_001000eaUIx', 'DEBW_001000eaUIy', 'DEBW_001000eaUIz'];Counter({'residential': 27, 'non-heated': 18, 'industry': 1});Counter({'1972-1990': 25, '1949-1971': 10, 'Before 1948': 5, 'After 2011': 3, '1991-2010': 3});46,0;567497,0;102069,0;76400,0;52873,0;12113,0;530,0;2,0;0,0;0,0;1753,0;23504,0;66840,0;96595,0;730,0;396,125;LINESTRING (3583127.631306927 5421857.772150459, 3583108.06146315 5421904.530609774, 3583102.323953176 5421921.162936419, 3583099.91566523 5421944.552097521, 3583099.016020117 5421954.749612103, 3583100.867468576 5421965.255107448, 3583106.948458783 5421979.149467647, 3583122.99825106 5421997.363671327, 3583133.666543465 5422008.834941332, 3583140.097511757 5422020.877019008, 3583143.659419963 5422031.185593865, 3583145.195325734 5422041.219232764, 3583151.948527513 5422051.308482653, 3583161.356566336 5422059.802279647, 3583179.386137186 5422074.976252604, 3583188.171922929 5422079.000474876, 3583198.241778867 5422078.995102924, 3583218.312169494 5422077.737599241, 3583233.268151511 5422074.93552693, 3583244.814768897 5422069.780090593, 3583258.075602972 5422052.904373046, 3583262.033519347 5422044.053968362, 3583262.195777944 5422029.763300803, 3583259.181977336 5422009.274140393, 3583255.074873741 5421998.679265022);[102, 103, 40, 38] +41,0;['DEBW_001000eaUPu'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;8715,0;1037,0;633,0;250,0;13,0;0,0;0,0;0,0;0,0;0,0;31,0;427,0;936,0;29,3;51,154;LINESTRING (3582943.081002808 5423969.598726004, 3582991.23600993 5423986.856167769);[3] +42,0;['DEBW_001000eaULC', 'DEBW_001000eaULD', 'DEBW_001000eaULc', 'DEBW_001000eaULd', 'DEBW_001000eaULf', 'DEBW_001000eaUL8', 'DEBW_001000eaUL9'];Counter({'residential': 4, 'non-heated': 3});Counter({'1991-2010': 3, '1972-1990': 3, 'After 2011': 1});7,0;74251,0;13902,0;10340,0;7176,0;1731,0;82,0;0,0;0,0;0,0;265,0;3223,0;9107,0;13181,0;83,0;96,896;LINESTRING (3583367.395995839 5421755.351624569, 3583355.281384338 5421728.853311895, 3583346.26706153 5421700.877543438, 3583342.780523536 5421697.299398786, 3583337.678955826 5421696.833797217, 3583310.54561179 5421704.692495539);[497, 43, 44] +43,0;['DEBW_001000eaULG', 'DEBW_001000eaULH', 'DEBW_001000eaULI', 'DEBW_001000eaULJ', 'DEBW_001000eaULE', 'DEBW_001000eaULF', 'DEBW_001000eaUKZ', 'DEBW_001000eaULi', 'DEBW_001000eaULj', 'DEBW_001000eaULo', 'DEBW_001000eaULp', 'DEBW_001000eaULk', 'DEBW_001000eaULm', 'DEBW_001000eaULn', 'DEBW_001000eaUKH', 'DEBW_001000eaUKI', 'DEBW_001000eaUKV', 'DEBW_001000eaUKW', 'DEBW_001000eaUKR', 'DEBW_001000eaUKS', 'DEBW_001000eaUKT', 'DEBW_001000eaUKU', 'DEBW_001000eaUKN', 'DEBW_001000eaUKO', 'DEBW_001000eaUL0', 'DEBW_001000eaUKP', 'DEBW_001000eaUKQ', 'DEBW_001000eaUKM'];Counter({'non-heated': 15, 'residential': 13});Counter({'1949-1971': 11, '1972-1990': 7, '1991-2010': 4, 'After 2011': 3, 'Before 1948': 3});28,0;169465,0;31155,0;22955,0;15365,0;3099,0;112,0;0,0;0,0;0,0;408,0;6506,0;20206,0;29478,0;428,3;203,002;LINESTRING (3583310.54561179 5421704.692495539, 3583308.057555683 5421705.41166529, 3583286.236003948 5421718.80017372, 3583262.337907859 5421739.220857974, 3583249.494393148 5421757.059391186, 3583250.615485363 5421761.002566872, 3583260.034460581 5421761.921901672, 3583314.386011452 5421755.682247529, 3583345.475630362 5421753.789072274, 3583367.395995839 5421755.351624569);[497, 42, 44] +44,0;['DEBW_001000eaULh', 'DEBW_001000eaULa', 'DEBW_001000eaULb', 'DEBW_001000eaUL7'];Counter({'residential': 2, 'non-heated': 2});Counter({'1972-1990': 3, 'After 2011': 1});4,0;27465,0;4898,0;3661,0;2556,0;614,0;26,0;0,0;0,0;0,0;83,0;1119,0;3203,0;4638,0;49,5;50,864;LINESTRING (3583377.748803993 5421804.06966774, 3583377.866119194 5421796.229686419, 3583377.263950132 5421784.063204112, 3583375.499509354 5421770.711413969, 3583368.992793384 5421758.845898862, 3583367.395995839 5421755.351624569);[552, 42, 43, 366] +45,0;['DEBW_001000eaUJz', 'DEBW_001000eaUJu', 'DEBW_001000eaUJv', 'DEBW_001000eaUJw', 'DEBW_001000eaUJs', 'DEBW_001000eaUJt'];Counter({'non-heated': 3, 'residential': 3});Counter({'1949-1971': 2, '1972-1990': 2, 'After 2011': 1, '1991-2010': 1});6,0;63505,0;11872,0;8878,0;6089,0;1384,0;65,0;0,0;0,0;0,0;217,0;2781,0;7800,0;11267,0;98,4;32,227;LINESTRING (3583086.10809047 5421737.613819898, 3583076.047079451 5421706.997886674);[46, 47] +46,0;['DEBW_001000eaUJA', 'DEBW_001000eaUJn'];Counter({'residential': 2});Counter({'1972-1990': 1, '1991-2010': 1});2,0;26257,0;4706,0;3516,0;2414,0;523,0;19,0;0,0;0,0;0,0;71,0;1086,0;3078,0;4442,0;28,0;28,649;LINESTRING (3583099.756939799 5421692.27971785, 3583086.624037831 5421696.622083416, 3583076.047079451 5421706.997886674);[331, 332, 45, 47] +47,0;['DEBW_001000eaUJq', 'DEBW_001000eaUJr', 'DEBW_001000eaUJo', 'DEBW_001000eaUJp'];Counter({'residential': 2, 'non-heated': 2});Counter({'1972-1990': 2, 'After 2011': 1, '1949-1971': 1});4,0;38156,0;7230,0;5354,0;3620,0;794,0;35,0;0,0;0,0;0,0;117,0;1631,0;4710,0;6837,0;50,8;21,396;LINESTRING (3583063.328932315 5421689.912444183, 3583068.84256483 5421695.678490138, 3583076.047079451 5421706.997886674);[45, 46] +51,0;['DEBW_001000eyVJb'];Counter({'non-heated': 1});Counter({'1991-2010': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;7,9;29,394;LINESTRING (3586103.288686151 5421343.640960196, 3586122.933620715 5421321.776040511);[565, 157] +54,0;['DEBW_001000eaURA', 'DEBW_001000eaURD', 'DEBW_001000eaURy'];Counter({'residential': 2, 'non-heated': 1});Counter({'1972-1990': 3});3,0;81016,0;13828,0;10438,0;7337,0;1692,0;55,0;0,0;0,0;0,0;203,0;3231,0;9051,0;13063,0;76,3;100,718;LINESTRING (3583188.883340244 5419606.556535192, 3583199.440887278 5419560.898486033, 3583215.596422086 5419520.418314521, 3583218.748489811 5419510.643760404);[256, 257, 4, 55, 255] +55,0;['DEBW_001000eaUU3', 'DEBW_001000eaUUh', 'DEBW_001000eaUUi', 'DEBW_001000eaUUj', 'DEBW_001000eaUUk', 'DEBW_001000eaUUf'];Counter({'non-heated': 4, 'residential': 1, 'office and administration': 1});Counter({'1972-1990': 4, '1991-2010': 1, '1949-1971': 1});6,0;152487,0;27586,0;21454,0;16310,0;5933,0;712,0;27,0;2,0;4,0;1420,0;8153,0;18472,0;26039,0;189,0;127,651;LINESTRING (3583231.614124143 5419385.045986706, 3583233.731980664 5419411.160982689, 3583233.877127905 5419432.875205895, 3583232.512374647 5419461.429772911, 3583227.150836415 5419484.630150786, 3583218.748489811 5419510.643760404);[514, 100, 4, 54] +56,0;['DEBW_001000eyVMy', 'DEBW_001000eyVMw', 'DEBW_001000eyVMv', 'DEBW_001000eyVNb', 'DEBW_001000eyVMr', 'DEBW_001000eyVMq', 'DEBW_001000eyVN9', 'DEBW_001000eyVN8', 'DEBW_001000eyVN7', 'DEBW_001000eyVN6', 'DEBW_001000eyVN5'];Counter({'residential': 4, 'office and administration': 4, 'non-heated': 3});Counter({'Before 1948': 4, '1972-1990': 3, '1949-1971': 2, '1991-2010': 2});11,0;232944,0;42266,0;32794,0;24824,0;8826,0;1210,0;47,0;1,0;3,0;2107,0;12149,0;28260,0;39887,0;355,1;58,113;LINESTRING (3585961.915780411 5421117.482542024, 3585952.694665031 5421124.59262177, 3585934.792800621 5421167.474408066);[468, 469] +58,0;['DEBW_001000eyVLy', 'DEBW_001000eyVLw', 'DEBW_001000eyVLt', 'DEBW_001000eyVLz', 'DEBW_001000eyVSe', 'DEBW_001000eyVSd', 'DEBW_001000eyVLG', 'DEBW_001000eyVLF', 'DEBW_001000eyVLE', 'DEBW_001000eyVLD', 'DEBW_001000eyVLC', 'DEBW_001000eyVLB', 'DEBW_001000eyVLA'];Counter({'non-heated': 6, 'residential': 5, 'hall': 1, 'office and administration': 1});Counter({'1949-1971': 6, '1972-1990': 2, 'After 2011': 2, 'Before 1948': 2, '1991-2010': 1});13,0;230525,0;42990,0;33581,0;26361,0;10917,0;2445,0;175,0;17,0;62,0;4808,0;15594,0;30399,0;40926,0;240,9;1482,049;LINESTRING (3584168.673585868 5421808.796878516, 3584176.278474636 5421810.925029107, 3584188.461022175 5421814.712948203, 3584213.177897681 5421815.49798506, 3584287.439001135 5421809.579854976, 3584391.146827182 5421794.620600036, 3584487.277797623 5421772.830032203, 3584552.351061896 5421756.63185561, 3584606.055569783 5421743.420766517, 3584642.298410972 5421735.261770511, 3584716.934150937 5421723.137203469, 3584747.549300564 5421719.253587569, 3584761.721077437 5421717.055419178, 3584775.736966719 5421713.542388791, 3584786.321556085 5421709.142951815, 3584797.098036258 5421704.657469698, 3584808.051653285 5421699.12913197, 3584842.012030724 5421676.287552974, 3584867.887548321 5421661.676494018, 3584904.80305964 5421641.182775757, 3584941.496623507 5421622.765934158, 3584993.595239935 5421597.743547308, 3585084.840248055 5421554.087317366, 3585175.249001673 5421507.694600508, 3585207.728772777 5421490.305133344, 3585233.530630938 5421481.111563154, 3585233.920234651 5421476.245593678, 3585236.530930934 5421472.325691089, 3585254.46899197 5421458.28461747, 3585256.417877251 5421437.258357261, 3585263.630235624 5421389.839588411, 3585269.4594506 5421373.900352562, 3585271.269840528 5421366.720268011, 3585277.981606422 5421361.127926013, 3585302.233885927 5421354.091078326, 3585336.892762632 5421349.571775733, 3585388.727908981 5421346.817449497, 3585468.337154442 5421350.685058303, 3585491.598334856 5421347.115374161);[175, 176, 59, 60] +59,0;['DEBW_001000eyVPU', 'DEBW_001000eyVLc', 'DEBW_001000eyVLb', 'DEBW_001000eyVLa', 'DEBW_001000eyVL1', 'DEBW_001000eyVKm', 'DEBW_001000eyVKj', 'DEBW_001000eyVKW', 'DEBW_001000eyVL8', 'DEBW_001000eyVKV', 'DEBW_001000eyVL2', 'DEBW_001000eyVKY'];Counter({'residential': 8, 'non-heated': 4});Counter({'1972-1990': 5, 'Before 1948': 3, 'After 2011': 2, '1991-2010': 1, '1949-1971': 1});12,0;189707,0;30749,0;23010,0;15982,0;3770,0;151,0;1,0;0,0;0,0;493,0;6869,0;20020,0;28976,0;240,9;233,38;LINESTRING (3585721.555241067 5421344.986131358, 3585700.632081041 5421339.024896495, 3585673.269052093 5421337.625334178, 3585624.913298493 5421349.573665836, 3585585.814705756 5421352.499104209, 3585546.212276554 5421346.707664269, 3585525.69365705 5421343.033544383, 3585491.598334856 5421347.115374161);[58, 571, 60, 62] +60,0;['DEBW_001000eyVLi', 'DEBW_001000eyVLh', 'DEBW_001000eyVLg', 'DEBW_001000eyVLe', 'DEBW_001000eyVLd', 'DEBW_001000eyVLm', 'DEBW_001000eyVLl', 'DEBW_001000eyVLk', 'DEBW_001000eyVLj', 'DEBW_001000eyVLu', 'DEBW_001000eyVL9', 'DEBW_001000eyVL6'];Counter({'non-heated': 7, 'residential': 5});Counter({'1972-1990': 8, '1991-2010': 2, '1949-1971': 1, 'After 2011': 1});12,0;88180,0;16161,0;12008,0;8170,0;1768,0;72,0;0,0;0,0;0,0;248,0;3577,0;10538,0;15314,0;239,0;48,691;LINESTRING (3585513.729242957 5421380.423898576, 3585492.62129339 5421373.604130005, 3585491.598334856 5421347.115374161);[58, 59] +61,0;['DEBW_001000eyVLH', 'DEBW_001000eyVKX'];Counter({'residential': 2});Counter({'1972-1990': 2});2,0;74877,0;10790,0;7575,0;4307,0;554,0;12,0;0,0;0,0;0,0;47,0;1159,0;5967,0;9946,0;46,5;70,637;LINESTRING (3585618.679137258 5421430.921538218, 3585640.680502318 5421415.831806221, 3585660.43591078 5421402.85440171, 3585676.151229179 5421389.97067518);[68, 73, 62, 63] +62,0;['DEBW_001000eyVKl', 'DEBW_001000eyVKk'];Counter({'residential': 1, 'industry': 1});Counter({'1949-1971': 2});2,0;64099,0;6833,0;4733,0;2516,0;371,0;11,0;0,0;0,0;0,0;46,0;791,0;3311,0;6172,0;41,5;64,112;LINESTRING (3585721.555241067 5421344.986131358, 3585706.600506559 5421363.209420144, 3585676.151229179 5421389.97067518);[59, 571, 61, 63] +63,0;['DEBW_001000eyVKH', 'DEBW_001000eyVKG', 'DEBW_001000eyVKP', 'DEBW_001000eyVKO', 'DEBW_001000eyVKN', 'DEBW_001000eyVKM', 'DEBW_001000eyVKL', 'DEBW_001000eyVKK', 'DEBW_001000eyVKJ', 'DEBW_001000eyVKI', 'DEBW_001000eyVKU', 'DEBW_001000eyVKS', 'DEBW_001000eyVKQ'];Counter({'residential': 7, 'non-heated': 6});Counter({'1972-1990': 6, 'Before 1948': 3, 'After 2011': 2, '1949-1971': 2});13,0;138163,0;24636,0;18418,0;12697,0;2797,0;94,0;0,0;0,0;0,0;349,0;5528,0;16081,0;23324,0;210,5;122,579;LINESTRING (3585790.473337034 5421428.157764492, 3585769.923873041 5421420.800493671, 3585753.082787911 5421414.901880355, 3585732.835191471 5421410.786230939, 3585710.857715945 5421408.101182061, 3585688.940583137 5421401.490677332, 3585676.151229179 5421389.97067518);[61, 62, 253, 254] +64,0;['DEBW_001000eaUO8'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;18408,0;3581,0;2636,0;1799,0;433,0;24,0;0,0;0,0;0,0;68,0;791,0;2333,0;3395,0;20,6;47,501;LINESTRING (3582491.469454696 5423060.747125356, 3582501.00915538 5423058.31899533, 3582515.614114159 5423023.6090837);[218, 219] +66,0;['DEBW_001000eaUEP', 'DEBW_001000eaUEO', 'DEBW_001000eaUEJ', 'DEBW_001000eaUF9'];Counter({'residential': 3, 'office and administration': 1});Counter({'After 2011': 1, '1991-2010': 1, '1972-1990': 1, 'Before 1948': 1});4,0;96476,0;17933,0;13414,0;9174,0;2052,0;97,0;2,0;0,0;0,0;315,0;4125,0;11729,0;17055,0;48,0;73,828;LINESTRING (3583593.201733214 5421777.888246071, 3583588.343132548 5421787.61476318, 3583567.07591248 5421816.304678923, 3583556.317253867 5421825.553437883, 3583550.796909035 5421837.383440712);[65, 20] +67,0;['DEBW_001000eaUFY'];Counter({'education': 1});Counter({'1972-1990': 1});1,0;195721,0;27927,0;21883,0;17247,0;7033,0;1046,0;70,0;10,0;21,0;1992,0;9200,0;19239,0;26396,0;42,8;3,393;LINESTRING (3583388.826183167 5421872.43073407, 3583390.046730534 5421875.59681782);[153, 154] +68,0;['DEBW_001000eyVSh', 'DEBW_001000eyVSf', 'DEBW_001000eyVLL', 'DEBW_001000eyVLK', 'DEBW_001000eyVLJ'];Counter({'residential': 3, 'non-heated': 2});Counter({'After 2011': 2, '1972-1990': 1, '1991-2010': 1, '1949-1971': 1});5,0;58923,0;10956,0;7978,0;5228,0;998,0;37,0;0,0;0,0;0,0;133,0;2208,0;7068,0;10370,0;59,9;54,453;LINESTRING (3585618.679137258 5421430.921538218, 3585620.160031488 5421436.628217326, 3585620.013793681 5421449.962620421, 3585604.516554263 5421481.592345763);[73, 61] +70,0;['DEBW_001000eaUEF'];Counter({'non-heated': 1});Counter({'1972-1990': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;7,2;39,706;LINESTRING (3583641.492716869 5421718.403840167, 3583678.570893586 5421732.60846639);[69, 71, 72, 566, 539] +71,0;['DEBW_001000eaUEH', 'DEBW_001000eaUEG', 'DEBW_001000eaULS', 'DEBW_001000eaULT', 'DEBW_001000eaULU', 'DEBW_001000eaULO'];Counter({'residential': 3, 'non-heated': 2, 'office and administration': 1});Counter({'1972-1990': 5, '1949-1971': 1});6,0;100690,0;18003,0;13515,0;9523,0;2503,0;155,0;3,0;0,0;0,0;405,0;4182,0;11758,0;16972,0;87,9;91,08;LINESTRING (3583673.98394237 5421642.721006631, 3583670.598540175 5421663.169944982, 3583672.217083346 5421676.920082998, 3583679.501796731 5421709.664479841, 3583678.570893586 5421732.60846639);[69, 70, 72, 553, 174] +73,0;['DEBW_001000eyVLq', 'DEBW_001000eyVLp', 'DEBW_001000eyVLo', 'DEBW_001000eyVLn', 'DEBW_001000eyVLr'];Counter({'residential': 3, 'non-heated': 2});Counter({'1972-1990': 4, '1949-1971': 1});5,0;90288,0;15715,0;11939,0;8428,0;2071,0;86,0;0,0;0,0;0,0;284,0;3751,0;10356,0;14865,0;155,1;704,868;LINESTRING (3585146.053269178 5421920.783928926, 3585163.377687469 5421908.902229842, 3585215.999352077 5421864.435596311, 3585237.683490045 5421841.152847669, 3585260.263321687 5421811.076527792, 3585272.368266329 5421794.032024046, 3585285.129439215 5421771.947686736, 3585302.305149533 5421736.316238638, 3585320.619801921 5421689.979578272, 3585339.781674244 5421640.986396025, 3585359.090668441 5421604.42006723, 3585381.150435802 5421576.338403477, 3585407.286089725 5421552.056660337, 3585435.854804269 5421533.073578112, 3585464.714915069 5421517.565525255, 3585489.49391755 5421508.1794806, 3585492.799019498 5421506.784177431, 3585530.642217646 5421488.633515618, 3585556.450797927 5421472.834401296, 3585618.679137258 5421430.921538218);[68, 454, 439, 61] +75,0;['DEBW_001000eyVRz', 'DEBW_001000eyVQN', 'DEBW_001000eyVQQ', 'DEBW_001000eyVQP', 'DEBW_001000eyVRA'];Counter({'residential': 3, 'non-heated': 1, 'office and administration': 1});Counter({'Before 1948': 2, '1972-1990': 2, '1949-1971': 1});5,0;119859,0;19591,0;14298,0;8849,0;1414,0;50,0;1,0;0,0;0,0;163,0;3139,0;11856,0;18334,0;94,6;86,545;LINESTRING (3586468.649837173 5419828.993417695, 3586460.503913561 5419816.70947773, 3586450.151388061 5419804.402460272, 3586441.694875027 5419797.486220917, 3586435.077551648 5419792.533936011, 3586402.879024675 5419775.272281666);[76, 77, 80, 408] +76,0;['DEBW_001000eyVRo', 'DEBW_001000eyVRm', 'DEBW_001000eyVRl', 'DEBW_001000eyVRk', 'DEBW_001000eyVRj', 'DEBW_001000eyVRv', 'DEBW_001000eyVRu', 'DEBW_001000eyVRs', 'DEBW_001000eyVRr', 'DEBW_001000eyVRq', 'DEBW_001000eyVRp'];Counter({'office and administration': 5, 'non-heated': 3, 'residential': 3});Counter({'1972-1990': 5, '1949-1971': 3, 'After 2011': 1, '1991-2010': 1, 'Before 1948': 1});11,0;174163,0;31533,0;24185,0;17850,0;5676,0;554,0;19,0;1,0;2,0;1190,0;8412,0;20873,0;29757,0;205,3;371,187;LINESTRING (3586045.918461365 5419859.037555962, 3586085.484402841 5419861.68384176, 3586118.708430704 5419860.995615193, 3586150.387424031 5419858.281547091, 3586171.794069768 5419855.119684687, 3586192.383702299 5419847.896448124, 3586211.349661708 5419839.469126556, 3586236.044655972 5419828.49428813, 3586266.813824452 5419815.889445613, 3586297.421343334 5419805.684868176, 3586402.879024675 5419775.272281666);[75, 77, 216, 217] +77,0;['DEBW_001000eyVQU', 'DEBW_001000eyVQT', 'DEBW_001000eyVQS'];Counter({'residential': 2, 'non-heated': 1});Counter({'1972-1990': 1, '1991-2010': 1, '1949-1971': 1});3,0;17197,0;3258,0;2303,0;1398,0;205,0;6,0;0,0;0,0;0,0;24,0;541,0;2060,0;3085,0;61,1;97,76;LINESTRING (3586380.71758472 5419683.251859254, 3586384.291105778 5419735.130000115, 3586384.635316454 5419742.254152458, 3586385.449243641 5419747.928448879, 3586389.765139086 5419758.984995387, 3586397.501659781 5419770.261396116, 3586402.879024675 5419775.272281666);[75, 140, 76, 239] +78,0;['DEBW_001000eyVRn', 'DEBW_001000eyVRL', 'DEBW_001000eyVRK', 'DEBW_001000eyVRJ', 'DEBW_001000eyVQi', 'DEBW_001000eyVRI', 'DEBW_001000eyVQf', 'DEBW_001000eyVQe', 'DEBW_001000eyVRE', 'DEBW_001000eyVQd', 'DEBW_001000eyVQa'];Counter({'office and administration': 5, 'residential': 4, 'non-heated': 2});Counter({'Before 1948': 4, '1972-1990': 3, '1949-1971': 2, '1991-2010': 1, 'After 2011': 1});11,0;477672,0;86035,0;66370,0;49273,0;16025,0;1499,0;45,0;3,0;6,0;3228,0;23523,0;57071,0;81099,0;325,9;189,222;LINESTRING (3586412.832707314 5420093.359837832, 3586416.844992442 5420085.669183628, 3586428.552056182 5420060.701186635, 3586448.851013576 5420014.042782655, 3586460.152454638 5419992.082934847, 3586468.405396249 5419966.249459345, 3586475.417390927 5419941.486817618, 3586484.75082498 5419918.795732231);[485, 79, 80, 433] +79,0;['DEBW_001000eyVQy', 'DEBW_001000eyVQx', 'DEBW_001000eyVQw', 'DEBW_001000eyVQn', 'DEBW_001000eyVQm', 'DEBW_001000eyVQl', 'DEBW_001000eyVQk', 'DEBW_001000eyVQj', 'DEBW_001000eyVQg', 'DEBW_001000eyVQv', 'DEBW_001000eyVQu'];Counter({'residential': 5, 'office and administration': 4, 'non-heated': 2});Counter({'1972-1990': 6, 'Before 1948': 3, '1949-1971': 1, '1991-2010': 1});11,0;259147,0;47058,0;35620,0;25364,0;6835,0;428,0;9,0;0,0;1,0;1169,0;11513,0;30844,0;44323,0;250,8;136,76;LINESTRING (3586616.217125863 5419891.938562199, 3586594.786208022 5419901.371812099, 3586570.775680337 5419911.677187685, 3586559.657018734 5419915.686868498, 3586547.071087048 5419918.339014328, 3586522.699300261 5419920.752659831, 3586504.084490774 5419920.708524573, 3586484.75082498 5419918.795732231);[441, 78, 80, 89] +80,0;['DEBW_001000eyVQz', 'DEBW_001000eyVRx', 'DEBW_001000eyVQH', 'DEBW_001000eyVQF', 'DEBW_001000eyVQE', 'DEBW_001000eyVQD', 'DEBW_001000eyVQC', 'DEBW_001000eyVQA', 'DEBW_001000eyVRH', 'DEBW_001000eyVRG', 'DEBW_001000eyVRD', 'DEBW_001000eyVRC', 'DEBW_001000eyVRB'];Counter({'residential': 5, 'office and administration': 4, 'non-heated': 3, 'industry': 1});Counter({'1972-1990': 9, '1991-2010': 3, 'After 2011': 1});13,0;349604,0;59960,0;45564,0;32965,0;9858,0;740,0;17,0;0,0;1,0;1807,0;15344,0;39304,0;56570,0;329,8;92,695;LINESTRING (3586468.649837173 5419828.993417695, 3586479.420944366 5419850.706037333, 3586482.094012669 5419862.248849226, 3586484.75082498 5419918.795732231);[75, 78, 79, 408] +86,0;['DEBW_001000eaUUs', 'DEBW_001000eaUUu'];Counter({'residential': 2});Counter({'1972-1990': 1, 'After 2011': 1});2,0;36449,0;6866,0;5097,0;3528,0;864,0;43,0;0,0;0,0;0,0;133,0;1554,0;4494,0;6511,0;28,8;60,784;LINESTRING (3583086.057319304 5418816.749859769, 3583071.797538487 5418804.235469864, 3583062.661699162 5418791.352501876, 3583056.570581186 5418766.057173107);[85, 87] +87,0;['DEBW_001000eaUUv', 'DEBW_001000eaUUw'];Counter({'residential': 1, 'non-heated': 1});Counter({'1972-1990': 1, 'Before 1948': 1});2,0;22100,0;3737,0;2832,0;2023,0;488,0;16,0;0,0;0,0;0,0;60,0;890,0;2442,0;3515,0;39,3;17,89;LINESTRING (3583074.202019329 5418763.917182553, 3583062.30866885 5418764.340699665, 3583056.570581186 5418766.057173107);[85, 86] +92,0;['DEBW_001000eaUY4', 'DEBW_001000eaUY5', 'DEBW_001000eaUY6', 'DEBW_001000eaUY7', 'DEBW_001000eaUY9', 'DEBW_001000eaUYa', 'DEBW_001000eaUYb'];Counter({'industry': 4, 'non-heated': 2, 'office and administration': 1});Counter({'1972-1990': 3, 'Before 1948': 2, '1991-2010': 1, '1949-1971': 1});7,0;46889,0;7929,0;5521,0;3479,0;780,0;36,0;0,0;0,0;0,0;109,0;1374,0;4589,0;7326,0;140,1;247,52;LINESTRING (3582773.998267812 5418318.140431891, 3582756.677407532 5418220.1685014, 3582748.969609667 5418218.185516002, 3582738.552668294 5418221.345647203, 3582711.96956307 5418224.666518069, 3582699.982699918 5418222.419947656, 3582689.418683967 5418221.6515961, 3582676.468544749 5418242.337397307, 3582674.336690228 5418260.491789976, 3582675.321679115 5418277.657941485, 3582672.938423026 5418291.003504696, 3582671.426988626 5418296.987487338);[91, 93, 127] +94,0;['DEBW_001000eaULQ'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;111916,0;18369,0;14120,0;10318,0;2808,0;97,0;1,0;0,0;0,0;356,0;4653,0;12070,0;17302,0;21,7;6,175;LINESTRING (3583704.435198388 5421745.343493672, 3583698.525386504 5421743.55289958);[480, 69, 406, 95] +99,0;['DEBW_001000eaUVB', 'DEBW_001000eaUVC', 'DEBW_001000eaUVD', 'DEBW_001000eaUW0', 'DEBW_001000eaUVE', 'DEBW_001000eaUVF', 'DEBW_001000eaUVY', 'DEBW_001000eaUVZ'];Counter({'non-heated': 5, 'residential': 3});Counter({'1972-1990': 4, '1949-1971': 2, 'After 2011': 1, 'Before 1948': 1});8,0;52082,0;9334,0;7002,0;4786,0;923,0;25,0;0,0;0,0;0,0;110,0;2077,0;6103,0;8829,0;125,3;76,568;LINESTRING (3583091.197183882 5419232.669603592, 3583158.846748555 5419196.805266773);[100, 133, 134, 135, 101] +100,0;['DEBW_001000eaUUl', 'DEBW_001000eaUUn'];Counter({'residential': 1, 'non-heated': 1});Counter({'1972-1990': 2});2,0;23032,0;4272,0;3211,0;2273,0;574,0;29,0;0,0;0,0;0,0;92,0;1045,0;2820,0;4050,0;29,8;202,226;LINESTRING (3583231.614124143 5419385.045986706, 3583225.759164986 5419357.785168767, 3583217.163547562 5419335.321958141, 3583158.846748555 5419196.805266773);[514, 99, 101, 55] +102,0;['DEBW_001000eaUIR', 'DEBW_001000eaUIL', 'DEBW_001000eaUIM', 'DEBW_001000eaUHh', 'DEBW_001000eaUHi'];Counter({'non-heated': 3, 'residential': 2});Counter({'1972-1990': 3, '1949-1971': 1, 'Before 1948': 1});5,0;34099,0;6079,0;4512,0;3096,0;666,0;22,0;0,0;0,0;0,0;84,0;1318,0;3950,0;5740,0;71,7;66,401;LINESTRING (3583161.926111335 5421801.167155848, 3583151.701877877 5421813.939528815, 3583138.283267412 5421836.463639054, 3583127.631306927 5421857.772150459);[103, 39, 106, 107] +103,0;['DEBW_001000eaUGY', 'DEBW_001000eaUGJ', 'DEBW_001000eaUGI'];Counter({'residential': 2, 'non-heated': 1});Counter({'Before 1948': 2, '1972-1990': 1});3,0;31074,0;5515,0;4138,0;2887,0;724,0;21,0;0,0;0,0;0,0;71,0;1266,0;3610,0;5205,0;38,6;52,874;LINESTRING (3583178.815847344 5421870.660045677, 3583152.155532917 5421865.557109075, 3583127.631306927 5421857.772150459);[102, 39, 339, 340] +105,0;['DEBW_001000eaUTi'];Counter({'hall': 1});Counter({'Before 1948': 1});1,0;28977,0;6172,0;4758,0;3674,0;1200,0;50,0;0,0;0,0;0,0;365,0;2315,0;4501,0;5942,0;33,0;83,9;LINESTRING (3583204.259223245 5420085.53038131, 3583168.414880452 5420085.10681222, 3583129.197632777 5420079.305273019, 3583120.880231177 5420078.068970227);[104, 16, 380, 381] +106,0;['DEBW_001000eaUHk', 'DEBW_001000eaUHj', 'DEBW_001000eaUKy', 'DEBW_001000eaUKB', 'DEBW_001000eaUKA', 'DEBW_001000eaUKJ'];Counter({'residential': 4, 'non-heated': 2});Counter({'Before 1948': 3, '1949-1971': 2, '1972-1990': 1});6,0;71159,0;12728,0;9480,0;6536,0;1400,0;30,0;0,0;0,0;0,0;131,0;2720,0;8286,0;12032,0;94,9;75,98;LINESTRING (3583236.774985816 5421814.186324091, 3583189.485358036 5421806.461519021, 3583161.926111335 5421801.167155848);[102, 456, 552, 107] +107,0;['DEBW_001000eaUIS', 'DEBW_001000eaUKE'];Counter({'residential': 1, 'non-heated': 1});Counter({'1949-1971': 2});2,0;17506,0;3115,0;2321,0;1599,0;357,0;12,0;0,0;0,0;0,0;45,0;679,0;2028,0;2940,0;33,5;50,619;LINESTRING (3583112.098496007 5421794.061395803, 3583127.940617006 5421793.808287977, 3583143.058825802 5421796.881329562, 3583161.926111335 5421801.167155848);[102, 106, 363, 364] +110,0;['DEBW_001000eyVJu'];Counter({'non-heated': 1});Counter({'1972-1990': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;28,9;390,626;LINESTRING (3585923.691623828 5421537.548729111, 3585930.598051212 5421548.834004029, 3585940.059109569 5421553.685004614, 3585983.749800529 5421557.095282438, 3586011.178336019 5421563.202513431, 3586059.326795573 5421564.146112069, 3586069.195918257 5421561.551113176, 3586075.786916163 5421554.801044313, 3586080.237669859 5421546.627524883, 3586082.026919601 5421520.004045528, 3586078.022390053 5421512.100351322, 3586073.375844588 5421507.323477929, 3586063.091392653 5421505.006739572, 3586014.663088092 5421502.690653606, 3585983.907798531 5421495.553243521, 3585951.283646683 5421495.049954924, 3585941.205356144 5421501.223596833, 3585940.369063556 5421501.744611282, 3585923.691623828 5421537.548729111);[111] +111,0;['DEBW_001000eyVJC', 'DEBW_001000eyVJB'];Counter({'non-heated': 2});Counter({'Before 1948': 1, '1972-1990': 1});2,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;50,9;94,582;LINESTRING (3585838.603707849 5421502.200529368, 3585847.974902658 5421513.846234116, 3585855.570548082 5421518.468133117, 3585923.691623828 5421537.548729111);[145, 146, 110] +112,0;['DEBW_001000eaUPN', 'DEBW_001000eaUPO'];Counter({'non-heated': 1, 'residential': 1});Counter({'1949-1971': 1, '1972-1990': 1});2,0;16522,0;2993,0;2176,0;1410,0;268,0;9,0;0,0;0,0;0,0;29,0;547,0;1919,0;2838,0;23,7;65,887;LINESTRING (3583318.701543211 5418626.157704176, 3583322.04696398 5418626.063076655, 3583323.712259649 5418626.021214372, 3583384.031013579 5418634.23036148);[372, 375] +115,0;['DEBW_001000eaUPA', 'DEBW_001000eaUPw', 'DEBW_001000eaUPy', 'DEBW_001000eaUPz'];Counter({'non-heated': 2, 'event location': 1, 'industry': 1});Counter({'1991-2010': 2, '1949-1971': 1, 'After 2011': 1});4,0;44764,0;8583,0;6493,0;4747,0;1638,0;163,0;5,0;0,0;1,0;409,0;2480,0;5708,0;8087,0;491,4;137,996;LINESTRING (3583973.864210005 5420265.538027338, 3583960.780182086 5420256.142218919, 3583922.092412668 5420234.281361927, 3583915.744182954 5420231.316064892, 3583876.658369529 5420212.986665249, 3583863.947674338 5420211.894487704, 3583850.085390906 5420216.201933597);[113, 114] +116,0;['DEBW_001000eyVNg', 'DEBW_001000eyVNZ', 'DEBW_001000eyVNY', 'DEBW_001000eyVNX', 'DEBW_001000eyVNW', 'DEBW_001000eyVNV', 'DEBW_001000eyVNU', 'DEBW_001000eyVNS'];Counter({'residential': 5, 'office and administration': 2, 'non-heated': 1});Counter({'1972-1990': 5, '1949-1971': 2, 'Before 1948': 1});8,0;127775,0;22791,0;17090,0;11734,0;2522,0;104,0;2,0;0,0;0,0;347,0;5190,0;14859,0;21480,0;247,6;96,631;LINESTRING (3586009.849353183 5420976.802235571, 3586035.902740785 5420958.684289704, 3586074.375149191 5420945.719167311, 3586097.444655112 5420938.08905416);[395, 468, 117, 118] +117,0;['DEBW_001000eyVNi', 'DEBW_001000eyVNh', 'DEBW_001000eyVNK', 'DEBW_001000eyVNP', 'DEBW_001000eyVNM'];Counter({'office and administration': 2, 'non-heated': 2, 'residential': 1});Counter({'1972-1990': 3, '1949-1971': 1, 'Before 1948': 1});5,0;175536,0;31014,0;24262,0;18444,0;6649,0;796,0;30,0;2,0;5,0;1601,0;9247,0;20711,0;29161,0;176,3;180,677;LINESTRING (3586242.188376831 5420835.046058137, 3586206.976607554 5420868.883048648, 3586164.061157631 5420909.341791488, 3586133.563167187 5420926.144672515, 3586097.444655112 5420938.08905416);[324, 116, 118, 126] +118,0;['DEBW_001000eyVNR', 'DEBW_001000eyVNQ', 'DEBW_001000eyVNN'];Counter({'non-heated': 1, 'residential': 1, 'office and administration': 1});Counter({'1972-1990': 3});3,0;94024,0;17475,0;13147,0;9210,0;2443,0;189,0;6,0;0,0;1,0;483,0;4318,0;11434,0;16462,0;50,5;94,215;LINESTRING (3586065.01117092 5420850.493802167, 3586073.380805272 5420868.653685279, 3586085.649524085 5420889.231912976, 3586090.826382617 5420910.490369481, 3586097.444655112 5420938.08905416);[116, 117] +119,0;['DEBW_001000eaUFB'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;10068,0;1807,0;1346,0;908,0;187,0;7,0;0,0;0,0;0,0;24,0;394,0;1179,0;1713,0;15,2;22,975;LINESTRING (3583608.869036905 5421857.675300857, 3583589.14729777 5421845.889320869);[399, 400, 120, 121] +121,0;['DEBW_001000eaUFA', 'DEBW_001000eaUFM', 'DEBW_001000eaUFK'];Counter({'office and administration': 2, 'residential': 1});Counter({'1949-1971': 3});3,0;108695,0;18596,0;14571,0;11135,0;4049,0;450,0;16,0;1,0;2,0;918,0;5429,0;12319,0;17494,0;51,6;49,456;LINESTRING (3583566.296877379 5421889.749562953, 3583573.460269697 5421875.875331396, 3583589.14729777 5421845.889320869);[487, 560, 119, 120] +123,0;['DEBW_001000eaUPC', 'DEBW_001000eaUPD', 'DEBW_001000eaUPE', 'DEBW_001000eaUPB', 'DEBW_001000eaUPx'];Counter({'non-heated': 2, 'hall': 1, 'office and administration': 1, 'industry': 1});Counter({'1949-1971': 2, '1991-2010': 1, 'Before 1948': 1, '1972-1990': 1});5,0;22857,0;2816,0;2141,0;1598,0;882,0;438,0;191,0;117,0;131,0;473,0;905,0;1688,0;2597,0;416,5;1356,452;LINESTRING (3584484.418581547 5419190.889612273, 3584470.981678518 5419231.296301334, 3584403.215780451 5419379.396889623, 3584387.151377187 5419412.767605362, 3584108.84068367 5419935.016108654, 3584055.057311936 5420036.047546492, 3583950.973720397 5420230.645151984, 3583905.968821954 5420314.791884097, 3583884.842659648 5420356.541271713, 3583862.768155686 5420395.562448399);[124, 475, 122, 476] +125,0;['DEBW_001000eaUPK'];Counter({'industry': 1});Counter({'1949-1971': 1});1,0;13204,0;1382,0;811,0;295,0;14,0;0,0;0,0;0,0;0,0;0,0;30,0;523,0;1230,0;17,1;13,189;LINESTRING (3583431.78871468 5418640.89527013, 3583418.725920984 5418639.075947938);[376, 374] +126,0;['DEBW_001000eyVNJ', 'DEBW_001000eyVNI', 'DEBW_001000eyVNH', 'DEBW_001000eyVNL'];Counter({'office and administration': 1, 'non-heated': 1, 'residential': 1, 'industry': 1});Counter({'1972-1990': 2, '1949-1971': 2});4,0;314034,0;50773,0;38867,0;28785,0;10401,0;1226,0;46,0;4,0;8,0;2459,0;14158,0;32602,0;47491,0;85,4;164,455;LINESTRING (3586242.188376831 5420835.046058137, 3586231.350433848 5420814.41174775, 3586228.901008795 5420794.574617654, 3586228.622571222 5420749.076562428, 3586245.37824929 5420714.6426434, 3586249.076513025 5420677.459509273);[324, 117] +129,0;['DEBW_001000eaUY1'];Counter({'industry': 1});Counter({'Before 1948': 1});1,0;5709,0;666,0;354,0;97,0;1,0;0,0;0,0;0,0;0,0;0,0;6,0;227,0;583,0;13,6;44,077;LINESTRING (3582854.22676626 5418293.125774005, 3582846.342704379 5418305.48862111, 3582840.634106772 5418312.600388064, 3582828.323199956 5418328.734937212);[128, 404, 317, 127] +132,0;['DEBW_001000eaUNZ'];Counter({'event location': 1});Counter({'1972-1990': 1});1,0;175096,0;33373,0;27201,0;23154,0;12284,0;3432,0;281,0;28,0;63,0;5163,0;14260,0;24131,0;31726,0;55,8;476,889;LINESTRING (3582114.920358846 5423217.16751626, 3582106.12312344 5423208.528743532, 3582092.826216408 5423195.463454298, 3582054.494657405 5423172.263365066, 3581996.296882878 5423144.188398374, 3581994.167098427 5423139.541008904, 3582004.238758306 5423117.877106605, 3582017.17735893 5423101.561097132, 3582030.343704537 5423091.677554657, 3582052.340557404 5423081.234488261, 3582069.051611315 5423077.943566601, 3582111.690779248 5423078.382863999, 3582173.277727573 5423081.371068304, 3582234.241845164 5423086.341776493, 3582250.475692225 5423088.083068585, 3582288.253055649 5423095.715249542, 3582296.566175957 5423097.439776987);[130, 131, 8, 9] +133,0;['DEBW_001000eaUVs', 'DEBW_001000eaUVw'];Counter({'non-heated': 2});Counter({'1991-2010': 1, 'Before 1948': 1});2,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;29,9;62,76;LINESTRING (3583059.032761424 5419178.777994663, 3583091.197183882 5419232.669603592);[99, 134, 135, 138, 139] +134,0;['DEBW_001000eaUW2', 'DEBW_001000eaUW3', 'DEBW_001000eaUVS', 'DEBW_001000eaUW5', 'DEBW_001000eaUVM', 'DEBW_001000eaUVN', 'DEBW_001000eaUVO', 'DEBW_001000eaUVJ', 'DEBW_001000eaUVK', 'DEBW_001000eaUVL', 'DEBW_001000eaUVG', 'DEBW_001000eaUVH', 'DEBW_001000eaUW6', 'DEBW_001000eaUW7', 'DEBW_001000eaUW8', 'DEBW_001000eaUW9', 'DEBW_001000eaUWa'];Counter({'residential': 9, 'non-heated': 8});Counter({'1972-1990': 9, 'Before 1948': 4, '1949-1971': 2, '1991-2010': 2});17,0;164394,0;29905,0;22497,0;15451,0;3370,0;133,0;0,0;0,0;0,0;488,0;6922,0;19654,0;28280,0;308,4;152,943;LINESTRING (3582980.363930184 5419337.265963908, 3583004.925814024 5419306.342583583, 3583034.186711894 5419280.928397791, 3583061.385750061 5419257.597014471, 3583091.197183882 5419232.669603592);[99, 133, 135, 368, 501] +135,0;['DEBW_001000eaUWq', 'DEBW_001000eaUW1'];Counter({'non-heated': 1, 'residential': 1});Counter({'After 2011': 1, '1972-1990': 1});2,0;19522,0;3396,0;2548,0;1786,0;395,0;12,0;0,0;0,0;0,0;50,0;770,0;2213,0;3205,0;32,9;65,218;LINESTRING (3583118.382746331 5419291.93746779, 3583107.381899283 5419269.449718931, 3583091.197183882 5419232.669603592);[99, 133, 134, 493, 494, 495] +138,0;['DEBW_001000eaUV1', 'DEBW_001000eaUUQ', 'DEBW_001000eaUV2', 'DEBW_001000eaUUR', 'DEBW_001000eaUV3', 'DEBW_001000eaUV4', 'DEBW_001000eaUV0', 'DEBW_001000eaUUY', 'DEBW_001000eaUUZ', 'DEBW_001000eaUUT', 'DEBW_001000eaUV5', 'DEBW_001000eaUUU', 'DEBW_001000eaUV6', 'DEBW_001000eaUUV', 'DEBW_001000eaUV8', 'DEBW_001000eaUUW', 'DEBW_001000eaUVq', 'DEBW_001000eaUVr', 'DEBW_001000eaUVt', 'DEBW_001000eaUVm', 'DEBW_001000eaUVo', 'DEBW_001000eaUVi', 'DEBW_001000eaUVj', 'DEBW_001000eaUVl', 'DEBW_001000eaUVf', 'DEBW_001000eaUVu', 'DEBW_001000eaUVv'];Counter({'non-heated': 14, 'residential': 13});Counter({'1972-1990': 13, '1949-1971': 8, 'After 2011': 4, 'Before 1948': 1, '1991-2010': 1});27,0;258138,0;46050,0;34872,0;24159,0;5497,0;234,0;1,0;0,0;0,0;807,0;10955,0;30369,0;43579,0;483,0;209,177;LINESTRING (3582912.698899498 5419323.078842106, 3582924.674741841 5419294.837736554, 3582948.673589643 5419267.743163803, 3582980.616050874 5419236.061864224, 3583013.28501358 5419208.306837041, 3583059.032761424 5419178.777994663);[133, 139, 367, 368] +139,0;['DEBW_001000eaUUL', 'DEBW_001000eaUUM', 'DEBW_001000eaUUN', 'DEBW_001000eaUUO', 'DEBW_001000eaUVA', 'DEBW_001000eaUVy', 'DEBW_001000eaUVz', 'DEBW_001000eaUVx'];Counter({'non-heated': 4, 'residential': 4});Counter({'1972-1990': 4, '1949-1971': 2, '1991-2010': 2});8,0;71170,0;12913,0;9780,0;6790,0;1635,0;75,0;0,0;0,0;0,0;253,0;3104,0;8507,0;12237,0;135,8;39,784;LINESTRING (3583092.513404687 5419157.620300354, 3583078.431033223 5419165.252199491, 3583066.530434686 5419172.126898007, 3583059.032761424 5419178.777994663);[138, 133] +140,0;['DEBW_001000eyVQV', 'DEBW_001000eyVR1', 'DEBW_001000eyVR0', 'DEBW_001000eyVQW'];Counter({'office and administration': 2, 'non-heated': 1, 'residential': 1});Counter({'1949-1971': 2, '1972-1990': 1, '1991-2010': 1});4,0;61854,0;11428,0;8751,0;6459,0;2138,0;244,0;9,0;0,0;1,0;492,0;3138,0;7579,0;10792,0;71,2;43,662;LINESTRING (3586380.71758472 5419683.251859254, 3586424.378100548 5419682.927332081);[77, 239] +144,0;['DEBW_001000eaUNF', 'DEBW_001000eaUNH', 'DEBW_001000eaUNA', 'DEBW_001000eaUNB', 'DEBW_001000eaUNC', 'DEBW_001000eaUND', 'DEBW_001000eaUNy', 'DEBW_001000eaUNz', 'DEBW_001000eaUNu', 'DEBW_001000eaUNv', 'DEBW_001000eaUNw', 'DEBW_001000eaUNx', 'DEBW_001000eaUNn'];Counter({'residential': 7, 'non-heated': 4, 'industry': 1, 'office and administration': 1});Counter({'1972-1990': 7, '1949-1971': 2, '1991-2010': 2, 'Before 1948': 2});13,0;151189,0;25486,0;18727,0;12433,0;2781,0;138,0;2,0;0,0;0,0;401,0;5210,0;15942,0;23945,0;283,0;149,532;LINESTRING (3582716.952335349 5423079.385095774, 3582722.474391744 5423067.242902281, 3582729.309852979 5423056.955518669, 3582742.234531931 5423047.159019515, 3582749.369545127 5423040.88039618, 3582752.46133843 5423035.976583323, 3582755.995600158 5423024.472271585, 3582759.103755479 5423009.591356035, 3582761.83081319 5422997.67462631, 3582762.796674359 5422985.931944558, 3582762.497240735 5422979.453898084, 3582759.81394385 5422975.109422672, 3582751.429644246 5422970.279825217, 3582742.462224082 5422965.241364786, 3582733.266320609 5422962.757819894);[355, 279] +145,0;['DEBW_001000eyVJW', 'DEBW_001000eyVJV', 'DEBW_001000eyVJT', 'DEBW_001000eyVJD', 'DEBW_001000eyVJA'];Counter({'residential': 3, 'non-heated': 2});Counter({'1949-1971': 3, '1972-1990': 2});5,0;36755,0;6688,0;4878,0;3168,0;587,0;19,0;0,0;0,0;0,0;72,0;1314,0;4313,0;6330,0;80,1;76,333;LINESTRING (3585894.790712493 5421450.531618238, 3585838.603707849 5421502.200529368);[163, 164, 111, 146] +146,0;['DEBW_001000eyVJY', 'DEBW_001000eyVJX'];Counter({'residential': 1, 'non-heated': 1});Counter({'1972-1990': 1, '1991-2010': 1});2,0;9187,0;1755,0;1213,0;697,0;87,0;2,0;0,0;0,0;0,0;9,0;256,0;1102,0;1661,0;34,3;140,754;LINESTRING (3585754.726732029 5421612.429881355, 3585757.698221396 5421605.089836264, 3585766.368657798 5421583.688850461, 3585768.495085528 5421578.871883538, 3585794.091593911 5421544.494926288, 3585813.784059401 5421522.273753466, 3585834.613091622 5421505.742963306, 3585838.603707849 5421502.200529368);[145, 111] +151,0;['DEBW_001000esyuJ'];Counter({'event location': 1});Counter({'1949-1971': 1});1,0;5783,0;1308,0;981,0;708,0;200,0;17,0;1,0;0,0;0,0;50,0;376,0;895,0;1247,0;20,5;94,044;LINESTRING (3582272.667932109 5423773.687866597, 3582274.000080979 5423752.451477701, 3582269.907664936 5423720.50135628, 3582262.077217509 5423680.709920227);[323, 518, 149, 152] +156,0;['DEBW_001000eaUFN', 'DEBW_001000eaUFZ', 'DEBW_001000eaUFX'];Counter({'office and administration': 1, 'residential': 1, 'non-heated': 1});Counter({'1972-1990': 2, '1949-1971': 1});3,0;59118,0;10311,0;8246,0;6586,0;2928,0;568,0;29,0;2,0;3,0;804,0;3432,0;7029,0;9720,0;52,8;36,687;LINESTRING (3583469.490147879 5421848.945304777, 3583470.719849336 5421845.626813998, 3583476.325581744 5421838.847874105, 3583479.932236526 5421834.397074685, 3583484.016891314 5421824.458658568, 3583487.254043235 5421817.277183779);[19, 155] +157,0;['DEBW_001000eyVIq', 'DEBW_001000eyVIp', 'DEBW_001000eyVIo', 'DEBW_001000eyVI6', 'DEBW_001000eyVI5', 'DEBW_001000eyVI4', 'DEBW_001000eyVI3', 'DEBW_001000eyVI2', 'DEBW_001000eyVI1', 'DEBW_001000eyVI0', 'DEBW_001000eyVHZ', 'DEBW_001000eyVHX', 'DEBW_001000eyVI8', 'DEBW_001000eyVHW', 'DEBW_001000eyVIn', 'DEBW_001000eyVIm', 'DEBW_001000eyVIl', 'DEBW_001000eyVIk', 'DEBW_001000eyVIj'];Counter({'residential': 11, 'non-heated': 8});Counter({'1972-1990': 8, '1991-2010': 5, '1949-1971': 4, 'Before 1948': 2});19,0;222682,0;39960,0;29822,0;20562,0;4669,0;192,0;0,0;0,0;0,0;637,0;8976,0;26073,0;37783,0;312,0;174,596;LINESTRING (3586103.288686151 5421343.640960196, 3586089.428312969 5421354.994923326, 3586079.423978742 5421364.895728917, 3586071.254807728 5421368.929616225, 3586048.26409125 5421373.947064976, 3585963.867440559 5421367.794858706, 3585938.55303514 5421366.648052404);[51, 565, 158, 159] +158,0;['DEBW_001000eyVQ0', 'DEBW_001000eyVPZ', 'DEBW_001000eyVPY', 'DEBW_001000eyVPX', 'DEBW_001000eyVPW', 'DEBW_001000eyVPV', 'DEBW_001000eyVK2', 'DEBW_001000eyVK1', 'DEBW_001000eyVK9', 'DEBW_001000eyVKg', 'DEBW_001000eyVKf', 'DEBW_001000eyVKe', 'DEBW_001000eyVKc', 'DEBW_001000eyVKb', 'DEBW_001000eyVKa', 'DEBW_001000eyVHY'];Counter({'residential': 9, 'non-heated': 6, 'industry': 1});Counter({'1972-1990': 8, '1949-1971': 3, '1991-2010': 2, 'Before 1948': 2, 'After 2011': 1});16,0;174580,0;30955,0;22856,0;15479,0;3500,0;153,0;1,0;0,0;0,0;495,0;6770,0;19889,0;29253,0;339,3;137,537;LINESTRING (3585813.083707484 5421330.71112329, 3585825.890805996 5421333.455547758, 3585868.341273447 5421326.134170149, 3585881.13748022 5421330.535904568, 3585910.571159713 5421348.819993648, 3585928.701851278 5421360.456270103, 3585938.55303514 5421366.648052404);[531, 157, 254, 159] +160,0;['DEBW_001000eaUO5'];Counter({'non-heated': 1});Counter({'1972-1990': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;28,5;68,422;LINESTRING (3582373.442472866 5423030.258643104, 3582392.185082612 5422964.45409207);[161, 162] +162,0;['DEBW_001000eaUOi'];Counter({'non-heated': 1});Counter({'1991-2010': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;12,8;64,368;LINESTRING (3582454.362766311 5422980.089845696, 3582445.793674013 5422975.847498971, 3582392.185082612 5422964.45409207);[160, 161, 538, 219] +163,0;['DEBW_001000eyVK6', 'DEBW_001000eyVJS', 'DEBW_001000eyVK4', 'DEBW_001000eyVJQ', 'DEBW_001000eyVJF', 'DEBW_001000eyVJO', 'DEBW_001000eyVJN', 'DEBW_001000eyVJM', 'DEBW_001000eyVJL', 'DEBW_001000eyVJK', 'DEBW_001000eyVJJ', 'DEBW_001000eyVJI', 'DEBW_001000eyVJH'];Counter({'non-heated': 7, 'residential': 6});Counter({'1972-1990': 5, 'Before 1948': 5, '1949-1971': 3});13,0;84706,0;15500,0;11241,0;7183,0;1163,0;34,0;0,0;0,0;0,0;127,0;2874,0;9950,0;14664,0;254,6;66,499;LINESTRING (3585832.334861841 5421428.090486768, 3585874.704317756 5421441.201169931, 3585894.790712493 5421450.531618238);[145, 164] +164,0;['DEBW_001000eyVK5', 'DEBW_001000eyVJy', 'DEBW_001000eyVJx'];Counter({'residential': 2, 'non-heated': 1});Counter({'1972-1990': 2, '1991-2010': 1});3,0;44040,0;8103,0;6113,0;4347,0;1148,0;62,0;0,0;0,0;0,0;183,0;2007,0;5344,0;7680,0;52,6;56,044;LINESTRING (3585943.11393133 5421422.145100231, 3585926.856961094 5421431.616049838, 3585901.677396146 5421446.46658594, 3585894.790712493 5421450.531618238);[163, 145, 569, 159] +165,0;['DEBW_001000eaUNt'];Counter({'office and administration': 1});Counter({'1972-1990': 1});1,0;47095,0;8888,0;6754,0;4859,0;1505,0;151,0;5,0;0,0;1,0;328,0;2328,0;5860,0;8385,0;21,0;879,167;LINESTRING (3582891.826910765 5422293.61833749, 3582866.292230736 5422279.968746506, 3582840.952966647 5422269.926037263, 3582812.073873541 5422262.845167307, 3582709.849784595 5422259.769513088, 3582677.825937009 5422264.088232299, 3582660.717226276 5422267.315881114, 3582633.477085716 5422282.139200732, 3582612.373908546 5422303.193538073, 3582600.223059522 5422323.969115528, 3582563.925986269 5422402.048467302, 3582542.868172835 5422441.356566059, 3582535.09559553 5422453.042916948, 3582527.082285 5422461.689133591, 3582514.975289023 5422471.631734821, 3582506.684627669 5422477.237293493, 3582485.287955712 5422487.50955715, 3582461.731407112 5422495.18051973, 3582380.465178464 5422511.285639963, 3582358.399232314 5422519.268272777, 3582348.786046309 5422531.072261835, 3582338.623177608 5422546.850172983, 3582333.999089978 5422557.760224287, 3582313.813145535 5422625.000730969, 3582305.893081591 5422649.198570496, 3582296.952251993 5422673.548185888, 3582289.632106679 5422687.899940083, 3582272.453739394 5422719.268878044);[166, 167, 359, 361] +168,0;['DEBW_001000eaUNO'];Counter({'non-heated': 1});Counter({'1949-1971': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;7,7;22,407;LINESTRING (3582568.106605469 5423008.414285521, 3582577.850957139 5422988.236992888);[355, 356, 169, 170] +169,0;['DEBW_001000eaUNU', 'DEBW_001000eaUNQ'];Counter({'non-heated': 2});Counter({'1972-1990': 2});2,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;23,9;54,474;LINESTRING (3582523.683000169 5422982.473382042, 3582577.850957139 5422988.236992888);[356, 168, 170, 538] +170,0;['DEBW_001000eaUNM', 'DEBW_001000eaUNN'];Counter({'office and administration': 2});Counter({'1972-1990': 1, '1949-1971': 1});2,0;170336,0;30074,0;23406,0;17535,0;6120,0;687,0;25,0;2,0;4,0;1383,0;8523,0;19955,0;28318,0;51,1;523,109;LINESTRING (3582816.170015313 5422598.587450063, 3582803.785946702 5422627.645776059, 3582794.336447627 5422645.146434691, 3582786.734642962 5422655.67818903, 3582712.341947553 5422747.873002519, 3582694.532024791 5422781.155602927, 3582687.717450916 5422808.283582989, 3582680.981896895 5422820.218708181, 3582672.084793455 5422830.664647046, 3582663.269614738 5422834.604853061, 3582655.980108935 5422835.976048482, 3582627.735507181 5422838.671474605, 3582594.629335737 5422841.094745355, 3582587.386952195 5422845.714646997, 3582583.854506611 5422849.699929624, 3582582.051888969 5422856.124550933, 3582583.091010675 5422861.656967736, 3582587.703018941 5422868.877436525, 3582601.92186647 5422885.472452365, 3582608.912091282 5422895.876017666, 3582610.506049371 5422902.039557491, 3582610.752118134 5422910.151881395, 3582582.578994025 5422977.740225736, 3582577.850957139 5422988.236992888);[359, 168, 169, 360] +172,0;['DEBW_001000eaUM7'];Counter({'residential': 1});Counter({'Before 1948': 1});1,0;28396,0;4972,0;3750,0;2618,0;502,0;5,0;0,0;0,0;0,0;33,0;1111,0;3251,0;4700,0;10,2;82,369;LINESTRING (3583555.461306171 5421501.381918267, 3583578.589230995 5421510.94972126, 3583582.310303438 5421511.595049273, 3583598.670820906 5421514.465483816, 3583609.740040373 5421518.268776125, 3583633.254532181 5421527.464426965);[192, 173, 174, 191] +173,0;['DEBW_001000eaUM8', 'DEBW_001000eaUM9', 'DEBW_001000eaUM6', 'DEBW_001000eaUM1', 'DEBW_001000eaUMb'];Counter({'non-heated': 2, 'industry': 1, 'education': 1, 'residential': 1});Counter({'1972-1990': 3, '1949-1971': 1, '1991-2010': 1});5,0;60791,0;9948,0;7588,0;5654,0;1890,0;204,0;9,0;1,0;2,0;452,0;2859,0;6711,0;9414,0;66,0;498,611;LINESTRING (3583759.380307437 5421049.121323219, 3583690.188355834 5421290.408427389, 3583674.662742996 5421346.124192049, 3583655.11227639 5421398.008870518, 3583643.806714401 5421433.377286084, 3583630.045624347 5421478.041102894, 3583627.108574475 5421506.227300469, 3583633.254532181 5421527.464426965);[172, 174, 212, 213] +174,0;['DEBW_001000eaUE2', 'DEBW_001000eaUDW', 'DEBW_001000eaUDX', 'DEBW_001000eaUDY', 'DEBW_001000eaUDZ', 'DEBW_001000eaUE5', 'DEBW_001000eaUE7', 'DEBW_001000eaUDV', 'DEBW_001000eaULX', 'DEBW_001000eaULY', 'DEBW_001000eaULZ', 'DEBW_001000eaUM0'];Counter({'residential': 5, 'non-heated': 4, 'office and administration': 3});Counter({'1972-1990': 5, '1949-1971': 4, 'Before 1948': 3});12,0;185221,0;33632,0;25321,0;17684,0;4333,0;258,0;6,0;0,0;1,0;724,0;7968,0;22024,0;31722,0;260,6;125,038;LINESTRING (3583673.98394237 5421642.721006631, 3583674.838130422 5421613.658197223, 3583662.401237062 5421581.848662294, 3583658.328678356 5421571.420849293, 3583650.503210366 5421557.099256858, 3583639.012920973 5421537.895273783, 3583633.254532181 5421527.464426965);[71, 553, 172, 173] +177,0;['DEBW_001000eaUS4', 'DEBW_001000eaUQD'];Counter({'residential': 1, 'office and administration': 1});Counter({'1972-1990': 2});2,0;50784,0;9148,0;6899,0;4885,0;1297,0;101,0;3,0;0,0;0,0;231,0;2195,0;5990,0;8634,0;27,6;54,315;LINESTRING (3583378.613291108 5419748.861399845, 3583384.731222151 5419756.004862444, 3583401.143270894 5419763.624859363, 3583409.644826283 5419771.693842927, 3583414.534908647 5419780.042502929, 3583416.423867266 5419785.120601438);[257, 269, 178, 179] +179,0;['DEBW_001000eaUQy', 'DEBW_001000eaUQK', 'DEBW_001000eaUQE', 'DEBW_001000eaUQA'];Counter({'residential': 3, 'restaurant': 1});Counter({'1972-1990': 2, '1949-1971': 2});4,0;705359,0;72645,0;56745,0;43037,0;15638,0;1560,0;1,0;0,0;0,0;2552,0;19168,0;47164,0;67825,0;122,0;46,714;LINESTRING (3583461.52546576 5419794.682775776, 3583432.191597629 5419784.83372672, 3583416.423867266 5419785.120601438);[177, 178] +180,0;['DEBW_001000eaUUo'];Counter({'industry': 1});Counter({'Before 1948': 1});1,0;86728,0;6018,0;3279,0;735,0;7,0;0,0;0,0;0,0;0,0;0,0;15,0;1412,0;4927,0;29,2;111,892;LINESTRING (3583097.24970289 5418967.210070876, 3583109.76618655 5418969.721264573, 3583148.623578104 5418975.594946671, 3583178.911039907 5418989.182781074, 3583199.103359388 5419006.546592491);[181, 182] +182,0;['DEBW_001000eaUUq'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;15702,0;3116,0;2178,0;1300,0;190,0;6,0;0,0;0,0;0,0;25,0;516,0;1977,0;2933,0;50,8;159,407;LINESTRING (3583210.941235028 5418855.484172635, 3583204.386236674 5418862.315994147, 3583198.073489752 5418868.639779998, 3583184.695959035 5418882.054763984, 3583097.24970289 5418967.210070876);[180, 373, 470, 181] +185,0;['DEBW_001000eyVMJ', 'DEBW_001000eyVMI', 'DEBW_001000eyVMH', 'DEBW_001000eyVMG', 'DEBW_001000eyVME', 'DEBW_001000eyVMD', 'DEBW_001000eyVMC', 'DEBW_001000eyVN3', 'DEBW_001000eyVMR', 'DEBW_001000eyVN2', 'DEBW_001000eyVN1', 'DEBW_001000eyVMP', 'DEBW_001000eyVN0', 'DEBW_001000eyVMO', 'DEBW_001000eyVMN', 'DEBW_001000eyVML', 'DEBW_001000eyVMK', 'DEBW_001000eyVMB', 'DEBW_001000eyVMA', 'DEBW_001000eyVMY', 'DEBW_001000eyVN4'];Counter({'residential': 7, 'office and administration': 6, 'non-heated': 6, 'restaurant': 1, 'industry': 1});Counter({'1972-1990': 12, '1991-2010': 6, '1949-1971': 2, 'After 2011': 1});21,0;716724,0;101456,0;77719,0;57251,0;19018,0;1991,0;33,0;2,0;5,0;3868,0;27048,0;66617,0;95462,0;341,8;210,878;LINESTRING (3585824.548741307 5421100.271379647, 3585831.890241042 5421140.47227053, 3585836.326728793 5421175.578523017, 3585835.599650165 5421209.459567646, 3585832.12431489 5421213.799687459, 3585826.015621775 5421214.929156659, 3585811.042175835 5421209.092517182, 3585796.259188817 5421181.835665192, 3585786.72267703 5421159.931984792, 3585772.817310669 5421148.505828262);[214, 215, 184, 186] +186,0;['DEBW_001000eyVPK', 'DEBW_001000eyVPJ', 'DEBW_001000eyVPE', 'DEBW_001000eyVPC', 'DEBW_001000eyVPB', 'DEBW_001000eyVPA', 'DEBW_001000eyVMQ', 'DEBW_001000eyVMZ', 'DEBW_001000eyVMX', 'DEBW_001000eyVMW', 'DEBW_001000eyVMV', 'DEBW_001000eyVMU', 'DEBW_001000eyVMT', 'DEBW_001000eyVMS', 'DEBW_001000eyVPz', 'DEBW_001000eyVPy', 'DEBW_001000eyVPx'];Counter({'residential': 8, 'non-heated': 5, 'office and administration': 3, 'restaurant': 1});Counter({'1972-1990': 6, '1949-1971': 6, 'Before 1948': 4, 'After 2011': 1});17,0;940132,0;103256,0;80537,0;61241,0;22453,0;2349,0;13,0;0,0;2,0;4097,0;28278,0;67514,0;96683,0;454,3;136,778;LINESTRING (3585747.488505946 5421280.670615391, 3585749.968560001 5421269.073961579, 3585752.531087205 5421233.063268111, 3585753.22078575 5421203.008012886, 3585754.825706421 5421186.359110336, 3585759.326825028 5421173.469905012, 3585772.817310669 5421148.505828262);[263, 264, 184, 185] +188,0;['DEBW_001000eaUHU', 'DEBW_001000eaUHV', 'DEBW_001000eaUHP', 'DEBW_001000eaUHQ', 'DEBW_001000eaUHR', 'DEBW_001000eaUGg', 'DEBW_001000eaUG0'];Counter({'residential': 4, 'non-heated': 2, 'sport location': 1});Counter({'1972-1990': 3, '1949-1971': 2, 'Before 1948': 2});7,0;1267267,0;134632,0;106524,0;81232,0;30777,0;3052,0;26,0;0,0;0,0;4723,0;33688,0;84011,0;124480,0;144,4;106,724;LINESTRING (3583294.849118965 5421971.210288924, 3583306.991288358 5421956.142135122, 3583317.061108859 5421943.901638329, 3583334.299002361 5421933.603655565, 3583340.542427343 5421924.843099169, 3583342.742842874 5421917.379087112, 3583342.299381089 5421889.208940553, 3583342.201544036 5421884.480189316);[38, 311, 154, 187] +189,0;['DEBW_001000eyVGL', 'DEBW_001000eyVHm', 'DEBW_001000eyVHo'];Counter({'residential': 2, 'non-heated': 1});Counter({'1991-2010': 2, '1972-1990': 1});3,0;31417,0;6017,0;4500,0;3113,0;755,0;38,0;0,0;0,0;0,0;124,0;1447,0;3955,0;5696,0;41,0;31,985;LINESTRING (3585624.278160607 5420974.880959111, 3585613.665437184 5420944.707711624);[37, 244, 246, 190] +190,0;['DEBW_001000eyVSc', 'DEBW_001000eyVSb', 'DEBW_001000eyVHD', 'DEBW_001000eyVHA', 'DEBW_001000eyVHM', 'DEBW_001000eyVHL', 'DEBW_001000eyVHK', 'DEBW_001000eyVHJ', 'DEBW_001000eyVHI', 'DEBW_001000eyVHG', 'DEBW_001000eyVHF', 'DEBW_001000eyVH9', 'DEBW_001000eyVHa', 'DEBW_001000eyVHl', 'DEBW_001000eyVHk', 'DEBW_001000eyVHU', 'DEBW_001000eyVHT', 'DEBW_001000eyVHS', 'DEBW_001000eyVHR', 'DEBW_001000eyVHQ', 'DEBW_001000eyVHP', 'DEBW_001000eyVHO', 'DEBW_001000eyVHN', 'DEBW_001000eyVHV', 'DEBW_001000eyVHu', 'DEBW_001000eyVHt', 'DEBW_001000eyVHp', 'DEBW_001000eyVHz', 'DEBW_001000eyVHx', 'DEBW_001000eyVHw', 'DEBW_001000eyVHv'];Counter({'residential': 15, 'non-heated': 14, 'industry': 2});Counter({'1972-1990': 10, '1949-1971': 8, '1991-2010': 7, 'Before 1948': 3, 'After 2011': 3});31,0;238099,0;42954,0;31795,0;21688,0;5043,0;240,0;0,0;0,0;0,0;739,0;9468,0;27843,0;40595,0;715,2;275,68;LINESTRING (3585633.131391415 5420793.220460848, 3585587.410044461 5420778.914629097, 3585567.124605476 5420793.341328954, 3585553.83007085 5420834.203846911, 3585566.782796116 5420876.726188626, 3585555.969141234 5420924.078204609, 3585577.106448348 5420945.803611674, 3585613.665437184 5420944.707711624);[36, 37, 300, 189] +192,0;['DEBW_001000eaUM4', 'DEBW_001000eaUM5', 'DEBW_001000eaUNl', 'DEBW_001000eaUNm'];Counter({'residential': 3, 'non-heated': 1});Counter({'1972-1990': 2, 'Before 1948': 1, '1949-1971': 1});4,0;37484,0;6941,0;5081,0;3236,0;504,0;14,0;0,0;0,0;0,0;61,0;1327,0;4483,0;6600,0;48,2;40,299;LINESTRING (3583580.935576965 5421470.330214601, 3583560.542389615 5421492.960102895, 3583555.461306171 5421501.381918267);[172, 191] +193,0;['DEBW_001000eyVPR', 'DEBW_001000eyVPQ'];Counter({'sport location': 2});Counter({'Before 1948': 1, '1949-1971': 1});2,0;485100,0;49365,0;38641,0;28731,0;10251,0;950,0;8,0;0,0;0,0;1557,0;11561,0;30339,0;45582,0;76,2;32,645;LINESTRING (3585639.696878777 5421237.534951363, 3585626.478690002 5421227.654714652, 3585610.760924432 5421223.97619452);[237, 238] +195,0;['DEBW_001000eqjrc', 'DEBW_001000eaUPv'];Counter({'residential': 1, 'office and administration': 1});Counter({'1972-1990': 1, '1949-1971': 1});2,0;33730,0;6092,0;4622,0;3282,0;892,0;73,0;2,0;0,0;0,0;173,0;1521,0;4007,0;5744,0;197,3;465,724;LINESTRING (3583399.067506523 5423481.599602954, 3583408.289777757 5423505.240740887, 3583412.579600887 5423524.080719196, 3583409.622975182 5423554.669356775, 3583378.161425984 5423654.984335979, 3583357.333607899 5423733.646306777, 3583345.819552395 5423793.627509126, 3583341.794948715 5423826.091120149, 3583340.439914295 5423846.626266719, 3583341.919425311 5423867.214958098, 3583355.406588152 5423894.67946095, 3583373.726594538 5423928.178321234);[202, 196, 557] +196,0;['DEBW_001000eqjra', 'DEBW_001000eqjrb', 'DEBW_001000eqjrd', 'DEBW_001000eqjr9'];Counter({'office and administration': 3, 'residential': 1});Counter({'1972-1990': 3, '1949-1971': 1});4,0;157303,0;28858,0;21796,0;15435,0;4236,0;341,0;11,0;0,0;2,0;857,0;7146,0;18875,0;27109,0;52,8;50,656;LINESTRING (3583347.650229468 5423962.558678648, 3583347.102024637 5423947.300746867, 3583361.860168346 5423939.768876722, 3583362.079085669 5423933.954788956, 3583373.726594538 5423928.178321234);[195] +199,0;['DEBW_001000eaUMt', 'DEBW_001000eaUMs'];Counter({'residential': 1, 'non-heated': 1});Counter({'1991-2010': 1, '1949-1971': 1});2,0;44168,0;7687,0;5953,0;4479,0;1480,0;113,0;2,0;0,0;0,0;277,0;2143,0;5102,0;7238,0;40,5;77,758;LINESTRING (3583367.963622828 5421643.440205107, 3583382.654317717 5421677.062452497, 3583400.187321898 5421714.197668352);[197, 198, 364, 410, 222] +212,0;['DEBW_001000eaUNp'];Counter({'office and administration': 1});Counter({'1949-1971': 1});1,0;146307,0;25987,0;20216,0;15235,0;5292,0;553,0;19,0;1,0;3,0;1188,0;7517,0;17266,0;24475,0;21,2;865,255;LINESTRING (3584011.361716837 5421816.912011317, 3584010.207091887 5421789.46512744, 3583993.187355203 5421685.497131101, 3583956.883122431 5421567.412696842, 3583938.021422487 5421511.157353027, 3583923.354640204 5421464.453222122, 3583920.889714805 5421431.01357529, 3583924.494936745 5421409.177697368, 3583937.193255055 5421382.684730261, 3583967.327695639 5421357.755858165, 3583923.056012444 5421308.091982908, 3583859.910616424 5421229.580485716, 3583823.790459573 5421173.900197714, 3583775.855779409 5421062.961285554, 3583771.133237963 5421056.260974588, 3583759.380307437 5421049.121323219);[204, 173, 176, 213] +213,0;['DEBW_001000eaUM3'];Counter({'office and administration': 1});Counter({'1972-1990': 1});1,0;32411,0;6271,0;4691,0;3296,0;938,0;84,0;2,0;0,0;0,0;198,0;1560,0;4105,0;5931,0;22,6;98,427;LINESTRING (3583671.063075733 5421007.34036806, 3583686.068126308 5421013.683303786, 3583704.829774343 5421018.325255259, 3583711.854452014 5421020.610867937, 3583759.380307437 5421049.121323219);[212, 173] +214,0;['DEBW_001000eyVMF', 'DEBW_001000eyVM4', 'DEBW_001000eyVMh'];Counter({'residential': 2, 'non-heated': 1});Counter({'1949-1971': 2, '1972-1990': 1});3,0;62603,0;10935,0;8197,0;5748,0;1387,0;55,0;1,0;0,0;0,0;184,0;2454,0;7108,0;10302,0;81,2;41,809;LINESTRING (3585783.034666392 5421105.227193544, 3585824.548741307 5421100.271379647);[236, 215, 185, 250] +215,0;['DEBW_001000eyVMu', 'DEBW_001000eyVMt', 'DEBW_001000eyVMs', 'DEBW_001000eyVMi', 'DEBW_001000eyVMn', 'DEBW_001000eyVMm', 'DEBW_001000eyVMk'];Counter({'office and administration': 3, 'residential': 2, 'non-heated': 1, 'education': 1});Counter({'Before 1948': 3, '1949-1971': 2, '1991-2010': 2});7,0;305506,0;53864,0;41555,0;30853,0;9489,0;711,0;27,0;3,0;7,0;1867,0;15033,0;36027,0;50927,0;170,4;91,521;LINESTRING (3585914.717033864 5421086.065967952, 3585857.907742273 5421091.764306257, 3585824.548741307 5421100.271379647);[394, 469, 214, 185] +218,0;['DEBW_001000eaUOc', 'DEBW_001000eaUOt'];Counter({'residential': 2});Counter({'1972-1990': 2});2,0;68528,0;10202,0;7499,0;4952,0;979,0;38,0;0,0;0,0;0,0;134,0;2109,0;6571,0;9653,0;34,6;40,137;LINESTRING (3582477.298922122 5423098.299895259, 3582485.009999962 5423077.836514689, 3582491.469454696 5423060.747125356);[64, 258, 262, 219] +219,0;['DEBW_001000eaUOj', 'DEBW_001000eaUOk', 'DEBW_001000eaUOl', 'DEBW_001000eaUOm', 'DEBW_001000eaUOf', 'DEBW_001000eaUOg', 'DEBW_001000eaUOb', 'DEBW_001000eaUOe', 'DEBW_001000eaUOa', 'DEBW_001000eaUOr', 'DEBW_001000eaUOs', 'DEBW_001000eaUO7', 'DEBW_001000eaUO9'];Counter({'residential': 7, 'non-heated': 6});Counter({'1972-1990': 4, '1991-2010': 3, 'Before 1948': 2, 'After 2011': 2, '1949-1971': 2});13,0;147457,0;26308,0;19863,0;14054,0;3497,0;165,0;2,0;0,0;0,0;487,0;6276,0;17321,0;24887,0;218,1;118,062;LINESTRING (3582454.362766311 5422980.089845696, 3582438.967416262 5422998.415149889, 3582439.296781785 5423007.351796092, 3582440.654082237 5423017.137881083, 3582447.754475541 5423023.571960742, 3582458.073396836 5423026.917006119, 3582479.571627695 5423033.397434904, 3582486.182023881 5423040.258107292, 3582492.388491718 5423047.179544112, 3582491.469454696 5423060.747125356);[64, 162, 538, 218] +220,0;['DEBW_001000eaUMh', 'DEBW_001000eaUMi', 'DEBW_001000eaUMf', 'DEBW_001000eaUMg'];Counter({'non-heated': 2, 'residential': 2});Counter({'1972-1990': 2, 'After 2011': 2});4,0;56707,0;10222,0;7773,0;5510,0;1398,0;70,0;0,0;0,0;0,0;218,0;2550,0;6792,0;9702,0;67,8;91,226;LINESTRING (3583534.862811278 5421524.520477332, 3583519.632225065 5421541.621885837, 3583482.035360528 5421573.671285084, 3583466.999103962 5421585.158611205);[509, 221, 222, 191] +221,0;['DEBW_001000eaUMj'];Counter({'non-heated': 1});Counter({'1972-1990': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;23,9;57,465;LINESTRING (3583469.51968579 5421641.968320118, 3583468.560946187 5421633.066656917, 3583464.015313969 5421600.374721313, 3583466.999103962 5421585.158611205);[491, 492, 220, 222] +222,0;['DEBW_001000eaUMr'];Counter({'industry': 1});Counter({'1949-1971': 1});1,0;210965,0;15271,0;8583,0;2441,0;64,0;0,0;0,0;0,0;0,0;0,0;154,0;4531,0;13176,0;21,7;114,933;LINESTRING (3583367.963622828 5421643.440205107, 3583373.005237585 5421640.568027915, 3583407.956614133 5421620.658038653, 3583449.844006975 5421596.202695291, 3583466.999103962 5421585.158611205);[199, 364, 410, 220, 221] +228,0;['DEBW_001000eyVPM', 'DEBW_001000eyVPL', 'DEBW_001000eyVPP', 'DEBW_001000eyVPO', 'DEBW_001000eyVPm', 'DEBW_001000eyVPk', 'DEBW_001000eyVPj', 'DEBW_001000eyVPu', 'DEBW_001000eyVPs', 'DEBW_001000eyVPq', 'DEBW_001000eyVPp', 'DEBW_001000eyVPw', 'DEBW_001000eyVPv'];Counter({'office and administration': 7, 'residential': 4, 'non-heated': 2});Counter({'1972-1990': 7, 'Before 1948': 2, '1991-2010': 2, '1949-1971': 2});13,0;356604,0;64736,0;49312,0;35632,0;10277,0;735,0;15,0;1,0;1,0;1850,0;16627,0;42645,0;61109,0;302,1;102,989;LINESTRING (3585778.745333958 5421138.163552269, 3585765.097105147 5421134.316237804, 3585744.558258682 5421127.148351925, 3585696.518529717 5421106.020748815, 3585682.208508208 5421103.253533373);[184, 236] +229,0;['DEBW_001000eyVRZ', 'DEBW_001000eyVS0', 'DEBW_001000eyVRN', 'DEBW_001000eyVRW', 'DEBW_001000eyVRV', 'DEBW_001000eyVRU', 'DEBW_001000eyVRS', 'DEBW_001000eyVRR'];Counter({'industry': 3, 'residential': 2, 'retail': 1, 'non-heated': 1, 'office and administration': 1});Counter({'1972-1990': 5, '1949-1971': 2, '1991-2010': 1});8,0;153525,0;18931,0;12814,0;7312,0;1612,0;127,0;4,0;0,0;0,0;292,0;2781,0;9983,0;17347,0;314,1;192,588;LINESTRING (3585693.772335263 5420526.062660709, 3585694.867921767 5420490.08505027, 3585698.706805092 5420478.331301073, 3585711.41111825 5420470.251015482, 3585715.779393631 5420470.318182681, 3585829.603574799 5420472.080690051, 3585840.568238284 5420472.249523454);[230, 234, 235, 217] +230,0;['DEBW_001000eyVOD', 'DEBW_001000eyVOC', 'DEBW_001000eyVOB', 'DEBW_001000eyVOt', 'DEBW_001000eyVOs', 'DEBW_001000eyVOy', 'DEBW_001000eyVOw', 'DEBW_001000eyVOu', 'DEBW_001000eyVS8', 'DEBW_001000eyVS6', 'DEBW_001000eyVS5', 'DEBW_001000eyVS3', 'DEBW_001000eyVS1'];Counter({'non-heated': 5, 'residential': 4, 'office and administration': 3, 'industry': 1});Counter({'Before 1948': 5, '1949-1971': 5, '1972-1990': 3});13,0;154143,0;23597,0;17267,0;11350,0;2508,0;133,0;2,0;0,0;0,0;346,0;4596,0;14366,0;22013,0;453,2;345,734;LINESTRING (3585765.167580423 5420803.426046938, 3585765.774490817 5420770.177196051, 3585769.846704353 5420747.070356069, 3585780.125201536 5420724.626306346, 3585798.840279877 5420692.735104676, 3585808.392604767 5420674.61795038, 3585821.333222335 5420642.126264086, 3585829.048139454 5420614.325967226, 3585836.416089671 5420581.926480276, 3585839.247158668 5420551.848611835, 3585840.568238284 5420472.249523454);[483, 229, 300, 217] +231,0;['DEBW_001000eyVRY', 'DEBW_001000eyVRX'];Counter({'office and administration': 1, 'industry': 1});Counter({'After 2011': 1, '1991-2010': 1});2,0;57859,0;6238,0;4278,0;2519,0;744,0;87,0;3,0;0,0;0,0;194,0;1021,0;3077,0;5589,0;100,4;52,072;LINESTRING (3585693.540450027 5420542.576946538, 3585693.817576835 5420594.648589238);[234, 235] +232,0;['DEBW_001000eyVR7', 'DEBW_001000eyVR5', 'DEBW_001000eyVR4'];Counter({'non-heated': 2, 'residential': 1});Counter({'1991-2010': 1, '1972-1990': 1, 'Before 1948': 1});3,0;29354,0;4923,0;3735,0;2662,0;658,0;23,0;0,0;0,0;0,0;78,0;1171,0;3225,0;4633,0;52,3;284,348;LINESTRING (3586377.320406075 5419630.397621213, 3586373.936368384 5419605.562815663, 3586369.509184275 5419587.953028066, 3586365.391081809 5419575.475805316, 3586356.591680992 5419555.162125982, 3586346.062643144 5419535.266605349, 3586334.520602447 5419514.966112939, 3586319.610123225 5419492.477858637, 3586300.806623026 5419462.843952703, 3586290.201930155 5419445.917259831, 3586283.411892907 5419435.979331883, 3586278.865065585 5419429.39081724, 3586270.690357149 5419424.114325635, 3586259.466784212 5419419.69165781, 3586239.464262585 5419414.921897997, 3586228.945090785 5419414.258685132, 3586224.191844028 5419415.798041473);[233, 239, 405, 216] +235,0;['DEBW_001000eyVRO'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;16471,0;3038,0;2265,0;1558,0;362,0;16,0;0,0;0,0;0,0;54,0;709,0;1992,0;2880,0;35,6;49,225;LINESTRING (3585693.772335263 5420526.062660709, 3585687.312362197 5420526.152449444, 3585676.832728342 5420534.022269899, 3585675.972097381 5420538.981081642, 3585677.775140984 5420545.6826728, 3585687.541509648 5420547.49013787, 3585693.540450027 5420542.576946538);[234, 229, 231] +237,0;['DEBW_001000eyVPH', 'DEBW_001000eyVPG', 'DEBW_001000eyVPD'];Counter({'office and administration': 1, 'residential': 1, 'non-heated': 1});Counter({'Before 1948': 1, 'After 2011': 1, '1972-1990': 1});3,0;160319,0;26367,0;20527,0;15537,0;5098,0;278,0;2,0;0,0;0,0;780,0;7373,0;17540,0;24851,0;80,0;107,373;LINESTRING (3585738.69260365 5421273.994875311, 3585731.055689228 5421268.215707284, 3585712.865983787 5421257.035236906, 3585659.981187529 5421247.890889172, 3585639.696878777 5421237.534951363);[193, 238, 263] +239,0;['DEBW_001000eyVRf', 'DEBW_001000eyVRe', 'DEBW_001000eyVR3'];Counter({'residential': 2, 'non-heated': 1});Counter({'Before 1948': 1, '1991-2010': 1, '1972-1990': 1});3,0;42792,0;7867,0;5887,0;4115,0;986,0;45,0;0,0;0,0;0,0;152,0;1885,0;5169,0;7457,0;68,2;53,025;LINESTRING (3586377.320406075 5419630.397621213, 3586379.584520379 5419647.061809548, 3586380.71758472 5419683.251859254);[232, 140, 77, 405] +243,0;['DEBW_001000eyVHs', 'DEBW_001000eyVHr'];Counter({'non-heated': 1, 'residential': 1});Counter({'1972-1990': 1, '1949-1971': 1});2,0;14334,0;2536,0;1900,0;1308,0;288,0;11,0;0,0;0,0;0,0;37,0;573,0;1657,0;2397,0;33,1;81,999;LINESTRING (3585599.041220701 5420988.619691721, 3585572.495255214 5420979.725107194, 3585521.483909311 5420962.00161868);[244, 245] +244,0;['DEBW_001000eyVFP', 'DEBW_001000eyVFM', 'DEBW_001000eyVHn'];Counter({'residential': 2, 'non-heated': 1});Counter({'1972-1990': 2, '1991-2010': 1});3,0;36198,0;6588,0;4943,0;3433,0;814,0;36,0;0,0;0,0;0,0;120,0;1554,0;4329,0;6253,0;66,9;28,734;LINESTRING (3585624.278160607 5420974.880959111, 3585599.041220701 5420988.619691721);[243, 245, 246, 189] +245,0;['DEBW_001000eyVFR', 'DEBW_001000eyVFQ'];Counter({'residential': 1, 'non-heated': 1});Counter({'1972-1990': 2});2,0;14739,0;2627,0;1955,0;1336,0;286,0;9,0;0,0;0,0;0,0;37,0;572,0;1709,0;2490,0;39,7;31,15;LINESTRING (3585580.064775688 5421013.321962743, 3585599.041220701 5420988.619691721);[243, 244, 251, 252] +246,0;['DEBW_001000eyVP5', 'DEBW_001000eyVOS', 'DEBW_001000eyVP2', 'DEBW_001000eyVP1', 'DEBW_001000eyVOY', 'DEBW_001000eyVOX', 'DEBW_001000eyVP8', 'DEBW_001000eyVP7', 'DEBW_001000eyVP6', 'DEBW_001000eyVPb', 'DEBW_001000eyVFN', 'DEBW_001000eyVGM'];Counter({'residential': 5, 'non-heated': 5, 'office and administration': 2});Counter({'1972-1990': 6, '1949-1971': 4, 'Before 1948': 1, 'After 2011': 1});12,0;181875,0;33014,0;24751,0;17428,0;4985,0;589,0;27,0;2,0;3,0;1050,0;7869,0;21605,0;31178,0;202,8;117,223;LINESTRING (3585738.477427324 5420972.554337371, 3585708.159030232 5420966.826783125, 3585678.393533594 5420963.276906973, 3585653.098295268 5420964.578835811, 3585639.534883132 5420966.628409998, 3585624.278160607 5420974.880959111);[244, 249, 250, 189] +250,0;['DEBW_001000eyVLY', 'DEBW_001000eyVM7', 'DEBW_001000eyVM5', 'DEBW_001000eyVM3', 'DEBW_001000eyVLZ', 'DEBW_001000eyVPl', 'DEBW_001000eyVPi', 'DEBW_001000eyVPh', 'DEBW_001000eyVPg', 'DEBW_001000eyVPf', 'DEBW_001000eyVPt', 'DEBW_001000eyVPo', 'DEBW_001000eyVPe', 'DEBW_001000eyVPd', 'DEBW_001000eyVPc', 'DEBW_001000eyVM2', 'DEBW_001000eyVM1', 'DEBW_001000eyVM0'];Counter({'office and administration': 9, 'residential': 6, 'non-heated': 2, 'hall': 1});Counter({'1972-1990': 9, '1949-1971': 7, 'Before 1948': 2});18,0;270496,0;48972,0;36786,0;26008,0;7163,0;593,0;18,0;1,0;2,0;1339,0;11656,0;31971,0;46171,0;412,7;145,434;LINESTRING (3585783.034666392 5421105.227193544, 3585775.294662442 5421096.131687236, 3585759.696028016 5421082.310280131, 3585751.93574163 5421066.429378193, 3585747.812883416 5421045.67689718, 3585738.597906952 5420984.736031535, 3585738.477427324 5420972.554337371);[236, 214, 246, 249] +251,0;['DEBW_001000eyVG4', 'DEBW_001000eyVFS', 'DEBW_001000eyVG3', 'DEBW_001000eyVG2', 'DEBW_001000eyVG1', 'DEBW_001000eyVFO', 'DEBW_001000eyVG0', 'DEBW_001000eyVG9', 'DEBW_001000eyVFX', 'DEBW_001000eyVFW', 'DEBW_001000eyVG8', 'DEBW_001000eyVG7', 'DEBW_001000eyVFV', 'DEBW_001000eyVG6', 'DEBW_001000eyVFU', 'DEBW_001000eyVG5', 'DEBW_001000eyVFT', 'DEBW_001000eyVGc', 'DEBW_001000eyVGl', 'DEBW_001000eyVGk', 'DEBW_001000eyVGj', 'DEBW_001000eyVGi', 'DEBW_001000eyVGh', 'DEBW_001000eyVGg', 'DEBW_001000eyVGf', 'DEBW_001000eyVGe', 'DEBW_001000eyVGm'];Counter({'residential': 14, 'non-heated': 13});Counter({'1972-1990': 8, '1949-1971': 7, '1991-2010': 6, 'Before 1948': 4, 'After 2011': 2});27,0;215013,0;38783,0;28905,0;20029,0;4670,0;198,0;1,0;0,0;0,0;650,0;8729,0;25329,0;36723,0;553,1;175,984;LINESTRING (3585513.127642161 5421130.622426985, 3585520.332987981 5421133.502646583, 3585550.881121183 5421136.629913093, 3585561.005165245 5421134.649686932, 3585564.579016073 5421130.088452823, 3585568.631525512 5421116.31349056, 3585571.554124796 5421089.718453861, 3585581.432994971 5421071.25001135, 3585584.808849531 5421061.446752048, 3585586.983774425 5421048.699668081, 3585580.064775688 5421013.321962743);[260, 261, 245, 252] +252,0;['DEBW_001000eyVGD', 'DEBW_001000eyVGC', 'DEBW_001000eyVGB', 'DEBW_001000eyVGA', 'DEBW_001000eyVGH', 'DEBW_001000eyVGG', 'DEBW_001000eyVGF', 'DEBW_001000eyVGE', 'DEBW_001000eyVGt', 'DEBW_001000eyVGs', 'DEBW_001000eyVGr', 'DEBW_001000eyVGq', 'DEBW_001000eyVGo', 'DEBW_001000eyVGn', 'DEBW_001000eyVGz', 'DEBW_001000eyVGx', 'DEBW_001000eyVGw', 'DEBW_001000eyVGv'];Counter({'residential': 11, 'non-heated': 7});Counter({'1991-2010': 7, '1949-1971': 5, '1972-1990': 4, 'Before 1948': 1, 'After 2011': 1});18,0;185623,0;35019,0;25939,0;17769,0;4245,0;232,0;1,0;0,0;0,0;656,0;7853,0;22905,0;33211,0;267,4;166,034;LINESTRING (3585504.172171629 5421116.15843245, 3585503.251909158 5421102.084675645, 3585509.226033841 5421079.629743154, 3585521.72134134 5421061.179097068, 3585526.0012378 5421051.211707151, 3585523.376658651 5421021.138977746, 3585527.823598393 5421011.752555005, 3585530.840853085 5421007.638805933, 3585541.839253291 5421006.495068782, 3585580.064775688 5421013.321962743);[260, 261, 245, 251] +253,0;['DEBW_001000eyVKx', 'DEBW_001000eyVKw', 'DEBW_001000eyVKv', 'DEBW_001000eyVLW', 'DEBW_001000eyVLV', 'DEBW_001000eyVKs', 'DEBW_001000eyVKr', 'DEBW_001000eyVKq', 'DEBW_001000eyVKy', 'DEBW_001000eyVKF', 'DEBW_001000eyVKC', 'DEBW_001000eyVKB', 'DEBW_001000eyVKA', 'DEBW_001000eyVJP', 'DEBW_001000eyVKh', 'DEBW_001000eyVKp', 'DEBW_001000eyVLP', 'DEBW_001000eyVKo', 'DEBW_001000eyVLO', 'DEBW_001000eyVLN', 'DEBW_001000eyVKi'];Counter({'residential': 15, 'non-heated': 6});Counter({'1972-1990': 11, 'Before 1948': 4, '1949-1971': 3, '1991-2010': 2, 'After 2011': 1});21,0;289701,0;52059,0;38778,0;26505,0;5631,0;197,0;0,0;0,0;0,0;713,0;11437,0;33935,0;49275,0;361,9;175,236;LINESTRING (3585662.369496463 5421464.461862057, 3585662.372004709 5421469.066883466, 3585724.500644957 5421477.052098464, 3585762.5484719 5421485.201266948, 3585769.696531618 5421482.241289886, 3585775.752695431 5421479.742810454, 3585781.419888509 5421473.467600774, 3585785.667808854 5421460.352054767, 3585790.473337034 5421428.157764492);[254, 63] +254,0;['DEBW_001000eyVFL', 'DEBW_001000eyVFC', 'DEBW_001000eyVFJ', 'DEBW_001000eyVFI', 'DEBW_001000eyVFG', 'DEBW_001000eyVFF', 'DEBW_001000eyVKT'];Counter({'residential': 3, 'non-heated': 2, 'office and administration': 2});Counter({'1972-1990': 3, '1949-1971': 2, '1991-2010': 2});7,0;116039,0;21453,0;16051,0;11212,0;2785,0;162,0;3,0;0,0;0,0;483,0;5138,0;14056,0;20314,0;115,7;100,15;LINESTRING (3585813.083707484 5421330.71112329, 3585803.449800199 5421362.286017023, 3585795.087876643 5421405.515326707, 3585790.473337034 5421428.157764492);[531, 253, 158, 63] +255,0;['DEBW_001000eaUSA'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;17358,0;3158,0;2366,0;1666,0;414,0;20,0;0,0;0,0;0,0;62,0;764,0;2077,0;2984,0;15,2;58,754;LINESTRING (3583182.813924848 5419664.939505426, 3583184.69142117 5419634.434928943, 3583188.883340244 5419606.556535192);[256, 257, 54, 312, 313] +256,0;['DEBW_001000eaUTV'];Counter({'education': 1});Counter({'1949-1971': 1});1,0;70233,0;10663,0;8144,0;6098,0;2089,0;265,0;17,0;2,0;5,0;540,0;3118,0;7277,0;10086,0;27,4;173,754;LINESTRING (3583020.9937503 5419574.07804221, 3583035.31539395 5419580.831588099, 3583052.646260585 5419590.822282753, 3583067.362758776 5419594.689820844, 3583105.194066608 5419594.341413951, 3583130.14707399 5419595.19163618, 3583150.163644228 5419597.647929594, 3583170.409260515 5419602.443537318, 3583188.883340244 5419606.556535192);[257, 398, 337, 54, 255] +257,0;['DEBW_001000eaUSn', 'DEBW_001000eaUSo', 'DEBW_001000eaUSq', 'DEBW_001000eaUSk', 'DEBW_001000eaUSl', 'DEBW_001000eaUSh', 'DEBW_001000eaUSi', 'DEBW_001000eaUSb', 'DEBW_001000eaUSd', 'DEBW_001000eaUSe', 'DEBW_001000eaUSz', 'DEBW_001000eaUSv', 'DEBW_001000eaUSx', 'DEBW_001000eaUSy', 'DEBW_001000eaUSr', 'DEBW_001000eaUSu', 'DEBW_001000eaURM', 'DEBW_001000eaURN', 'DEBW_001000eaURO', 'DEBW_001000eaURI', 'DEBW_001000eaURK', 'DEBW_001000eaURL', 'DEBW_001000eaURE', 'DEBW_001000eaURH', 'DEBW_001000eaURU', 'DEBW_001000eaUS7', 'DEBW_001000eaURV', 'DEBW_001000eaURQ', 'DEBW_001000eaURR', 'DEBW_001000eaURS', 'DEBW_001000eaURT', 'DEBW_001000eaUSa'];Counter({'residential': 16, 'non-heated': 13, 'office and administration': 3});Counter({'1972-1990': 11, 'Before 1948': 8, '1991-2010': 8, '1949-1971': 4, 'After 2011': 1});32,0;572893,0;100522,0;75712,0;52858,0;12540,0;577,0;6,0;0,0;0,0;1809,0;23620,0;65922,0;94949,0;595,2;242,783;LINESTRING (3583378.613291108 5419748.861399845, 3583366.154447939 5419745.071267646, 3583351.230370804 5419738.45244194, 3583315.385827801 5419704.525538583, 3583244.285959025 5419629.039769293, 3583229.199143807 5419619.048590245, 3583214.570996323 5419613.202047663, 3583193.521234157 5419607.760270338, 3583188.883340244 5419606.556535192);[256, 269, 177, 54, 255] +258,0;['DEBW_001000eaUOn', 'DEBW_001000eaUOq', 'DEBW_001000eaUPd', 'DEBW_001000eaUPa', 'DEBW_001000eaUO3', 'DEBW_001000eaUO4', 'DEBW_001000eaUP9'];Counter({'residential': 5, 'office and administration': 1, 'non-heated': 1});Counter({'1972-1990': 4, '1991-2010': 1, '1949-1971': 1, 'Before 1948': 1});7,0;129064,0;22976,0;17392,0;12405,0;3256,0;225,0;5,0;0,0;1,0;540,0;5549,0;15115,0;21708,0;168,7;180,558;LINESTRING (3582477.298922122 5423098.299895259, 3582429.602053444 5423090.063580055, 3582409.685085832 5423087.655506788, 3582361.577997335 5423086.832751883, 3582297.69077696 5423090.259813013);[130, 259, 262, 218] +260,0;['DEBW_001000eyVPT', 'DEBW_001000eyVPS', 'DEBW_001000eyVGI', 'DEBW_001000eyVGb'];Counter({'non-heated': 2, 'residential': 2});Counter({'1949-1971': 2, 'After 2011': 1, '1972-1990': 1});4,0;36375,0;6462,0;4793,0;3254,0;671,0;21,0;0,0;0,0;0,0;83,0;1398,0;4197,0;6118,0;147,3;29,134;LINESTRING (3585513.127642161 5421130.622426985, 3585509.528154112 5421132.079945622, 3585504.358015831 5421132.234209382, 3585499.088417594 5421127.882083734, 3585499.12188535 5421123.789284676, 3585504.172171629 5421116.15843245);[252, 251, 261] +261,0;['DEBW_001000eyVGd', 'DEBW_001000eyVGp'];Counter({'residential': 1, 'non-heated': 1});Counter({'1972-1990': 2});2,0;15640,0;2700,0;2050,0;1451,0;347,0;12,0;0,0;0,0;0,0;47,0;638,0;1771,0;2558,0;35,1;20,511;LINESTRING (3585513.127642161 5421130.622426985, 3585514.167192359 5421124.976702861, 3585512.09248838 5421119.260949163, 3585508.361829199 5421116.845606153, 3585504.172171629 5421116.15843245);[252, 251, 260] +262,0;['DEBW_001000eaUOz', 'DEBW_001000eaUOw', 'DEBW_001000eaUOx', 'DEBW_001000eaUPk', 'DEBW_001000eaUPn', 'DEBW_001000eaUPi', 'DEBW_001000eaUPj', 'DEBW_001000eaUPc', 'DEBW_001000eaUPf', 'DEBW_001000eaUPb', 'DEBW_001000eaUPp'];Counter({'residential': 6, 'office and administration': 4, 'non-heated': 1});Counter({'1949-1971': 4, '1972-1990': 4, '1991-2010': 2, 'Before 1948': 1});11,0;228097,0;41634,0;31472,0;22084,0;5786,0;395,0;9,0;0,0;1,0;1083,0;10216,0;27353,0;39375,0;378,1;145,628;LINESTRING (3582576.857116881 5423186.734656625, 3582569.373832355 5423188.3589101, 3582559.637395369 5423184.299285815, 3582553.015470942 5423178.728616364, 3582541.641763078 5423138.795292635, 3582536.767374846 5423130.503157598, 3582477.298922122 5423098.299895259);[258, 218, 280, 282] +267,0;['DEBW_001000eaUNr'];Counter({'non-heated': 1});Counter({'1991-2010': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;19,0;668,783;LINESTRING (3582546.035688966 5421045.568849143, 3582565.477818092 5421034.010846198, 3582608.588759321 5421004.673197532, 3582655.05096081 5420968.355844436, 3582727.230469096 5420905.72533909, 3582736.06734792 5420898.059289192, 3582770.876215274 5420857.776969546, 3582819.949325888 5420798.341658796, 3582861.095989693 5420748.488170663, 3582890.557262147 5420724.34438577, 3582940.334831467 5420696.5543352, 3582992.243070403 5420675.37012552, 3583027.067446214 5420668.71436984, 3583047.739276079 5420666.786577343, 3583056.477883557 5420665.771102948, 3583065.745344655 5420664.685661717, 3583073.015335964 5420663.837420132);[421, 74, 268, 248] +269,0;['DEBW_001000eaUS0', 'DEBW_001000eaURY', 'DEBW_001000eaURZ', 'DEBW_001000eaURW', 'DEBW_001000eaURX', 'DEBW_001000eaUS2', 'DEBW_001000eaUQ5', 'DEBW_001000eaUQ6', 'DEBW_001000eaUQ1', 'DEBW_001000eaUQ2', 'DEBW_001000eaUQ3', 'DEBW_001000eaUQL', 'DEBW_001000eaUQI', 'DEBW_001000eaUQJ', 'DEBW_001000eaUQG', 'DEBW_001000eaUQB', 'DEBW_001000eaUQC'];Counter({'residential': 6, 'office and administration': 5, 'non-heated': 4, 'industry': 1, 'hall': 1});Counter({'1972-1990': 9, '1991-2010': 4, '1949-1971': 3, 'Before 1948': 1});17,0;334383,0;61463,0;46258,0;32621,0;8955,0;726,0;22,0;0,0;3,0;1735,0;14991,0;40337,0;58051,0;450,6;209,459;LINESTRING (3583550.487564867 5419648.045779052, 3583530.620927307 5419666.434786054, 3583498.158962898 5419691.131074245, 3583474.765307223 5419695.363498684, 3583453.204540024 5419707.442917896, 3583437.454576269 5419727.595675681, 3583427.079994933 5419740.821410138, 3583418.047414662 5419746.681570067, 3583398.959901974 5419750.778513095, 3583378.613291108 5419748.861399845);[257, 177, 370, 530] +278,0;['DEBW_001000eaUM2', 'DEBW_001000eaUNq'];Counter({'office and administration': 1, 'residential': 1});Counter({'1972-1990': 1, 'After 2011': 1});2,0;22715,0;4309,0;3218,0;2252,0;616,0;49,0;1,0;0,0;0,0;119,0;1041,0;2812,0;4079,0;310,6;979,937;LINESTRING (3583971.015319211 5421324.141934651, 3583945.33180854 5421295.90290324, 3583912.939237825 5421256.595655434, 3583875.95651533 5421208.109755456, 3583846.625686231 5421164.01047828, 3583823.065043394 5421119.786809678, 3583801.072099571 5421070.726055724, 3583784.656801643 5421024.607863473, 3583782.507401633 5421017.890608464, 3583772.619839606 5420979.790190011, 3583765.05330744 5420945.272923397, 3583747.692876244 5420819.065948393, 3583765.117721437 5420661.491949106, 3583809.198858705 5420516.08686731, 3583850.499861623 5420420.160022383);[277, 122, 446, 447] +279,0;['DEBW_001000eaUNE'];Counter({'event location': 1});Counter({'Before 1948': 1});1,0;9347,0;2149,0;1611,0;1147,0;266,0;9,0;0,0;0,0;0,0;45,0;589,0;1479,0;2052,0;15,3;57,061;LINESTRING (3582716.952335349 5423079.385095774, 3582716.812581323 5423091.262405124, 3582713.675768355 5423106.109547503, 3582711.09938326 5423116.771634957, 3582706.173379856 5423135.162703103);[355, 144, 280, 281] +280,0;['DEBW_001000eaUOy', 'DEBW_001000eaUOL', 'DEBW_001000eaUOF', 'DEBW_001000eaUOG', 'DEBW_001000eaUOH', 'DEBW_001000eaUOB', 'DEBW_001000eaUOC', 'DEBW_001000eaUOD', 'DEBW_001000eaUOR', 'DEBW_001000eaUOS', 'DEBW_001000eaUOT', 'DEBW_001000eaUOU', 'DEBW_001000eaUOP'];Counter({'non-heated': 5, 'residential': 4, 'office and administration': 3, 'hall': 1});Counter({'1972-1990': 5, '1949-1971': 4, 'Before 1948': 3, '1991-2010': 1});13,0;152413,0;28180,0;21440,0;15483,0;4306,0;254,0;3,0;0,0;0,0;718,0;7274,0;18670,0;26621,0;257,1;169,569;LINESTRING (3582576.857116881 5423186.734656625, 3582586.713049588 5423174.33402203, 3582603.030306778 5423147.702777793, 3582613.07043831 5423128.820201309, 3582619.900884433 5423122.803852972, 3582629.227956844 5423116.924655078, 3582637.336127796 5423114.675738025, 3582646.418997843 5423113.898409665, 3582663.502574991 5423119.101654707, 3582706.173379856 5423135.162703103);[262, 279, 281, 282] +281,0;['DEBW_001000eaUOV', 'DEBW_001000eaUOW', 'DEBW_001000eaUOX', 'DEBW_001000eaUP3'];Counter({'office and administration': 3, 'residential': 1});Counter({'Before 1948': 3, '1972-1990': 1});4,0;32281,0;6006,0;4435,0;2903,0;528,0;17,0;0,0;0,0;0,0;64,0;1189,0;3866,0;5662,0;173,2;80,444;LINESTRING (3582755.613133283 5423194.215025615, 3582751.067121025 5423190.476887851, 3582746.195080672 5423186.489204096, 3582729.273454895 5423172.867975309, 3582717.160545671 5423163.055544413, 3582714.073956158 5423159.227881296, 3582709.526823651 5423153.587726042, 3582706.95561181 5423143.672305091, 3582706.173379856 5423135.162703103);[458, 465, 53, 279, 280] +282,0;['DEBW_001000eaUPm', 'DEBW_001000eaUPo', 'DEBW_001000eaUPq', 'DEBW_001000eaUPr', 'DEBW_001000eaUOZ', 'DEBW_001000eaUP7', 'DEBW_001000eaUP8', 'DEBW_001000eaUOY', 'DEBW_001000eaUP4', 'DEBW_001000eaUP5', 'DEBW_001000eaUP6', 'DEBW_001000eaUP0', 'DEBW_001000eaUP1'];Counter({'office and administration': 6, 'residential': 4, 'non-heated': 3});Counter({'1972-1990': 8, 'Before 1948': 3, 'After 2011': 1, '1949-1971': 1});13,0;200506,0;36993,0;27631,0;19216,0;4832,0;283,0;6,0;0,0;0,0;792,0;8556,0;24111,0;34840,0;389,0;593,316;LINESTRING (3582405.913504378 5423724.314110288, 3582421.346985316 5423693.375813401, 3582434.711252089 5423667.111962982, 3582445.767485077 5423643.338898692, 3582473.664695695 5423598.514647404, 3582483.678111534 5423580.365579835, 3582491.693249869 5423566.046617455, 3582495.292790781 5423545.133048327, 3582497.555457593 5423523.954972433, 3582499.493462564 5423507.877552744, 3582499.625629962 5423494.999058485, 3582497.564815355 5423481.77663628, 3582493.567254661 5423465.255362378, 3582491.389681271 5423453.977741885, 3582491.556031231 5423444.7258579, 3582494.358682375 5423436.558584621, 3582509.168895415 5423407.713530313, 3582533.022221473 5423364.931894979, 3582556.977173455 5423324.710155112, 3582570.336092837 5423297.423209558, 3582583.838068057 5423271.862482373, 3582594.242040475 5423244.731992462, 3582598.425600378 5423233.882351954, 3582598.469025821 5423223.049178553, 3582592.054793753 5423210.396179363, 3582579.574342497 5423195.21730859, 3582576.857116881 5423186.734656625);[280, 262] +287,0;['DEBW_001000eaUIU', 'DEBW_001000eaUIW', 'DEBW_001000eaUKk', 'DEBW_001000eaUKl', 'DEBW_001000eaUKm', 'DEBW_001000eaUIX', 'DEBW_001000eaUIY', 'DEBW_001000eaUIZ'];Counter({'residential': 6, 'non-heated': 2});Counter({'1991-2010': 3, '1972-1990': 3, 'Before 1948': 1, '1949-1971': 1});8,0;55360,0;9871,0;7308,0;4941,0;1048,0;34,0;0,0;0,0;0,0;122,0;2080,0;6402,0;9337,0;151,1;60,145;LINESTRING (3583275.451476303 5421536.076838234, 3583280.562863754 5421531.481550974, 3583292.531689837 5421527.578275091, 3583322.108197847 5421525.984889741, 3583333.141862719 5421526.783880222);[288, 481, 240, 28] +288,0;['DEBW_001000eaUKo'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;9298,0;1780,0;1231,0;751,0;108,0;3,0;0,0;0,0;0,0;13,0;280,0;1113,0;1675,0;19,5;50,723;LINESTRING (3583338.445962942 5421576.939050929, 3583334.443480269 5421561.785253592, 3583333.21422533 5421545.961054926, 3583333.141862719 5421526.783880222);[240, 211, 410, 287] +290,0;['DEBW_001000eaUFx', 'DEBW_001000eaUMv'];Counter({'office and administration': 2});Counter({'1972-1990': 2});2,0;192088,0;32434,0;25762,0;20175,0;8050,0;1037,0;41,0;3,0;6,0;1854,0;9905,0;21652,0;30418,0;89,4;277,323;LINESTRING (3583633.374849145 5421874.460663403, 3583644.185418016 5421881.285632485, 3583706.194847201 5421920.446711364, 3583745.414060602 5421941.31333005, 3583773.423800227 5421948.741890499, 3583796.080069899 5421950.050264296, 3583820.28608502 5421943.829487215, 3583838.43771825 5421935.704658334, 3583880.32969559 5421908.004687844);[512, 289, 291, 399] +291,0;['DEBW_001000eaUDC', 'DEBW_001000eaUDD', 'DEBW_001000eaUDE', 'DEBW_001000eaUFu', 'DEBW_001000eaUFv', 'DEBW_001000eaUDx', 'DEBW_001000eaUDy', 'DEBW_001000eaUFq', 'DEBW_001000eaUFr', 'DEBW_001000eaUFs', 'DEBW_001000eaUFt', 'DEBW_001000eaUFn', 'DEBW_001000eaUFo', 'DEBW_001000eaUMI', 'DEBW_001000eaUMD', 'DEBW_001000eaUME', 'DEBW_001000eaUMF', 'DEBW_001000eaUMG'];Counter({'residential': 8, 'non-heated': 8, 'office and administration': 2});Counter({'1972-1990': 10, '1949-1971': 7, 'Before 1948': 1});18,0;222694,0;40264,0;30257,0;21032,0;5259,0;351,0;9,0;0,0;1,0;896,0;9372,0;26359,0;38001,0;321,3;147,895;LINESTRING (3583774.061769804 5421815.64190506, 3583819.877999247 5421884.237136743, 3583835.909731525 5421894.266604764, 3583880.32969559 5421908.004687844);[289, 290, 344, 345] +297,0;['DEBW_001000eaUF1', 'DEBW_001000eaUEX'];Counter({'non-heated': 1, 'residential': 1});Counter({'After 2011': 2});2,0;26458,0;4611,0;3563,0;2686,0;883,0;59,0;1,0;0,0;0,0;155,0;1303,0;3090,0;4359,0;23,4;22,978;LINESTRING (3583639.896668258 5421769.55700773, 3583656.883604619 5421754.084013673);[72, 298, 299, 95] +300,0;['DEBW_001000eyVOL', 'DEBW_001000eyVOG', 'DEBW_001000eyVON', 'DEBW_001000eyVS9', 'DEBW_001000eyVS7', 'DEBW_001000eyVHB', 'DEBW_001000eyVH5', 'DEBW_001000eyVH3', 'DEBW_001000eyVH2', 'DEBW_001000eyVH1', 'DEBW_001000eyVH8', 'DEBW_001000eyVH7', 'DEBW_001000eyVH6'];Counter({'residential': 7, 'non-heated': 4, 'hall': 2});Counter({'1972-1990': 6, '1991-2010': 3, '1949-1971': 3, 'Before 1948': 1});13,0;178290,0;33730,0;25707,0;18952,0;5795,0;528,0;15,0;2,0;4,0;1658,0;10060,0;23073,0;32086,0;239,5;135,445;LINESTRING (3585765.167580423 5420803.426046938, 3585736.516119142 5420802.217762297, 3585718.975165159 5420802.615364821, 3585695.735024272 5420800.367075456, 3585658.735089263 5420786.684164377, 3585633.131391415 5420793.220460848);[483, 36, 230, 190] +301,0;['DEBW_001000eaUEQ', 'DEBW_001000eaUES', 'DEBW_001000eaUET'];Counter({'non-heated': 2, 'residential': 1});Counter({'Before 1948': 2, '1991-2010': 1});3,0;28091,0;4884,0;3693,0;2530,0;421,0;3,0;0,0;0,0;0,0;26,0;1082,0;3191,0;4632,0;33,2;38,994;LINESTRING (3583619.454297135 5421782.330914242, 3583609.165957716 5421796.858954543, 3583598.142486649 5421814.957603848);[298, 302, 303, 566] +306,0;['DEBW_001000eaURl', 'DEBW_001000eaUPP', 'DEBW_001000fO0RA'];Counter({'sport location': 2, 'residential': 1});Counter({'1949-1971': 2, '1972-1990': 1});3,0;308389,0;33716,0;26282,0;19556,0;7157,0;849,0;12,0;0,0;0,0;1355,0;8472,0;21111,0;31310,0;87,8;524,058;LINESTRING (3583431.051627827 5419073.012019938, 3583435.987976664 5419088.602428878, 3583437.754531123 5419108.73921349, 3583438.555922844 5419139.472888154, 3583442.951762903 5419158.837035877, 3583450.343587708 5419176.933504472, 3583454.022662674 5419191.270471618, 3583453.411552086 5419221.326762487, 3583455.312866414 5419247.149423395, 3583462.191921234 5419269.120164391, 3583483.210181256 5419312.002441615, 3583519.399176186 5419370.039048883, 3583554.609092968 5419426.326059357, 3583590.491195379 5419482.723499026, 3583627.904227408 5419523.03804487, 3583635.588823339 5419540.605284953);[320, 305, 307, 470] +311,0;['DEBW_001000eaUI0', 'DEBW_001000eaUHO', 'DEBW_001000eaUI1', 'DEBW_001000eaUI3', 'DEBW_001000eaUHK', 'DEBW_001000eaUHL', 'DEBW_001000eaUHM', 'DEBW_001000eaUHN', 'DEBW_001000eaUHJ'];Counter({'residential': 5, 'non-heated': 4});Counter({'1972-1990': 3, '1991-2010': 3, '1949-1971': 1, 'After 2011': 1, 'Before 1948': 1});9,0;104229,0;19399,0;14483,0;9957,0;2306,0;109,0;1,0;0,0;0,0;344,0;4498,0;12731,0;18412,0;197,5;67,538;LINESTRING (3583294.849118965 5421971.210288924, 3583306.345386134 5421973.362051926, 3583316.769977532 5421981.014837871, 3583323.007673818 5421989.294661281, 3583327.898588424 5422021.468870183);[188, 38] +312,0;['DEBW_001000eaUSp', 'DEBW_001000eaUSj', 'DEBW_001000eaUSm', 'DEBW_001000eaUTS', 'DEBW_001000eaUTT', 'DEBW_001000eaUSs', 'DEBW_001000eaUSt', 'DEBW_001000eaUSB', 'DEBW_001000eaUSC', 'DEBW_001000eaUSD', 'DEBW_001000eaUSE'];Counter({'non-heated': 5, 'residential': 4, 'office and administration': 2});Counter({'Before 1948': 5, '1972-1990': 4, '1991-2010': 1, '1949-1971': 1});11,0;175088,0;31745,0;24259,0;17468,0;4712,0;238,0;2,0;0,0;0,0;693,0;7947,0;20936,0;29900,0;127,9;106,231;LINESTRING (3583260.378102137 5419734.225393794, 3583241.10310327 5419716.01848925, 3583214.475765688 5419687.379800591, 3583201.277889196 5419670.698601038, 3583189.00268137 5419666.86712112, 3583182.813924848 5419664.939505426);[313, 314, 315, 255] +313,0;['DEBW_001000eaUZG', 'DEBW_001000eaUZy'];Counter({'residential': 2});Counter({'Before 1948': 1, '1972-1990': 1});2,0;37929,0;6928,0;5116,0;3440,0;637,0;19,0;0,0;0,0;0,0;74,0;1458,0;4505,0;6562,0;41,2;156,099;LINESTRING (3583165.281025271 5419819.921449417, 3583175.690600161 5419755.641274396, 3583182.813924848 5419664.939505426);[389, 550, 558, 312, 255] +314,0;['DEBW_001000eaUSf', 'DEBW_001000eaUSc', 'DEBW_001000eaUS8', 'DEBW_001000eaUS9', 'DEBW_001000eaUSN', 'DEBW_001000eaUSO', 'DEBW_001000eaUSP', 'DEBW_001000eaUSQ', 'DEBW_001000eaUSJ', 'DEBW_001000eaUSK', 'DEBW_001000eaUSL', 'DEBW_001000eaUSM'];Counter({'non-heated': 6, 'residential': 6});Counter({'1972-1990': 4, 'After 2011': 2, 'Before 1948': 2, '1991-2010': 2, '1949-1971': 2});12,0;127575,0;23456,0;17569,0;12025,0;2549,0;95,0;0,0;0,0;0,0;338,0;5329,0;15383,0;22271,0;273,2;88,363;LINESTRING (3583326.623391244 5419789.061339328, 3583325.790643267 5419781.496383824, 3583299.970429849 5419762.190390492, 3583274.515997361 5419745.381534033, 3583260.378102137 5419734.225393794);[312, 315] +315,0;['DEBW_001000eaUTO', 'DEBW_001000eaUTP', 'DEBW_001000eaUTQ', 'DEBW_001000eaUTM', 'DEBW_001000eaUTN', 'DEBW_001000eaUTC', 'DEBW_001000eaUTz', 'DEBW_001000eaUSF', 'DEBW_001000eaUSG', 'DEBW_001000eaUTA'];Counter({'residential': 5, 'non-heated': 5});Counter({'1972-1990': 7, '1949-1971': 2, '1991-2010': 1});10,0;89465,0;15622,0;11786,0;8204,0;1894,0;75,0;0,0;0,0;0,0;254,0;3642,0;10253,0;14785,0;192,6;108,791;LINESTRING (3583215.304166605 5419828.375998688, 3583225.059953241 5419810.880545868, 3583227.780428373 5419795.137633596, 3583228.53475598 5419773.092011116, 3583232.206389313 5419764.359656548, 3583260.378102137 5419734.225393794);[389, 378, 312, 314] +316,0;['DEBW_001000es5tL'];Counter({'hall': 1});Counter({'1972-1990': 1});1,0;16390,0;3194,0;2546,0;2127,0;1027,0;231,0;15,0;1,0;4,0;461,0;1377,0;2353,0;3055,0;989,2;26,035;LINESTRING (3585812.575352789 5422468.714122765, 3585821.565410613 5422474.547677194, 3585834.655997407 5422482.502213256);[352, 351] +318,0;['DEBW_001000eaUYc'];Counter({'hall': 1});Counter({'After 2011': 1});1,0;137705,0;27362,0;21799,0;17787,0;7900,0;1418,0;65,0;5,0;17,0;3419,0;11567,0;20083,0;26282,0;17,0;245,118;LINESTRING (3582997.97281182 5418481.115852181, 3582982.850380954 5418466.375425403, 3582968.168897816 5418448.115626437, 3582950.418528999 5418426.629072226, 3582942.083600631 5418416.538981351, 3582912.525354108 5418367.458952853, 3582889.483027071 5418329.454252374, 3582871.729750285 5418293.307894597, 3582865.092891626 5418277.003187062);[321, 317] +320,0;['DEBW_001000eaUPQ', 'DEBW_001000eaUPR'];Counter({'industry': 2});Counter({'1949-1971': 1, '1972-1990': 1});2,0;7797,0;895,0;509,0;181,0;9,0;0,0;0,0;0,0;0,0;0,0;23,0;348,0;795,0;108,5;162,254;LINESTRING (3583431.051627827 5419073.012019938, 3583540.114636433 5419074.789175783, 3583566.814235165 5419090.872583418, 3583588.605097298 5419093.946510591);[306, 470] +321,0;['DEBW_001000eaUYd', 'DEBW_001000eaUYe'];Counter({'industry': 1, 'office and administration': 1});Counter({'1949-1971': 1, '1972-1990': 1});2,0;105379,0;10056,0;6340,0;2741,0;284,0;7,0;0,0;0,0;0,0;28,0;640,0;4183,0;8936,0;34,1;193,943;LINESTRING (3582997.97281182 5418481.115852181, 3583024.562502492 5418478.764165363, 3583027.306172311 5418479.194304395, 3583056.086783462 5418501.590575099, 3583057.619419616 5418504.549854215, 3583031.125882904 5418539.860114746, 3583027.366292836 5418541.172277996, 3582998.747221566 5418521.726136776, 3582997.987484362 5418519.556980638, 3583001.797178374 5418501.572242529, 3583001.960673918 5418490.585201964, 3582997.97281182 5418481.115852181);[318] +327,0;['DEBW_001000eaUDB', 'DEBW_001000eaUMH', 'DEBW_001000eaUMJ', 'DEBW_001000eaUMK', 'DEBW_001000eaUML'];Counter({'non-heated': 4, 'residential': 1});Counter({'1949-1971': 3, '1991-2010': 1, '1972-1990': 1});5,0;30711,0;5189,0;3993,0;2877,0;728,0;26,0;0,0;0,0;0,0;100,0;1322,0;3423,0;4910,0;92,5;120,629;LINESTRING (3583909.115708809 5421898.927870934, 3583906.144812907 5421884.50101762, 3583903.172483981 5421873.088494265, 3583894.684026912 5421861.982228244, 3583883.872879705 5421848.883352424, 3583864.62763313 5421821.542398916, 3583857.74536333 5421808.892016742, 3583854.430253222 5421793.948357396);[343, 342] +329,0;['DEBW_001000eaUUB', 'DEBW_001000eaUUz'];Counter({'residential': 1, 'non-heated': 1});Counter({'1949-1971': 1, '1972-1990': 1});2,0;32779,0;5586,0;4218,0;3016,0;761,0;28,0;0,0;0,0;0,0;90,0;1293,0;3650,0;5243,0;28,1;49,808;LINESTRING (3583019.555245777 5419564.32402609, 3583016.001136072 5419560.745133118, 3583010.979369981 5419554.786324955, 3583006.19547974 5419548.608603067, 3583001.164305469 5419540.324963679, 3583000.664508341 5419536.958387727, 3583002.630009354 5419534.462728656, 3583004.852835819 5419532.905229957, 3583007.588137607 5419531.399852336, 3583014.613707983 5419530.814810535);[328, 330, 337] +331,0;['DEBW_001000eaUKb', 'DEBW_001000eaUKc', 'DEBW_001000eaUKd', 'DEBW_001000eaUKe', 'DEBW_001000eaUKa', 'DEBW_001000eaUKv', 'DEBW_001000eaUKw', 'DEBW_001000eaUKx', 'DEBW_001000eaUK6', 'DEBW_001000eaUJU', 'DEBW_001000eaUJV', 'DEBW_001000eaUK7', 'DEBW_001000eaUJW', 'DEBW_001000eaUK8', 'DEBW_001000eaUJX', 'DEBW_001000eaUK9', 'DEBW_001000eaUJQ', 'DEBW_001000eaUK3', 'DEBW_001000eaUJR', 'DEBW_001000eaUK4', 'DEBW_001000eaUJS', 'DEBW_001000eaUK5', 'DEBW_001000eaUJT', 'DEBW_001000eaUK0', 'DEBW_001000eaUK1', 'DEBW_001000eaUJb', 'DEBW_001000eaUJY', 'DEBW_001000eaUJZ', 'DEBW_001000eaUJm'];Counter({'residential': 17, 'non-heated': 12});Counter({'1972-1990': 12, 'Before 1948': 7, '1991-2010': 5, '1949-1971': 5});29,0;275416,0;49271,0;36790,0;25125,0;5359,0;193,0;0,0;0,0;0,0;686,0;10943,0;32178,0;46610,0;435,9;231,578;LINESTRING (3583099.756939799 5421692.27971785, 3583090.496758949 5421679.227817904, 3583087.253643096 5421667.177731537, 3583088.659345889 5421653.517384447, 3583099.912770549 5421635.632533209, 3583115.52474024 5421616.933989502, 3583120.482012175 5421603.493465729, 3583125.203390998 5421582.774976539, 3583130.252135382 5421572.049840511, 3583140.876920392 5421564.878274603, 3583151.776054926 5421564.373507512, 3583163.441831888 5421567.995717824, 3583170.099344881 5421574.713265964, 3583173.009305664 5421577.648679676, 3583176.776082261 5421589.962462947, 3583190.492912748 5421607.897299382, 3583200.78917476 5421612.91177051);[332, 46, 486] +332,0;['DEBW_001000eaUJE', 'DEBW_001000eaUJF', 'DEBW_001000eaUJG', 'DEBW_001000eaUJB', 'DEBW_001000eaUJC', 'DEBW_001000eaUJD', 'DEBW_001000eaUJe', 'DEBW_001000eaUJg', 'DEBW_001000eaUJh', 'DEBW_001000eaUJd', 'DEBW_001000eaUJi', 'DEBW_001000eaUJk'];Counter({'residential': 8, 'non-heated': 4});Counter({'1972-1990': 8, '1949-1971': 3, '1991-2010': 1});12,0;126957,0;23217,0;17160,0;11455,0;2304,0;82,0;0,0;0,0;0,0;307,0;4958,0;15106,0;21954,0;200,6;134,48;LINESTRING (3583200.78917476 5421612.91177051, 3583194.778010806 5421626.236387222, 3583189.765309382 5421633.068949506, 3583182.033219271 5421640.405951891, 3583164.581732977 5421650.734598894, 3583153.807383343 5421661.552234708, 3583140.596206698 5421677.027446752, 3583126.300267511 5421686.613555028, 3583115.592655092 5421691.492567109, 3583099.756939799 5421692.27971785);[331, 46, 486] +339,0;['DEBW_001000eaUHb', 'DEBW_001000eaUGF', 'DEBW_001000eaUGG', 'DEBW_001000eaUGH'];Counter({'non-heated': 2, 'residential': 2});Counter({'1972-1990': 3, 'Before 1948': 1});4,0;27300,0;5106,0;3725,0;2439,0;462,0;16,0;0,0;0,0;0,0;63,0;1056,0;3300,0;4833,0;80,6;55,762;LINESTRING (3583234.392639128 5421875.049295035, 3583228.687886613 5421874.74162462, 3583195.103324575 5421872.471541556, 3583178.815847344 5421870.660045677);[453, 455, 103, 456, 340] +340,0;['DEBW_001000eaUGZ', 'DEBW_001000eaUH7', 'DEBW_001000eaUH8', 'DEBW_001000eaUH9', 'DEBW_001000eaUHc', 'DEBW_001000eaUHt', 'DEBW_001000eaUHu', 'DEBW_001000eaUHr', 'DEBW_001000eaUH4', 'DEBW_001000eaUH5', 'DEBW_001000eaUH0', 'DEBW_001000eaUH2'];Counter({'residential': 7, 'non-heated': 5});Counter({'1972-1990': 6, '1949-1971': 4, '1991-2010': 1, 'Before 1948': 1});12,0;152195,0;27501,0;20397,0;13920,0;3072,0;122,0;0,0;0,0;0,0;417,0;6123,0;17923,0;26014,0;200,2;76,226;LINESTRING (3583170.806258016 5421946.1992852, 3583169.999852707 5421934.43021418, 3583170.795222244 5421920.916490905, 3583178.815847344 5421870.660045677);[339, 103] +342,0;['DEBW_001000eaUMB'];Counter({'industry': 1});Counter({'Before 1948': 1});1,0;25957,0;1188,0;468,0;50,0;0,0;0,0;0,0;0,0;0,0;0,0;1,0;165,0;938,0;27,7;53,131;LINESTRING (3583961.813548134 5421902.702649861, 3583931.454453797 5421897.974027756, 3583915.748110164 5421897.982180925, 3583909.115708809 5421898.927870934);[327, 554, 206, 498, 343] +343,0;['DEBW_001000eaUMA'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;45167,0;3205,0;1834,0;587,0;23,0;0,0;0,0;0,0;0,0;0,0;35,0;972,0;2704,0;19,6;25,282;LINESTRING (3583885.047696659 5421906.18479139, 3583900.874921802 5421900.094058431, 3583909.115708809 5421898.927870934);[289, 327, 529, 342] +344,0;['DEBW_001000eaUDJ', 'DEBW_001000eaUDF', 'DEBW_001000eaUFp'];Counter({'residential': 2, 'office and administration': 1});Counter({'1991-2010': 1, '1972-1990': 1, '1949-1971': 1});3,0;96616,0;17721,0;13561,0;9858,0;2930,0;260,0;7,0;0,0;1,0;600,0;4694,0;11781,0;16720,0;26,9;32,705;LINESTRING (3583755.083789432 5421789.006119029, 3583774.061769804 5421815.64190506);[291, 406, 407, 345] +345,0;['DEBW_001000eaUDA', 'DEBW_001000eaUDG', 'DEBW_001000eaUDH', 'DEBW_001000eaUDI', 'DEBW_001000eaUDz'];Counter({'office and administration': 2, 'residential': 2, 'non-heated': 1});Counter({'1972-1990': 3, '1949-1971': 2});5,0;82551,0;15057,0;11329,0;7939,0;1987,0;136,0;4,0;0,0;0,0;361,0;3631,0;9875,0;14185,0;66,8;61,146;LINESTRING (3583821.55891695 5421809.526615342, 3583817.772880162 5421800.05956217, 3583813.124697055 5421795.28459637, 3583806.814073412 5421796.758034099, 3583774.061769804 5421815.64190506);[344, 291] +355,0;['DEBW_001000eaUOu', 'DEBW_001000eaUNI', 'DEBW_001000eaUNJ', 'DEBW_001000eaUNK', 'DEBW_001000eaUNL', 'DEBW_001000eaUNP', 'DEBW_001000eaUOK', 'DEBW_001000eaUOM', 'DEBW_001000eaUOI', 'DEBW_001000eaUON'];Counter({'residential': 5, 'non-heated': 3, 'restaurant': 1, 'office and administration': 1});Counter({'1972-1990': 5, '1949-1971': 4, 'Before 1948': 1});10,0;576874,0;61661,0;48252,0;36732,0;13679,0;1465,0;15,0;1,0;2,0;2535,0;16996,0;40221,0;57656,0;165,8;165,795;LINESTRING (3582568.106605469 5423008.414285521, 3582632.512080408 5423047.187578367, 3582693.801161943 5423073.713425059, 3582716.952335349 5423079.385095774);[356, 168, 144, 279] +358,0;['DEBW_001000eyVQ1', 'DEBW_001000eyVSl', 'DEBW_001000eyVSi'];Counter({'office and administration': 2, 'event location': 1});Counter({'1949-1971': 2, 'Before 1948': 1});3,0;130669,0;23893,0;18327,0;13431,0;4313,0;414,0;13,0;1,0;3,0;944,0;6481,0;15789,0;22530,0;459,3;697,262;LINESTRING (3585148.007078524 5421940.168026473, 3585167.590819123 5421945.895410107, 3585187.418939774 5421953.372931271, 3585213.291593334 5421967.683577938, 3585236.842080897 5421983.827511646, 3585285.15825717 5422024.320918412, 3585335.936203053 5422067.210574348, 3585415.029585662 5422134.649698541, 3585480.926421662 5422192.722056252, 3585530.904076226 5422233.599176613, 3585557.009583866 5422255.990491327, 3585589.255820435 5422284.13795801, 3585692.218886602 5422370.679448104);[353, 357, 454, 438] +363,0;['DEBW_001000eaUIO'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;24807,0;4190,0;3208,0;2315,0;598,0;23,0;0,0;0,0;0,0;78,0;1033,0;2767,0;3936,0;20,5;170,238;LINESTRING (3583021.545201198 5421934.340872562, 3583041.202991109 5421883.1008646, 3583053.749590609 5421857.582567015, 3583059.120312447 5421848.341531795, 3583068.703032326 5421834.335900535, 3583091.389980009 5421811.504903577, 3583112.098496007 5421794.061395803);[448, 362, 107, 364] +364,0;['DEBW_001000eaULN', 'DEBW_001000eaUKF', 'DEBW_001000eaUKG', 'DEBW_001000eaUKD', 'DEBW_001000eaUKX', 'DEBW_001000eaUKY', 'DEBW_001000eaUL5', 'DEBW_001000eaUL2', 'DEBW_001000eaUKK', 'DEBW_001000eaUKL'];Counter({'residential': 7, 'non-heated': 3});Counter({'1949-1971': 6, '1972-1990': 2, 'Before 1948': 1, '1991-2010': 1});10,0;111355,0;19913,0;15007,0;10512,0;2568,0;109,0;0,0;0,0;0,0;350,0;4704,0;13099,0;18804,0;170,4;303,151;LINESTRING (3583367.963622828 5421643.440205107, 3583343.72648213 5421654.145079943, 3583339.491424831 5421656.017149614, 3583305.330560124 5421668.676039513, 3583267.27411785 5421689.441224135, 3583224.804906659 5421710.752523168, 3583176.641416227 5421734.504067073, 3583156.479203835 5421745.270562681, 3583140.457851321 5421756.543829092, 3583123.845355626 5421770.600199302, 3583115.842064554 5421780.413675136, 3583112.098496007 5421794.061395803);[199, 363, 107, 410, 222] +366,0;['DEBW_001000eaUGz', 'DEBW_001000eaUGB', 'DEBW_001000eaUGC', 'DEBW_001000eaUL6'];Counter({'residential': 3, 'non-heated': 1});Counter({'1972-1990': 1, 'Before 1948': 1, 'After 2011': 1, '1949-1971': 1});4,0;30309,0;5646,0;4170,0;2795,0;557,0;19,0;0,0;0,0;0,0;75,0;1213,0;3671,0;5352,0;65,8;45,416;LINESTRING (3583377.748803993 5421804.06966774, 3583397.810573958 5421801.989550876, 3583423.056268686 5421801.722303588);[34, 552, 44, 365] +367,0;['DEBW_001000eaUV9', 'DEBW_001000eaUV7', 'DEBW_001000eaUVa', 'DEBW_001000eaUVb'];Counter({'non-heated': 2, 'residential': 2});Counter({'1972-1990': 4});4,0;28768,0;5329,0;3860,0;2485,0;470,0;17,0;0,0;0,0;0,0;58,0;1012,0;3429,0;5042,0;92,2;27,89;LINESTRING (3582885.349619465 5419317.611352171, 3582912.698899498 5419323.078842106);[368, 138] +368,0;['DEBW_001000eaUVT', 'DEBW_001000eaUVc', 'DEBW_001000eaUVd', 'DEBW_001000eaUVU', 'DEBW_001000eaUVV', 'DEBW_001000eaUVX', 'DEBW_001000eaUVe'];Counter({'residential': 4, 'non-heated': 3});Counter({'1972-1990': 2, '1949-1971': 2, '1991-2010': 1, 'After 2011': 1, 'Before 1948': 1});7,0;70200,0;12494,0;9342,0;6382,0;1247,0;33,0;0,0;0,0;0,0;143,0;2754,0;8154,0;11839,0;119,9;69,139;LINESTRING (3582980.363930184 5419337.265963908, 3582960.184383113 5419332.883610602, 3582935.473666613 5419327.989025903, 3582912.698899498 5419323.078842106);[134, 138, 367, 501] +369,0;['DEBW_001000eaUTa', 'DEBW_001000eaUTe', 'DEBW_001000eaUTf', 'DEBW_001000eaUT7', 'DEBW_001000eaUT8', 'DEBW_001000eaUT9'];Counter({'residential': 5, 'non-heated': 1});Counter({'1972-1990': 2, '1991-2010': 2, 'Before 1948': 1, '1949-1971': 1});6,0;74687,0;13601,0;10158,0;6937,0;1527,0;66,0;0,0;0,0;0,0;218,0;3072,0;8906,0;12888,0;84,6;85,495;LINESTRING (3583275.773080267 5419908.129644018, 3583286.470101378 5419908.611983731, 3583296.736358732 5419906.029086003, 3583340.895079362 5419859.427347073);[378, 377] +370,0;['DEBW_001000eaUPY', 'DEBW_001000eaUPZ'];Counter({'non-heated': 2});Counter({'1972-1990': 2});2,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;53,5;26,87;LINESTRING (3583550.487564867 5419648.045779052, 3583566.181775909 5419639.972070417, 3583573.840065908 5419634.836786724);[269, 371, 307, 530] +371,0;['DEBW_001000eaUPW', 'DEBW_001000eaUPX', 'DEBW_001000eaUPS', 'DEBW_001000eaUPT', 'DEBW_001000eaUPU', 'DEBW_001000eaUQ0'];Counter({'residential': 4, 'office and administration': 1, 'non-heated': 1});Counter({'1972-1990': 3, 'Before 1948': 1, '1949-1971': 1, '1991-2010': 1});6,0;138339,0;24799,0;18724,0;13254,0;3373,0;168,0;1,0;0,0;0,0;499,0;6000,0;16338,0;23438,0;96,5;79,443;LINESTRING (3583646.893136142 5419657.054732708, 3583629.149218142 5419643.88590475, 3583611.331003384 5419636.155170551, 3583603.866524324 5419634.230202267, 3583594.123444148 5419633.172048202, 3583583.446891348 5419633.24558844, 3583573.840065908 5419634.836786724);[370, 307] +376,0;['DEBW_001000eaUPM', 'DEBW_001000eaUPG', 'DEBW_001000eaUPH', 'DEBW_001000eaUPI', 'DEBW_001000eaUPJ'];Counter({'industry': 3, 'residential': 2});Counter({'1949-1971': 3, '1991-2010': 2});5,0;191118,0;19969,0;12431,0;5336,0;453,0;8,0;0,0;0,0;0,0;38,0;1313,0;8740,0;18007,0;87,6;127,976;LINESTRING (3583556.654878465 5418663.809003883, 3583505.239855925 5418646.254480596, 3583431.78871468 5418640.89527013);[125, 374] +377,0;['DEBW_001000eaUTg', 'DEBW_001000eaUT0', 'DEBW_001000eaUT1', 'DEBW_001000eaUSZ', 'DEBW_001000eaUSV', 'DEBW_001000eaUSX', 'DEBW_001000eaUSY', 'DEBW_001000eaUSS', 'DEBW_001000eaUT4', 'DEBW_001000eaUT5', 'DEBW_001000eaUSU'];Counter({'residential': 7, 'non-heated': 4});Counter({'1991-2010': 5, '1972-1990': 5, 'Before 1948': 1});11,0;114991,0;20690,0;15687,0;11174,0;3012,0;169,0;1,0;0,0;0,0;476,0;5148,0;13679,0;19596,0;194,1;108,079;LINESTRING (3583352.951723621 5419969.057839458, 3583328.078186152 5419967.907441092, 3583319.290950478 5419964.250134271, 3583300.189081957 5419946.79082018, 3583276.709888982 5419921.001813321, 3583275.773080267 5419908.129644018);[369, 378] +378,0;['DEBW_001000eaUTH', 'DEBW_001000eaUTq', 'DEBW_001000eaUTr', 'DEBW_001000eaUTw', 'DEBW_001000eaUTx', 'DEBW_001000eaUTt', 'DEBW_001000eaUTu', 'DEBW_001000eaUTv', 'DEBW_001000eaUTB', 'DEBW_001000eaUT6'];Counter({'residential': 6, 'non-heated': 4});Counter({'1972-1990': 8, 'Before 1948': 2});10,0;140147,0;25231,0;18838,0;12637,0;2312,0;59,0;0,0;0,0;0,0;254,0;5389,0;16479,0;23939,0;198,2;105,09;LINESTRING (3583215.304166605 5419828.375998688, 3583229.298184585 5419837.372023103, 3583248.041835709 5419851.855889247, 3583259.26176383 5419863.480092997, 3583274.577713423 5419891.460673884, 3583275.773080267 5419908.129644018);[389, 369, 377, 315] +380,0;['DEBW_001000eaUTj'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;173902,0;12747,0;7583,0;2442,0;83,0;0,0;0,0;0,0;0,0;0,0;154,0;3919,0;10908,0;35,6;81,184;LINESTRING (3583213.90818384 5420004.921474666, 3583204.259223245 5420085.53038131);[105, 381, 382, 383] +383,0;['DEBW_001000eaUTF', 'DEBW_001000eaUTo', 'DEBW_001000eaUTp', 'DEBW_001000eaUTk', 'DEBW_001000eaUTl'];Counter({'non-heated': 3, 'industry': 2});Counter({'1972-1990': 2, 'Before 1948': 2, '1991-2010': 1});5,0;122094,0;8469,0;4365,0;903,0;13,0;0,0;0,0;0,0;0,0;0,0;37,0;1996,0;7137,0;130,2;144,765;LINESTRING (3583152.995976523 5419896.408957479, 3583157.625972006 5419897.63479765, 3583175.014424654 5419902.209874466, 3583181.006300725 5419908.961927907, 3583200.372452678 5419916.113753606, 3583196.343515838 5419948.799710678, 3583197.298285164 5419963.918974375, 3583205.841323032 5419984.43489318, 3583213.90818384 5420004.921474666);[104, 558, 380, 382] +385,0;['DEBW_001000eaUTn'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;17696,0;3262,0;2382,0;1558,0;300,0;10,0;0,0;0,0;0,0;39,0;663,0;2109,0;3093,0;19,1;78,854;LINESTRING (3583287.94645681 5419997.262040136, 3583285.038253457 5419987.775177517, 3583280.78968014 5419982.617386332, 3583270.433955762 5419977.946782884, 3583257.675482953 5419976.577217435, 3583247.048427652 5419976.818968573, 3583236.961164445 5419981.17318166, 3583225.35017694 5419992.812472733);[384, 386, 387] +389,0;['DEBW_001000eaUTL', 'DEBW_001000eaUTI', 'DEBW_001000eaUTJ'];Counter({'residential': 2, 'non-heated': 1});Counter({'1972-1990': 2, '1991-2010': 1});3,0;57825,0;10588,0;7955,0;5621,0;1478,0;91,0;1,0;0,0;0,0;245,0;2586,0;6982,0;10042,0;56,4;50,813;LINESTRING (3583165.281025271 5419819.921449417, 3583171.772906868 5419820.685658649, 3583195.111221576 5419823.547620428, 3583209.073638437 5419826.80366052, 3583215.304166605 5419828.375998688);[550, 558, 313, 378, 315] +392,0;['DEBW_001000eaUHC', 'DEBW_001000eaUHD', 'DEBW_001000eaUHE', 'DEBW_001000eaUHF', 'DEBW_001000eaUHA', 'DEBW_001000eaUHB', 'DEBW_001000eaUHI', 'DEBW_001000eaUHx', 'DEBW_001000eaUHy'];Counter({'residential': 5, 'non-heated': 4});Counter({'1972-1990': 6, 'Before 1948': 2, '1949-1971': 1});9,0;81049,0;14219,0;10691,0;7463,0;1732,0;62,0;0,0;0,0;0,0;227,0;3296,0;9298,0;13439,0;156,7;43,134;LINESTRING (3583221.130222192 5421997.015390785, 3583218.627871227 5421994.775658691, 3583215.957048461 5421994.001651145, 3583212.967869123 5421994.42417735, 3583210.904956485 5421995.639149277, 3583209.359644054 5421997.529232906, 3583208.570888666 5421999.797674488, 3583208.548654176 5422001.777240989, 3583209.269316977 5422004.06822302, 3583210.483211397 5422005.721435334, 3583212.441310908 5422007.107686094, 3583213.64399823 5422007.54832196, 3583216.287313524 5422007.710151339, 3583218.6658127 5422006.955938801, 3583220.549527789 5422005.47134079, 3583221.757621512 5422003.587346683, 3583222.305578484 5422001.248572196, 3583222.231917536 5421999.801478624, 3583221.130222192 5421997.015390785);[391] +393,0;['DEBW_001000eyVO9', 'DEBW_001000eyVO8', 'DEBW_001000eyVO7', 'DEBW_001000eyVO6', 'DEBW_001000eyVOj', 'DEBW_001000eyVOi', 'DEBW_001000eyVOh', 'DEBW_001000eyVOg', 'DEBW_001000eyVOf', 'DEBW_001000eyVOe', 'DEBW_001000eyVOm', 'DEBW_001000eyVOd', 'DEBW_001000eyVOb', 'DEBW_001000eyVOa', 'DEBW_001000eyVLX', 'DEBW_001000eyVM6', 'DEBW_001000eyVMg', 'DEBW_001000eyVMf', 'DEBW_001000eyVMe', 'DEBW_001000eyVMd', 'DEBW_001000eyVMc', 'DEBW_001000eyVMp', 'DEBW_001000eyVMl', 'DEBW_001000eyVMb', 'DEBW_001000eyVMa'];Counter({'residential': 10, 'office and administration': 10, 'non-heated': 3, 'education': 1, 'industry': 1});Counter({'1972-1990': 11, '1949-1971': 6, '1991-2010': 5, 'After 2011': 2, 'Before 1948': 1});25,0;624801,0;112157,0;84902,0;60984,0;18425,0;1946,0;72,0;4,0;8,0;3941,0;28619,0;73605,0;105849,0;683,3;210,262;LINESTRING (3585744.990763642 5420957.527062913, 3585752.913637386 5420959.517643671, 3585789.409882532 5420968.688595536, 3585828.321997326 5420981.389660273, 3585865.235849846 5420995.317132293, 3585887.495790938 5421005.93790463, 3585936.996936411 5421038.791238721);[483, 394, 395, 249] +394,0;['DEBW_001000eyVNz', 'DEBW_001000eyVNw'];Counter({'non-heated': 1, 'residential': 1});Counter({'1972-1990': 2});2,0;17336,0;3081,0;2294,0;1561,0;328,0;12,0;0,0;0,0;0,0;41,0;666,0;2004,0;2915,0;37,0;54,101;LINESTRING (3585914.717033864 5421086.065967952, 3585923.278593594 5421078.945657084, 3585933.86581145 5421058.353081688, 3585935.147522631 5421050.341926465, 3585936.996936411 5421038.791238721);[393, 395, 469, 215] +395,0;['DEBW_001000eyVNr', 'DEBW_001000eyVO5', 'DEBW_001000eyVNx', 'DEBW_001000eyVNv', 'DEBW_001000eyVNu', 'DEBW_001000eyVO4', 'DEBW_001000eyVO3', 'DEBW_001000eyVO2', 'DEBW_001000eyVO1'];Counter({'office and administration': 4, 'residential': 4, 'non-heated': 1});Counter({'1972-1990': 7, 'Before 1948': 2});9,0;334037,0;60660,0;46131,0;33126,0;9029,0;594,0;13,0;1,0;2,0;1573,0;15356,0;39926,0;57084,0;262,1;96,797;LINESTRING (3586009.849353183 5420976.802235571, 3585976.169950654 5420997.939385633, 3585950.87318365 5421019.306107648, 3585936.996936411 5421038.791238721);[393, 394, 468, 116] +396,0;['DEBW_001000eaUYl'];Counter({'non-heated': 1});Counter({'1949-1971': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;21,8;156,512;LINESTRING (3582921.081739073 5418467.73711013, 3582907.614270356 5418446.236499551, 3582872.891560477 5418400.216599702, 3582841.47512049 5418358.684083628, 3582832.043515296 5418339.457072257);[128, 482, 397, 84] +397,0;['DEBW_001000eaUYk'];Counter({'residential': 1});Counter({'Before 1948': 1});1,0;23110,0;4314,0;3179,0;2031,0;253,0;2,0;0,0;0,0;0,0;17,0;789,0;2801,0;4090,0;13,0;82,078;LINESTRING (3582837.655714928 5418415.376597262, 3582827.701217451 5418396.798077984, 3582822.870353861 5418377.895219915, 3582821.561783257 5418359.83438828, 3582826.513943121 5418345.381356653, 3582832.043515296 5418339.457072257);[128, 396] +398,0;['DEBW_001000eaUUx', 'DEBW_001000eaUUy'];Counter({'office and administration': 1, 'non-heated': 1});Counter({'1972-1990': 2});2,0;10667,0;2000,0;1534,0;1103,0;329,0;30,0;1,0;0,0;0,0;73,0;535,0;1324,0;1890,0;93,6;951,074;LINESTRING (3583020.9937503 5419574.07804221, 3583006.053089465 5419571.964721594, 3582973.939862481 5419571.876104781, 3582956.483570289 5419575.231356177, 3582936.428379011 5419583.742433931, 3582879.221074372 5419607.095465219, 3582819.887537398 5419628.504343036, 3582787.005423269 5419636.76984133, 3582741.965349613 5419646.134255905, 3582536.033389448 5419685.683293112, 3582470.790830279 5419695.318158617, 3582444.285195798 5419696.861601777, 3582420.052796826 5419695.902739229, 3582391.101454982 5419693.761961613, 3582329.281674217 5419687.120576479, 3582269.498769767 5419680.565546384, 3582251.79430765 5419678.435717735, 3582175.903680353 5419668.852269948, 3582130.884590857 5419659.969175511, 3582091.829896085 5419645.857492557);[256, 337, 31] +399,0;['DEBW_001000eaUFy'];Counter({'restaurant': 1});Counter({'1991-2010': 1});1,0;657729,0;50693,0;40634,0;32272,0;14086,0;1692,0;0,0;0,0;0,0;2542,0;14851,0;32788,0;47076,0;19,4;29,703;LINESTRING (3583633.374849145 5421874.460663403, 3583608.869036905 5421857.675300857);[512, 290, 400, 119] +400,0;['DEBW_001000eaUEV'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;48313,0;4643,0;2649,0;832,0;29,0;0,0;0,0;0,0;0,0;0,0;78,0;1656,0;4125,0;13,8;61,997;LINESTRING (3583640.595550229 5421804.538349076, 3583635.935799646 5421812.243417267, 3583619.859441443 5421835.916695092, 3583608.869036905 5421857.675300857);[399, 464, 119, 479] +401,0;['DEBW_001000eaUFG', 'DEBW_001000eaUFH'];Counter({'non-heated': 1, 'residential': 1});Counter({'1972-1990': 1, '1991-2010': 1});2,0;18305,0;3467,0;2602,0;1823,0;466,0;28,0;0,0;0,0;0,0;76,0;831,0;2284,0;3290,0;16,3;47,51;LINESTRING (3583558.898877559 5421979.86874372, 3583557.816900646 5421988.973414275, 3583560.059076733 5421995.358295973, 3583562.010646899 5422002.061388942, 3583569.326152944 5422006.865026372, 3583583.776694016 5422013.355171257);[419, 420] +405,0;['DEBW_001000eyVRi', 'DEBW_001000eyVRg', 'DEBW_001000eyVRd', 'DEBW_001000eyVRb', 'DEBW_001000eyVRa', 'DEBW_001000eyVR9', 'DEBW_001000eyVR8'];Counter({'residential': 4, 'non-heated': 3});Counter({'1949-1971': 4, '1972-1990': 2, '1991-2010': 1});7,0;54442,0;9755,0;7236,0;4920,0;1005,0;33,0;0,0;0,0;0,0;129,0;2136,0;6340,0;9223,0;126,9;71,831;LINESTRING (3586313.423684429 5419650.074972167, 3586312.517397077 5419644.677338673, 3586377.320406075 5419630.397621213);[232, 239] +406,0;['DEBW_001000eaUDO', 'DEBW_001000eaUDP', 'DEBW_001000eaUDL', 'DEBW_001000eaUDM'];Counter({'non-heated': 2, 'residential': 2});Counter({'1972-1990': 3, '1949-1971': 1});4,0;37019,0;6645,0;4927,0;3284,0;627,0;21,0;0,0;0,0;0,0;77,0;1382,0;4323,0;6270,0;38,6;68,649;LINESTRING (3583704.435198388 5421745.343493672, 3583712.7892319 5421747.871563858, 3583732.033947203 5421759.706424917, 3583743.412523021 5421772.635548622, 3583755.083789432 5421789.006119029);[480, 407, 344, 94] +407,0;['DEBW_001000eaUFd', 'DEBW_001000eaUFk', 'DEBW_001000eaUFl', 'DEBW_001000eaUFf', 'DEBW_001000eaUFh'];Counter({'non-heated': 4, 'residential': 1});Counter({'1949-1971': 2, 'Before 1948': 2, '1972-1990': 1});5,0;27959,0;4964,0;3755,0;2665,0;657,0;29,0;0,0;0,0;0,0;97,0;1220,0;3277,0;4681,0;60,3;130,093;LINESTRING (3583656.718830726 5421851.463803259, 3583668.92550969 5421840.968949318, 3583684.054657512 5421828.649337156, 3583689.56346085 5421828.342762801, 3583698.964561965 5421830.441619486, 3583708.353794696 5421833.330050404, 3583719.012613689 5421830.742785193, 3583723.731526413 5421830.813684111, 3583731.675013301 5421825.048946013, 3583738.510791047 5421814.962952335, 3583747.075282512 5421794.703109931, 3583755.083789432 5421789.006119029);[512, 406, 344, 443] +408,0;['DEBW_001000eyVQM', 'DEBW_001000eyVQL', 'DEBW_001000eyVQJ', 'DEBW_001000eyVQI', 'DEBW_001000eyVQO', 'DEBW_001000eyVQY'];Counter({'non-heated': 3, 'office and administration': 1, 'residential': 1, 'event location': 1});Counter({'Before 1948': 2, '1949-1971': 2, '1972-1990': 1, 'After 2011': 1});6,0;78863,0;14940,0;11485,0;8457,0;2568,0;177,0;3,0;0,0;0,0;479,0;4079,0;9989,0;14102,0;170,3;36,051;LINESTRING (3586502.538257875 5419816.694069969, 3586468.649837173 5419828.993417695);[80, 75] +419,0;['DEBW_001000eaUFE'];Counter({'hall': 1});Counter({'1972-1990': 1});1,0;10483,0;2030,0;1626,0;1356,0;644,0;132,0;6,0;0,0;2,0;316,0;908,0;1515,0;1949,0;31,8;29,35;LINESTRING (3583582.964311207 5421996.669540252, 3583558.898877559 5421979.86874372);[401, 420] +420,0;['DEBW_001000eaUFD'];Counter({'event location': 1});Counter({'1949-1971': 1});1,0;3653,0;853,0;632,0;436,0;96,0;5,0;0,0;0,0;0,0;18,0;218,0;583,0;812,0;7,5;87,205;LINESTRING (3583568.492857032 5421893.352992785, 3583566.916137238 5421900.259001979, 3583562.74400404 5421922.865194633, 3583562.213234082 5421931.866899671, 3583558.898877559 5421979.86874372);[419, 560, 401, 561] +423,0;['DEBW_001000eaUNs'];Counter({'restaurant': 1});Counter({'1991-2010': 1});1,0;198152,0;16228,0;12878,0;9995,0;4031,0;333,0;0,0;0,0;0,0;574,0;4414,0;10356,0;15078,0;11,4;163,219;LINESTRING (3582491.410848723 5421193.196203348, 3582489.076439491 5421186.498992505, 3582489.565003421 5421180.232866552, 3582493.19010188 5421174.013162849, 3582538.637282516 5421132.34083484, 3582541.11890638 5421124.146583798, 3582539.734838072 5421111.190067921, 3582530.95272983 5421093.418986065, 3582528.326580316 5421085.137977698, 3582528.150842886 5421070.275083608, 3582528.490567022 5421054.263032923);[424, 421, 422] +424,0;['DEBW_001000eaUJ1', 'DEBW_001000eaUKf', 'DEBW_001000eaUKh', 'DEBW_001000eaUK2', 'DEBW_001000eaUNk'];Counter({'residential': 3, 'non-heated': 1, 'office and administration': 1});Counter({'1949-1971': 3, '1972-1990': 2});5,0;69992,0;12922,0;9644,0;6659,0;1706,0;127,0;4,0;0,0;1,0;308,0;2958,0;8395,0;12179,0;85,4;862,366;LINESTRING (3583266.16917734 5421569.640892873, 3583248.415152363 5421564.870827804, 3583193.963122508 5421543.357744289, 3583109.882267138 5421507.265919972, 3582911.594802317 5421416.707630026, 3582859.065307319 5421388.463717536, 3582732.84237887 5421322.6869639, 3582698.66935455 5421304.027074413, 3582660.186742481 5421283.846371956, 3582604.888814144 5421254.295850386, 3582501.28377393 5421198.18083012, 3582491.410848723 5421193.196203348);[481, 422, 423, 486, 427] +427,0;['DEBW_001000eaUJ2', 'DEBW_001000eaUJ3', 'DEBW_001000eaUJ4', 'DEBW_001000eaUKu', 'DEBW_001000eaUKn', 'DEBW_001000eaUKq', 'DEBW_001000eaUKj'];Counter({'non-heated': 4, 'residential': 3});Counter({'1949-1971': 2, '1991-2010': 2, '1972-1990': 2, 'After 2011': 1});7,0;39773,0;7436,0;5448,0;3635,0;787,0;34,0;0,0;0,0;0,0;119,0;1606,0;4828,0;7057,0;88,0;57,946;LINESTRING (3583266.16917734 5421569.640892873, 3583269.457067532 5421570.335154813, 3583285.655685594 5421573.736156591, 3583295.12168425 5421571.530675758, 3583322.538115758 5421578.603217806);[424, 481, 486] +432,0;['DEBW_001000eyVQ3', 'DEBW_001000eyVQ2'];Counter({'office and administration': 2});Counter({'1991-2010': 1, '1949-1971': 1});2,0;65338,0;12108,0;9262,0;6829,0;2305,0;262,0;9,0;0,0;1,0;515,0;3277,0;8010,0;11406,0;228,6;15,795;LINESTRING (3586282.369265185 5420799.884680042, 3586270.045402221 5420790.005641835);[433, 490, 431] +433,0;['DEBW_001000eyVQ6', 'DEBW_001000eyVQ5', 'DEBW_001000eyVQ4', 'DEBW_001000eyVQ7'];Counter({'office and administration': 2, 'residential': 1, 'non-heated': 1});Counter({'1972-1990': 3, '1949-1971': 1});4,0;159323,0;29185,0;22258,0;16129,0;4889,0;432,0;14,0;1,0;2,0;1031,0;7800,0;19264,0;27569,0;225,5;735,714;LINESTRING (3586412.832707314 5420093.359837832, 3586407.626643345 5420103.334487197, 3586386.935493511 5420133.235468755, 3586366.319408659 5420163.037576824, 3586337.322501469 5420208.538217357, 3586321.463887917 5420235.099458534, 3586309.741925704 5420255.874001703, 3586303.161523558 5420269.876294893, 3586298.076902983 5420283.868380451, 3586294.917749758 5420301.349578436, 3586288.720216589 5420354.088660728, 3586286.251790889 5420379.522492882, 3586286.091794252 5420401.699601286, 3586288.135438689 5420435.912712914, 3586291.78591992 5420470.984938681, 3586292.835193044 5420488.920598577, 3586291.481971233 5420521.401536755, 3586290.164254732 5420540.223779531, 3586285.386943882 5420563.742061488, 3586275.230009938 5420588.600846472, 3586267.877295149 5420608.008203369, 3586265.19997524 5420623.739416737, 3586263.528851065 5420640.298193939, 3586265.250844053 5420659.768136599, 3586267.924007578 5420675.092737504, 3586272.717627458 5420704.031546346, 3586275.52266615 5420719.358194308, 3586276.059073173 5420734.905562018, 3586273.683682744 5420767.125981901, 3586270.357726799 5420784.982803815, 3586270.045402221 5420790.005641835);[485, 78, 431, 432] +440,0;['DEBW_001000eyVSk', 'DEBW_001000eyVSj'];Counter({'residential': 1, 'office and administration': 1});Counter({'1949-1971': 1, '1972-1990': 1});2,0;270918,0;47763,0;37411,0;28502,0;10367,0;1210,0;44,0;3,0;7,0;2491,0;14257,0;31919,0;44998,0;496,5;552,632;LINESTRING (3584636.202900881 5422193.452051084, 3584671.969098715 5422174.997205604, 3584740.239097923 5422141.097422945, 3584753.603580093 5422133.603506032, 3584882.591810485 5422064.267900663, 3584960.933709806 5422021.770307523, 3585038.448492158 5421979.283410056, 3585112.683898967 5421941.40805927, 3585124.795945278 5421935.364131183);[439, 548, 534, 438] +441,0;['DEBW_001000eyVQt', 'DEBW_001000eyVQs', 'DEBW_001000eyVQr', 'DEBW_001000eyVQq', 'DEBW_001000eyVQp', 'DEBW_001000eyVQo'];Counter({'non-heated': 3, 'residential': 2, 'industry': 1});Counter({'1949-1971': 3, '1972-1990': 2, 'Before 1948': 1});6,0;135754,0;14261,0;9723,0;5208,0;769,0;21,0;0,0;0,0;0,0;89,0;1633,0;6895,0;12766,0;140,4;92,681;LINESTRING (3586616.217125863 5419891.938562199, 3586607.246235993 5419855.381944502, 3586610.224753656 5419828.365539394, 3586635.383323025 5419816.39856277);[89, 79] +443,0;['DEBW_001000eaUFm', 'DEBW_001000eaUFi', 'DEBW_001000eaUFj'];Counter({'industry': 2, 'residential': 1});Counter({'1972-1990': 1, 'Before 1948': 1, '1949-1971': 1});3,0;86333,0;10401,0;7107,0;3789,0;417,0;3,0;0,0;0,0;0,0;19,0;966,0;5116,0;9390,0;63,8;83,71;LINESTRING (3583656.718830726 5421851.463803259, 3583690.560465308 5421866.387438009, 3583723.018856857 5421878.242784381, 3583730.066275411 5421879.917026047, 3583734.424894385 5421877.624434489);[512, 407] +448,0;['DEBW_001000eaUNo'];Counter({'non-heated': 1});Counter({'1949-1971': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;25,4;649,134;LINESTRING (3583021.545201198 5421934.340872562, 3583032.275626374 5421966.746379215, 3583052.175529334 5422009.39939808, 3583073.276840612 5422042.727074655, 3583100.30682541 5422097.188013305, 3583113.812447441 5422127.243646855, 3583125.324578596 5422165.645214444, 3583135.167063466 5422176.937333535, 3583144.467590366 5422187.220311588, 3583173.485032868 5422211.545662534, 3583215.796449956 5422248.127073938, 3583282.925711458 5422326.112617107, 3583306.075131348 5422362.953387368, 3583350.32418896 5422448.183666578, 3583377.503113758 5422436.555217343);[362, 363] +453,0;['DEBW_001000eaUHd', 'DEBW_001000eaUHe', 'DEBW_001000eaUHf', 'DEBW_001000eaUHq', 'DEBW_001000eaUHm', 'DEBW_001000eaUHn', 'DEBW_001000eaUHg', 'DEBW_001000eaUHw'];Counter({'residential': 6, 'non-heated': 2});Counter({'1972-1990': 3, '1949-1971': 2, 'Before 1948': 1, '1991-2010': 1, 'After 2011': 1});8,0;93969,0;17166,0;12797,0;8772,0;1936,0;76,0;0,0;0,0;0,0;281,0;3921,0;11216,0;16257,0;136,9;111,916;LINESTRING (3583234.392639128 5421875.049295035, 3583233.435020552 5421977.911853071, 3583236.061334794 5421986.571429813);[455, 40, 391, 456, 339] +455,0;['DEBW_001000eaUGr', 'DEBW_001000eaUGs', 'DEBW_001000eaUGt', 'DEBW_001000eaUI6', 'DEBW_001000eaUI7', 'DEBW_001000eaUGn', 'DEBW_001000eaUGo', 'DEBW_001000eaUGj', 'DEBW_001000eaUGk', 'DEBW_001000eaUGl', 'DEBW_001000eaUGm', 'DEBW_001000eaUGh', 'DEBW_001000eaUGi'];Counter({'residential': 7, 'non-heated': 6});Counter({'1972-1990': 5, '1949-1971': 5, '1991-2010': 2, 'Before 1948': 1});13,0;115897,0;21133,0;15659,0;10655,0;2305,0;89,0;0,0;0,0;0,0;317,0;4650,0;13750,0;19991,0;263,2;108,064;LINESTRING (3583341.86769103 5421868.090972528, 3583330.381477795 5421871.13374706, 3583272.525098659 5421874.606821246, 3583254.224043905 5421876.101921152, 3583234.392639128 5421875.049295035);[453, 456, 459, 339, 187] +456,0;['DEBW_001000eaUGd'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;13582,0;2482,0;1810,0;1197,0;228,0;7,0;0,0;0,0;0,0;28,0;494,0;1597,0;2345,0;19,8;60,911;LINESTRING (3583236.774985816 5421814.186324091, 3583235.205545363 5421849.578588843, 3583234.392639128 5421875.049295035);[453, 455, 552, 106, 339] +459,0;['DEBW_001000eaUGu', 'DEBW_001000eaUGv', 'DEBW_001000eaUG3', 'DEBW_001000eaUG4'];Counter({'residential': 2, 'non-heated': 2});Counter({'1972-1990': 2, '1949-1971': 1, '1991-2010': 1});4,0;27493,0;4837,0;3619,0;2502,0;555,0;19,0;0,0;0,0;0,0;71,0;1087,0;3152,0;4573,0;56,3;44,848;LINESTRING (3583386.472661688 5421864.164470384, 3583380.549592147 5421865.221510473, 3583367.065272636 5421867.099762782, 3583341.86769103 5421868.090972528);[33, 455, 153, 187] +461,0;['DEBW_001000eaUN2'];Counter({'non-heated': 1});Counter({'1972-1990': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;11,5;35,719;LINESTRING (3583294.530772331 5421455.130550615, 3583300.632718378 5421451.451049577, 3583306.754522378 5421436.637708378, 3583310.474169784 5421424.635957027);[462, 463, 466, 467] +462,0;['DEBW_001000eaUN3'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;18142,0;3452,0;2568,0;1780,0;435,0;23,0;0,0;0,0;0,0;70,0;804,0;2264,0;3278,0;18,0;23,168;LINESTRING (3583314.329280123 5421407.986810569, 3583316.973095119 5421410.095216186, 3583318.531537917 5421412.732424619, 3583319.089042185 5421415.643867761, 3583318.618624949 5421418.673419588, 3583317.666029339 5421420.616829879, 3583315.57276737 5421422.865755299, 3583313.842545345 5421423.874330351, 3583310.474169784 5421424.635957027);[517, 461, 463] +463,0;['DEBW_001000eaUN6'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;15547,0;2678,0;2042,0;1486,0;411,0;20,0;0,0;0,0;0,0;58,0;673,0;1769,0;2527,0;14,0;32,034;LINESTRING (3583314.329280123 5421407.986810569, 3583312.112856797 5421407.197311656, 3583309.043565353 5421407.073568826, 3583305.624396313 5421408.290483196, 3583302.77536201 5421411.084267312, 3583301.424618181 5421415.146225796, 3583301.723488593 5421418.198400436, 3583302.916531621 5421420.763404632, 3583305.060542024 5421422.964441146, 3583307.431859368 5421424.178927554, 3583310.474169784 5421424.635957027);[517, 461, 462] +464,0;['DEBW_001000eaUEU'];Counter({'non-heated': 1});Counter({'1991-2010': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;10,1;23,117;LINESTRING (3583640.595550229 5421804.538349076, 3583649.203334823 5421811.152292076, 3583659.039098015 5421818.474313541);[400, 479] +466,0;['DEBW_001000eaUMX', 'DEBW_001000eaUMY', 'DEBW_001000eaUMZ', 'DEBW_001000eaUMU', 'DEBW_001000eaUN0'];Counter({'non-heated': 3, 'residential': 2});Counter({'1972-1990': 3, 'Before 1948': 1, '1991-2010': 1});5,0;33404,0;6341,0;4677,0;3164,0;719,0;37,0;0,0;0,0;0,0;110,0;1393,0;4131,0;6018,0;68,3;12,497;LINESTRING (3583306.420538695 5421458.978864273, 3583294.530772331 5421455.130550615);[467, 461] +467,0;['DEBW_001000eaUN9', 'DEBW_001000eaUMV', 'DEBW_001000eaUN7', 'DEBW_001000eaUN8', 'DEBW_001000eaUMS', 'DEBW_001000eaUNe', 'DEBW_001000eaUNf', 'DEBW_001000eaUNg', 'DEBW_001000eaUNa', 'DEBW_001000eaUNb', 'DEBW_001000eaUNc', 'DEBW_001000eaUNd'];Counter({'residential': 6, 'non-heated': 6});Counter({'Before 1948': 4, '1991-2010': 3, '1972-1990': 2, '1949-1971': 2, 'After 2011': 1});12,0;115269,0;21250,0;15928,0;11202,0;2816,0;147,0;1,0;0,0;0,0;434,0;4993,0;13969,0;20130,0;162,7;111,742;LINESTRING (3583211.633832814 5421498.74019336, 3583218.515690709 5421473.749427131, 3583224.182914582 5421462.855637942, 3583228.73112493 5421459.653393022, 3583233.719498538 5421455.93494375, 3583243.588712065 5421453.735393089, 3583285.21479438 5421457.093572762, 3583291.106497727 5421457.181623315, 3583294.530772331 5421455.130550615);[461, 525, 466, 27] +468,0;['DEBW_001000eyVNk', 'DEBW_001000eyVNj', 'DEBW_001000eyVNf', 'DEBW_001000eyVNe', 'DEBW_001000eyVNd', 'DEBW_001000eyVNs', 'DEBW_001000eyVNp', 'DEBW_001000eyVNo', 'DEBW_001000eyVNn', 'DEBW_001000eyVNm', 'DEBW_001000eyVNl', 'DEBW_001000eyVNc', 'DEBW_001000eyVNa', 'DEBW_001000eyVNy', 'DEBW_001000eyVNt', 'DEBW_001000eyVNG', 'DEBW_001000eyVNE', 'DEBW_001000eyVND', 'DEBW_001000eyVNC', 'DEBW_001000eyVNB', 'DEBW_001000eyVNA'];Counter({'residential': 8, 'office and administration': 7, 'non-heated': 4, 'hall': 1, 'event location': 1});Counter({'1972-1990': 7, 'Before 1948': 5, '1949-1971': 4, '1991-2010': 4, 'After 2011': 1});21,0;583162,0;110127,0;83951,0;61427,0;18435,0;1510,0;44,0;2,0;8,0;3928,0;30037,0;73701,0;104011,0;470,0;210,061;LINESTRING (3586009.849353183 5420976.802235571, 3586025.766947193 5421012.208200407, 3586034.976165113 5421033.428738633, 3586045.552831417 5421054.859499905, 3586045.950989745 5421074.175454265, 3586041.777958871 5421089.505483916, 3586005.600943847 5421102.472856654, 3586001.79644547 5421111.980064908, 3585992.946922345 5421113.05593846, 3585970.474284567 5421117.214120934, 3585961.915780411 5421117.482542024);[395, 116, 469, 56] +469,0;['DEBW_001000eyVNF'];Counter({'office and administration': 1});Counter({'Before 1948': 1});1,0;23466,0;4417,0;3369,0;2411,0;625,0;28,0;0,0;0,0;0,0;91,0;1095,0;2901,0;4155,0;26,4;58,208;LINESTRING (3585914.717033864 5421086.065967952, 3585923.630345832 5421088.461377062, 3585932.021135467 5421092.417109008, 3585940.57360031 5421098.722332818, 3585947.349247098 5421105.689804954, 3585951.789288478 5421111.052900341, 3585955.463354687 5421115.225131399, 3585961.915780411 5421117.482542024);[394, 468, 215, 56] +470,0;['DEBW_001000eaUUp'];Counter({'industry': 1});Counter({'1949-1971': 1});1,0;109207,0;8337,0;5065,0;1792,0;70,0;0,0;0,0;0,0;0,0;0,0;118,0;2680,0;7030,0;36,6;323,081;LINESTRING (3583210.941235028 5418855.484172635, 3583223.488301452 5418875.125444891, 3583240.787592351 5418907.996143765, 3583273.015334693 5418956.661930378, 3583285.237119184 5418981.359453478, 3583305.343534537 5419010.345884684, 3583313.521187348 5419018.587807486, 3583333.532386753 5419027.918624737, 3583365.338019302 5419046.346426716, 3583388.291955943 5419054.531273521, 3583419.930176061 5419067.462139699, 3583431.051627827 5419073.012019938);[320, 306, 373, 182] +479,0;['DEBW_001000eaUER'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;34937,0;2886,0;1616,0;468,0;14,0;0,0;0,0;0,0;0,0;0,0;36,0;941,0;2526,0;13,2;22,045;LINESTRING (3583640.595550229 5421804.538349076, 3583651.779254806 5421785.541218635);[480, 299, 464, 400] +480,0;['DEBW_001000eaUEY', 'DEBW_001000eaUEZ', 'DEBW_001000eaUEW', 'DEBW_001000eaUFb', 'DEBW_001000eaUFc', 'DEBW_001000eaUFe', 'DEBW_001000eaUFg'];Counter({'office and administration': 3, 'residential': 2, 'event location': 1, 'non-heated': 1});Counter({'1972-1990': 5, '1949-1971': 2});7,0;206805,0;39405,0;30442,0;23029,0;7935,0;794,0;27,0;1,0;5,0;1928,0;11741,0;26747,0;37269,0;107,6;83,037;LINESTRING (3583704.435198388 5421745.343493672, 3583701.280555239 5421754.817436908, 3583696.972706911 5421766.899099933, 3583693.548979445 5421772.331339611, 3583691.790818457 5421784.473547127, 3583672.840011789 5421789.672621121, 3583659.092029958 5421789.076898613, 3583651.779254806 5421785.541218635);[299, 406, 94, 479] +481,0;['DEBW_001000eaUJ0'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;28951,0;5030,0;3776,0;2620,0;587,0;20,0;0,0;0,0;0,0;72,0;1151,0;3287,0;4751,0;16,2;35,161;LINESTRING (3583266.16917734 5421569.640892873, 3583269.284168104 5421559.343026868, 3583271.514648123 5421543.492681579, 3583275.451476303 5421536.076838234);[486, 424, 427, 28, 287] +482,0;['DEBW_001000eaUYf', 'DEBW_001000eaUYg', 'DEBW_001000eaUYh', 'DEBW_001000eaUYi'];Counter({'non-heated': 3, 'residential': 1});Counter({'1972-1990': 3, '1991-2010': 1});4,0;34762,0;6076,0;4542,0;3121,0;644,0;20,0;0,0;0,0;0,0;79,0;1353,0;3966,0;5715,0;97,0;56,332;LINESTRING (3582901.204557788 5418506.939247272, 3582892.042453998 5418488.361253704, 3582919.191766902 5418469.077138532, 3582921.081739073 5418467.73711013);[396, 84] +483,0;['DEBW_001000eyVOJ', 'DEBW_001000eyVOI', 'DEBW_001000eyVOF', 'DEBW_001000eyVOR', 'DEBW_001000eyVOQ', 'DEBW_001000eyVOP', 'DEBW_001000eyVOO', 'DEBW_001000eyVOl', 'DEBW_001000eyVOk', 'DEBW_001000eyVOq', 'DEBW_001000eyVOp', 'DEBW_001000eyVOn'];Counter({'residential': 7, 'office and administration': 4, 'non-heated': 1});Counter({'After 2011': 3, 'Before 1948': 3, '1949-1971': 3, '1972-1990': 2, '1991-2010': 1});12,0;332130,0;61042,0;45651,0;31821,0;7885,0;489,0;12,0;0,0;1,0;1306,0;14275,0;39877,0;57717,0;256,9;158,519;LINESTRING (3585765.167580423 5420803.426046938, 3585768.43956631 5420849.470582871, 3585769.935720441 5420876.100161167, 3585768.220141164 5420894.693901712, 3585761.839899166 5420913.449451847, 3585749.932171735 5420946.046139773, 3585744.990763642 5420957.527062913);[230, 393, 300, 249] +485,0;['DEBW_001000eyVQ9'];Counter({'sport location': 1});Counter({'Before 1948': 1});1,0;194598,0;21522,0;16756,0;12332,0;4231,0;331,0;1,0;0,0;0,0;590,0;4975,0;13276,0;19918,0;12,9;156,588;LINESTRING (3586412.832707314 5420093.359837832, 3586481.892408918 5420127.166157644, 3586502.210596538 5420135.512305306, 3586559.308016108 5420144.051265324);[433, 78] +486,0;['DEBW_001000eaUJ5', 'DEBW_001000eaUJ6', 'DEBW_001000eaUJ7', 'DEBW_001000eaUJ8', 'DEBW_001000eaUJH', 'DEBW_001000eaUJ9', 'DEBW_001000eaUJI', 'DEBW_001000eaUJJ', 'DEBW_001000eaUJK', 'DEBW_001000eaUJL', 'DEBW_001000eaUJa'];Counter({'residential': 5, 'non-heated': 5, 'industry': 1});Counter({'1972-1990': 4, '1991-2010': 3, '1949-1971': 2, 'Before 1948': 2});11,0;98501,0;17838,0;13352,0;9194,0;2079,0;84,0;0,0;0,0;0,0;292,0;4091,0;11672,0;16901,0;202,1;89,974;LINESTRING (3583200.78917476 5421612.91177051, 3583217.58951752 5421614.786583869, 3583233.699206401 5421612.357647049, 3583247.842926978 5421606.117560905, 3583255.923758167 5421595.070767942, 3583263.632946103 5421580.447943646, 3583266.16917734 5421569.640892873);[481, 424, 331, 332, 427] +489,0;['DEBW_001000eaUFQ', 'DEBW_001000eaUFR', 'DEBW_001000eaUFS', 'DEBW_001000eaUFO', 'DEBW_001000eaUFP'];Counter({'residential': 2, 'non-heated': 2, 'industry': 1});Counter({'1949-1971': 3, '1972-1990': 2});5,0;150538,0;17647,0;11677,0;6282,0;1215,0;59,0;0,0;0,0;0,0;180,0;2219,0;8804,0;16046,0;87,1;44,978;LINESTRING (3583532.190611096 5421954.552678128, 3583536.534415292 5421953.238540738, 3583543.711423652 5421933.558249833, 3583547.801964345 5421923.230659575, 3583552.5594089 5421916.327845838);[488, 487] +491,0;['DEBW_001000eaUMk', 'DEBW_001000eaUMp'];Counter({'residential': 1, 'industry': 1});Counter({'1972-1990': 2});2,0;43778,0;6723,0;4736,0;2991,0;627,0;20,0;0,0;0,0;0,0;82,0;1212,0;3954,0;6275,0;37,7;25,553;LINESTRING (3583494.744931306 5421646.050178573, 3583469.51968579 5421641.968320118);[492, 221] +492,0;['DEBW_001000eaUMn'];Counter({'industry': 1});Counter({'1949-1971': 1});1,0;89917,0;6674,0;3792,0;1120,0;33,0;0,0;0,0;0,0;0,0;0,0;73,0;2027,0;5767,0;24,7;44,251;LINESTRING (3583451.938731699 5421678.032838081, 3583460.998118744 5421670.671588383, 3583471.302095769 5421658.512721743, 3583469.51968579 5421641.968320118);[546, 491, 18, 221] +493,0;['DEBW_001000eaUWs', 'DEBW_001000eaUWt', 'DEBW_001000eaUWu', 'DEBW_001000eaUWv'];Counter({'residential': 3, 'non-heated': 1});Counter({'1972-1990': 2, '1991-2010': 1, '1949-1971': 1});4,0;53831,0;9529,0;7123,0;4900,0;1030,0;32,0;0,0;0,0;0,0;133,0;2139,0;6209,0;9003,0;62,4;30,397;LINESTRING (3583144.541182022 5419276.454914478, 3583118.382746331 5419291.93746779);[495, 494, 135] +494,0;['DEBW_001000eaUWx', 'DEBW_001000eaUWy', 'DEBW_001000eaUWX'];Counter({'residential': 2, 'non-heated': 1});Counter({'1972-1990': 1, 'Before 1948': 1, 'After 2011': 1});3,0;36738,0;6699,0;5021,0;3524,0;855,0;39,0;0,0;0,0;0,0;133,0;1576,0;4403,0;6349,0;47,4;60,814;LINESTRING (3583146.003355108 5419346.084280722, 3583131.45003245 5419315.490481026, 3583118.382746331 5419291.93746779);[135, 493, 495, 504, 510, 511] +495,0;['DEBW_001000eaUWn', 'DEBW_001000eaUWp', 'DEBW_001000eaUWj', 'DEBW_001000eaUWk', 'DEBW_001000eaUWm', 'DEBW_001000eaUWg', 'DEBW_001000eaUWz', 'DEBW_001000eaUWB', 'DEBW_001000eaUWC', 'DEBW_001000eaUWE', 'DEBW_001000eaUWA', 'DEBW_001000eaUWG', 'DEBW_001000eaUWH', 'DEBW_001000eaUWI', 'DEBW_001000eaUWd', 'DEBW_001000eaUWe'];Counter({'residential': 10, 'non-heated': 6});Counter({'1972-1990': 7, '1949-1971': 6, '1991-2010': 2, 'Before 1948': 1});16,0;187906,0;33115,0;24881,0;17211,0;3627,0;114,0;0,0;0,0;0,0;462,0;7561,0;21630,0;31310,0;262,8;163,363;LINESTRING (3582986.537109037 5419380.670650164, 3583020.313405874 5419372.553072057, 3583034.477955068 5419368.225784584, 3583042.72993294 5419363.588026871, 3583055.672786313 5419349.721338574, 3583082.439992756 5419323.369305638, 3583106.660940483 5419300.605539332, 3583118.382746331 5419291.93746779);[135, 493, 494, 501, 502] +496,0;['DEBW_001000eaUQ9'];Counter({'non-heated': 1});Counter({'1972-1990': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;26,3;80,469;LINESTRING (3583487.696368964 5419952.097976833, 3583431.072091841 5419894.923532207);[499, 500] +497,0;['DEBW_001000eaULK', 'DEBW_001000eaULM'];Counter({'residential': 2});Counter({'1991-2010': 1, '1949-1971': 1});2,0;25295,0;4387,0;3344,0;2388,0;622,0;27,0;0,0;0,0;0,0;90,0;1091,0;2896,0;4142,0;19,1;14,418;LINESTRING (3583310.54561179 5421704.692495539, 3583305.344961137 5421691.24487195);[42, 43] +500,0;['DEBW_001000eaUQl', 'DEBW_001000eaUQa'];Counter({'residential': 1, 'office and administration': 1});Counter({'1972-1990': 2});2,0;20826,0;3874,0;2903,0;2019,0;517,0;40,0;1,0;0,0;0,0;98,0;916,0;2531,0;3658,0;21,6;288,643;LINESTRING (3583480.966611203 5419974.576908526, 3583520.800346454 5419981.346725309, 3583528.977885993 5419982.136607746, 3583536.476413633 5419980.291299547, 3583543.807370843 5419975.440278776, 3583574.991360464 5419933.684680215, 3583576.606121192 5419917.424801777, 3583571.537817047 5419890.664741266, 3583556.995594808 5419873.284000564, 3583545.763367917 5419885.517840887, 3583520.43651886 5419914.113835689, 3583491.375146891 5419945.356907348, 3583487.696368964 5419952.097976833);[496, 505, 499] +501,0;['DEBW_001000eaUUJ', 'DEBW_001000eaUUK', 'DEBW_001000eaUWb'];Counter({'non-heated': 2, 'residential': 1});Counter({'1972-1990': 2, '1949-1971': 1});3,0;13994,0;2495,0;1854,0;1273,0;264,0;8,0;0,0;0,0;0,0;34,0;544,0;1621,0;2358,0;46,8;43,841;LINESTRING (3582986.537109037 5419380.670650164, 3582980.363930184 5419337.265963908);[134, 495, 368, 502] +502,0;['DEBW_001000eaUUC', 'DEBW_001000eaUUH', 'DEBW_001000eaUUD', 'DEBW_001000eaUUE', 'DEBW_001000eaUUG'];Counter({'non-heated': 3, 'residential': 2});Counter({'Before 1948': 2, '1972-1990': 2, '1949-1971': 1});5,0;28529,0;4982,0;3790,0;2737,0;741,0;34,0;0,0;0,0;0,0;107,0;1255,0;3284,0;4698,0;99,1;54,223;LINESTRING (3582998.942308454 5419433.45577627, 3582986.537109037 5419380.670650164);[495, 501, 503, 504] +504,0;['DEBW_001000eaUXd', 'DEBW_001000eaUXe', 'DEBW_001000eaUXf', 'DEBW_001000eaUXa', 'DEBW_001000eaUXb', 'DEBW_001000eaUXg', 'DEBW_001000eaUXh', 'DEBW_001000eaUWR', 'DEBW_001000eaUWS', 'DEBW_001000eaUWN', 'DEBW_001000eaUWO', 'DEBW_001000eaUWQ', 'DEBW_001000eaUWJ', 'DEBW_001000eaUWK', 'DEBW_001000eaUWL', 'DEBW_001000eaUX7', 'DEBW_001000eaUWV', 'DEBW_001000eaUX8'];Counter({'residential': 10, 'non-heated': 8});Counter({'1972-1990': 6, '1991-2010': 5, '1949-1971': 4, 'Before 1948': 2, 'After 2011': 1});18,0;193157,0;34964,0;26250,0;18225,0;4054,0;146,0;0,0;0,0;0,0;532,0;8079,0;22943,0;33091,0;305,3;176,108;LINESTRING (3583146.003355108 5419346.084280722, 3583137.974500713 5419350.502755187, 3583100.19028123 5419383.497607292, 3583073.704525395 5419406.227656221, 3583060.096895325 5419418.949857271, 3583047.041873849 5419425.095521172, 3583029.943405123 5419428.022087835, 3582998.942308454 5419433.45577627);[494, 502, 503, 510, 511] +506,0;['DEBW_001000eaUQi', 'DEBW_001000eaUQk', 'DEBW_001000eaUS6', 'DEBW_001000eaUS5', 'DEBW_001000eaUSR', 'DEBW_001000eaUQ8'];Counter({'non-heated': 3, 'residential': 2, 'industry': 1});Counter({'1949-1971': 3, '1972-1990': 2, 'Before 1948': 1});6,0;44169,0;7912,0;5841,0;3888,0;689,0;16,0;0,0;0,0;0,0;68,0;1587,0;5108,0;7456,0;94,2;190,138;LINESTRING (3583408.947986386 5419796.710159586, 3583401.993300071 5419803.357789756, 3583394.992928375 5419821.884104222, 3583387.12956317 5419850.563938817, 3583377.303734195 5419876.144491159, 3583372.690009995 5419890.502027885, 3583369.280495799 5419907.191156516, 3583368.373040123 5419924.24026412, 3583371.547587047 5419948.758323037, 3583376.232239245 5419966.914366278, 3583379.773028549 5419977.233841602);[178, 505, 507, 30] +507,0;['DEBW_001000eaUT3'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;15580,0;2994,0;2220,0;1520,0;367,0;19,0;0,0;0,0;0,0;58,0;697,0;1964,0;2842,0;20,0;51,022;LINESTRING (3583397.607124295 5420025.018017646, 3583387.985447617 5420001.182120651, 3583379.773028549 5419977.233841602);[224, 388, 505, 506] +508,0;['DEBW_001000eaUXT', 'DEBW_001000eaUXU', 'DEBW_001000eaUXR', 'DEBW_001000eaUXW', 'DEBW_001000eaUXX', 'DEBW_001000eaUXY', 'DEBW_001000eaUXZ', 'DEBW_001000eaUXs', 'DEBW_001000eaUXt', 'DEBW_001000eaUXu', 'DEBW_001000eaUXv', 'DEBW_001000eaUXo', 'DEBW_001000eaUXp', 'DEBW_001000eaUXq', 'DEBW_001000eaUXr', 'DEBW_001000eaUXk', 'DEBW_001000eaUXl', 'DEBW_001000eaUXn', 'DEBW_001000eaUXi', 'DEBW_001000eaUXj', 'DEBW_001000eaUXx', 'DEBW_001000eaUXy'];Counter({'residential': 11, 'non-heated': 10, 'office and administration': 1});Counter({'1972-1990': 11, '1949-1971': 8, 'Before 1948': 2, 'After 2011': 1});22,0;211589,0;37424,0;28040,0;19195,0;4170,0;146,0;0,0;0,0;0,0;537,0;8336,0;24439,0;35393,0;331,7;160,09;LINESTRING (3583144.37480942 5419418.915483568, 3583135.682475083 5419428.006839452, 3583107.043300995 5419457.967929208, 3583094.124254142 5419470.244266959, 3583078.576206525 5419475.907789417, 3583048.93218326 5419481.806330984, 3583007.774163279 5419486.888496852);[516, 330, 503, 537] +509,0;['DEBW_001000eaUMd', 'DEBW_001000eaUMe', 'DEBW_001000eaUMc'];Counter({'non-heated': 2, 'residential': 1});Counter({'1949-1971': 1, '1972-1990': 1, 'After 2011': 1});3,0;23575,0;4345,0;3255,0;2241,0;505,0;22,0;0,0;0,0;0,0;76,0;1012,0;2858,0;4120,0;36,2;15,58;LINESTRING (3583534.862811278 5421524.520477332, 3583545.547878678 5421535.859300824);[220, 191] +510,0;['DEBW_001000eaUX0', 'DEBW_001000eaUX1', 'DEBW_001000eaUX2', 'DEBW_001000eaUWZ', 'DEBW_001000eaUWW', 'DEBW_001000eaUWY'];Counter({'non-heated': 4, 'residential': 2});Counter({'1949-1971': 5, '1972-1990': 1});6,0;26311,0;4736,0;3511,0;2373,0;477,0;16,0;0,0;0,0;0,0;61,0;1012,0;3073,0;4475,0;112,3;30,085;LINESTRING (3583172.809019328 5419332.424557998, 3583146.003355108 5419346.084280722);[504, 511, 494] +511,0;['DEBW_001000eaUXL', 'DEBW_001000eaUX3', 'DEBW_001000eaUX4', 'DEBW_001000eaUX5', 'DEBW_001000eaUX6'];Counter({'residential': 3, 'non-heated': 2});Counter({'1949-1971': 2, '1972-1990': 2, 'Before 1948': 1});5,0;44825,0;8067,0;6012,0;4040,0;779,0;21,0;0,0;0,0;0,0;92,0;1734,0;5258,0;7628,0;61,8;58,18;LINESTRING (3583171.658155872 5419398.277655812, 3583159.935452883 5419372.597851522, 3583146.003355108 5419346.084280722);[515, 516, 494, 504, 510] +512,0;['DEBW_001000eaUF4', 'DEBW_001000eaUF6'];Counter({'non-heated': 1, 'residential': 1});Counter({'1972-1990': 1, '1949-1971': 1});2,0;11896,0;2193,0;1633,0;1114,0;243,0;10,0;0,0;0,0;0,0;35,0;495,0;1434,0;2076,0;21,9;32,798;LINESTRING (3583656.718830726 5421851.463803259, 3583649.008400579 5421858.311079455, 3583637.036223558 5421870.277737111, 3583633.374849145 5421874.460663403);[290, 399, 407, 443] +513,0;['DEBW_001000eaUFV', 'DEBW_001000eaUFW'];Counter({'residential': 1, 'non-heated': 1});Counter({'1972-1990': 1, 'Before 1948': 1});2,0;19186,0;3523,0;2623,0;1788,0;393,0;17,0;0,0;0,0;0,0;56,0;787,0;2301,0;3342,0;65,9;126,402;LINESTRING (3583422.336823398 5421844.390612507, 3583432.549793629 5421820.172950071, 3583437.723015089 5421816.335100474, 3583444.805895145 5421815.651424375, 3583455.004300569 5421817.372499482, 3583463.970165007 5421822.60113443, 3583450.895665028 5421855.340625407, 3583422.336823398 5421844.390612507);[32] +515,0;['DEBW_001000eaUU1', 'DEBW_001000eaUXK'];Counter({'residential': 2});Counter({'1949-1971': 1, '1972-1990': 1});2,0;30196,0;5312,0;3985,0;2741,0;586,0;20,0;0,0;0,0;0,0;75,0;1205,0;3464,0;5016,0;35,3;38,007;LINESTRING (3583207.909290811 5419387.951278836, 3583191.955664043 5419390.304917675, 3583179.623183073 5419394.203090877, 3583171.658155872 5419398.277655812);[514, 516, 536, 511] +516,0;['DEBW_001000eaUXO', 'DEBW_001000eaUXP', 'DEBW_001000eaUXQ', 'DEBW_001000eaUXN', 'DEBW_001000eaUXI', 'DEBW_001000eaUXD'];Counter({'non-heated': 3, 'residential': 3});Counter({'Before 1948': 2, '1949-1971': 2, 'After 2011': 2});6,0;47704,0;8947,0;6638,0;4469,0;957,0;42,0;0,0;0,0;0,0;141,0;1985,0;5857,0;8492,0;86,8;34,345;LINESTRING (3583144.37480942 5419418.915483568, 3583165.41479128 5419401.465822778, 3583171.658155872 5419398.277655812);[515, 537, 508, 511] +517,0;['DEBW_001000eaUN5', 'DEBW_001000eaUN4'];Counter({'residential': 1, 'non-heated': 1});Counter({'1991-2010': 1, 'Before 1948': 1});2,0;18401,0;3289,0;2545,0;1919,0;635,0;49,0;1,0;0,0;0,0;121,0;940,0;2210,0;3113,0;26,9;36,275;LINESTRING (3583314.329280123 5421407.986810569, 3583320.003283119 5421391.754164922, 3583320.681869588 5421388.03809821, 3583323.428362557 5421372.985221465);[462, 463] +518,0;['DEBW_001000eaUO2', 'DEBW_001000eaUO1'];Counter({'non-heated': 1, 'residential': 1});Counter({'1972-1990': 2});2,0;17432,0;3095,0;2305,0;1542,0;296,0;9,0;0,0;0,0;0,0;37,0;665,0;2014,0;2934,0;94,3;204,499;LINESTRING (3582272.667932109 5423773.687866597, 3582277.407730761 5423776.694365778, 3582279.324473028 5423779.859373082, 3582281.980214028 5423786.561293813, 3582291.388261502 5423817.244092602, 3582296.469288942 5423829.87705619, 3582301.857335697 5423837.598191638, 3582315.970543449 5423853.290020496, 3582322.322637511 5423862.204466917, 3582323.409370298 5423868.482788197, 3582322.716192754 5423875.724745574, 3582322.437370826 5423881.204269303, 3582322.591572118 5423884.154147352, 3582326.062853827 5423888.710284385, 3582335.399356963 5423897.446408387, 3582354.874891181 5423909.69163411, 3582368.625022606 5423920.684324577, 3582376.407547084 5423925.504479825, 3582381.882501452 5423926.842372959, 3582386.558139281 5423925.754751175);[465, 323, 151] +519,0;['DEBW_001000eaUZ5', 'DEBW_001000eaUZ6', 'DEBW_001000eaUZ7', 'DEBW_001000eaUZ8', 'DEBW_001000eaUZ1', 'DEBW_001000eaUZ4', 'DEBW_001000eaUZ9', 'DEBW_001000eaUYZ', 'DEBW_001000eaUZa', 'DEBW_001000eaUZb', 'DEBW_001000eaUZd'];Counter({'residential': 8, 'non-heated': 3});Counter({'1972-1990': 4, '1949-1971': 4, '1991-2010': 2, 'Before 1948': 1});11,0;118326,0;21445,0;15740,0;10384,0;1945,0;61,0;0,0;0,0;0,0;241,0;4384,0;13869,0;20252,0;169,0;131,817;LINESTRING (3583093.697179961 5419881.176295319, 3583070.139448552 5419892.070609965, 3583039.953673813 5419838.008223095, 3583038.378009721 5419830.087443815, 3583040.481335911 5419809.963933171, 3583044.577249525 5419794.875438739);[549, 520, 521, 522, 556] +520,0;['DEBW_001000eaUYX', 'DEBW_001000eaUYY', 'DEBW_001000eaUZU', 'DEBW_001000eaUYt', 'DEBW_001000eaUZV', 'DEBW_001000eaUYu', 'DEBW_001000eaUYr', 'DEBW_001000eaUZS', 'DEBW_001000eaUZT'];Counter({'residential': 5, 'non-heated': 4});Counter({'1972-1990': 4, '1991-2010': 3, '1949-1971': 1, 'Before 1948': 1});9,0;86643,0;15212,0;11360,0;7772,0;1650,0;54,0;0,0;0,0;0,0;203,0;3346,0;9916,0;14373,0;135,8;131,446;LINESTRING (3583096.873501102 5419687.728282833, 3583078.011548146 5419705.232871956, 3583059.907634363 5419709.757177572, 3583051.419357101 5419733.244823967, 3583046.037643136 5419789.369069421, 3583044.577249525 5419794.875438739);[519, 521, 522, 532] +521,0;['DEBW_001000eaUYD', 'DEBW_001000eaUYF', 'DEBW_001000eaUYG', 'DEBW_001000eaUYA', 'DEBW_001000eaUYB', 'DEBW_001000eaUYC', 'DEBW_001000eaUYT', 'DEBW_001000eaUYU', 'DEBW_001000eaUYV', 'DEBW_001000eaUYW', 'DEBW_001000eaUYP', 'DEBW_001000eaUYQ', 'DEBW_001000eaUYR', 'DEBW_001000eaUYS', 'DEBW_001000eaUYL', 'DEBW_001000eaUYM', 'DEBW_001000eaUYN', 'DEBW_001000eaUYO', 'DEBW_001000eaUYH', 'DEBW_001000eaUYI', 'DEBW_001000eaUYK', 'DEBW_001000eaUYv', 'DEBW_001000eaUYp', 'DEBW_001000eaUYq', 'DEBW_001000eaUYn', 'DEBW_001000eaUYo', 'DEBW_001000eaUYx', 'DEBW_001000eaUYy', 'DEBW_001000eaUYz'];Counter({'residential': 17, 'non-heated': 12});Counter({'1972-1990': 16, '1991-2010': 5, '1949-1971': 5, 'Before 1948': 2, 'After 2011': 1});29,0;287689,0;52127,0;38590,0;25914,0;5379,0;208,0;1,0;0,0;0,0;720,0;11186,0;33924,0;49309,0;437,1;276,929;LINESTRING (3583096.873501102 5419687.728282833, 3583085.59536178 5419673.567521478, 3583075.295414687 5419659.198898366, 3583066.56426546 5419656.655142122, 3583057.005235786 5419657.513821905, 3583038.419669501 5419674.677848088, 3583032.137386578 5419678.043543653, 3583024.686641966 5419680.112706671, 3583007.766150998 5419680.494810885, 3583000.938853669 5419681.071684773, 3582993.823569766 5419685.726411468, 3582979.525410115 5419695.146115152, 3582974.787437307 5419704.1185868, 3582973.844314539 5419712.313305924, 3582976.856443255 5419721.267628022, 3583003.835531277 5419771.655805522, 3583013.83520391 5419782.060050366, 3583029.227476498 5419790.242153928, 3583044.577249525 5419794.875438739);[519, 520, 522, 532] +522,0;['DEBW_001000eaUZ0', 'DEBW_001000eaUZQ', 'DEBW_001000eaUZR', 'DEBW_001000eaUZO', 'DEBW_001000eaUZP'];Counter({'non-heated': 3, 'residential': 2});Counter({'1972-1990': 2, 'Before 1948': 2, '1991-2010': 1});5,0;32667,0;6005,0;4457,0;3070,0;746,0;35,0;0,0;0,0;0,0;102,0;1310,0;3911,0;5678,0;68,8;58,242;LINESTRING (3583102.631507096 5419790.868490807, 3583090.441663105 5419791.65453056, 3583062.462662685 5419794.66355075, 3583044.577249525 5419794.875438739);[545, 519, 520, 521, 551] +523,0;['DEBW_001000eaURn', 'DEBW_001000eaURo', 'DEBW_001000eaURp', 'DEBW_001000eaURj', 'DEBW_001000eaURd', 'DEBW_001000eaURq', 'DEBW_001000eaURr', 'DEBW_001000eaURs'];Counter({'residential': 4, 'non-heated': 4});Counter({'1972-1990': 4, '1949-1971': 3, 'After 2011': 1});8,0;83406,0;15258,0;11356,0;7667,0;1604,0;63,0;0,0;0,0;0,0;218,0;3356,0;9968,0;14449,0;283,9;187,155;LINESTRING (3583444.013371064 5419582.794562617, 3583450.905414662 5419544.590107623, 3583488.135233559 5419471.813469238, 3583496.945371056 5419440.200349289, 3583503.256659392 5419407.025974523);[528, 530] +524,0;['DEBW_001000eaUEA', 'DEBW_001000eaUEB', 'DEBW_001000eaUEC', 'DEBW_001000eaUEr', 'DEBW_001000eaUEo', 'DEBW_001000eaUEx', 'DEBW_001000eaUEu', 'DEBW_001000eaUEv', 'DEBW_001000eaUEw'];Counter({'non-heated': 5, 'residential': 2, 'office and administration': 1, 'industry': 1});Counter({'1949-1971': 4, '1972-1990': 4, 'After 2011': 1});9,0;116736,0;18243,0;13489,0;9131,0;2414,0;177,0;4,0;0,0;0,0;415,0;3949,0;11239,0;17048,0;100,8;122,204;LINESTRING (3583598.289955321 5421684.464294081, 3583589.67488125 5421698.839504787, 3583583.866523329 5421705.915619298, 3583579.704350553 5421708.300260627, 3583571.003346784 5421711.306463447, 3583560.240140151 5421721.333763296, 3583548.461629918 5421720.37854482, 3583532.795348138 5421716.217252648, 3583527.682140145 5421716.529914286, 3583523.110629832 5421732.534181871, 3583518.528803201 5421749.717340262);[547, 541] +525,0;['DEBW_001000eaUNh'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;16068,0;2904,0;2155,0;1457,0;292,0;10,0;0,0;0,0;0,0;39,0;641,0;1889,0;2758,0;12,1;61,816;LINESTRING (3583211.633832814 5421498.74019336, 3583196.174911081 5421495.361579699, 3583171.895801633 5421488.725801873, 3583152.748447992 5421480.54273826);[526, 434, 467, 27] +528,0;['DEBW_001000eaUR9', 'DEBW_001000eaUR5', 'DEBW_001000eaUR6', 'DEBW_001000eaUR7', 'DEBW_001000eaUR8'];Counter({'residential': 3, 'non-heated': 2});Counter({'1949-1971': 3, 'Before 1948': 1, '1972-1990': 1});5,0;54114,0;9466,0;7077,0;4839,0;932,0;23,0;0,0;0,0;0,0;92,0;2051,0;6162,0;8957,0;65,8;70,679;LINESTRING (3583444.013371064 5419582.794562617, 3583375.263571094 5419566.394249562);[530, 523] +529,0;['DEBW_001000eaUMy', 'DEBW_001000eaUMz', 'DEBW_001000eaUMw'];Counter({'residential': 2, 'office and administration': 1});Counter({'1949-1971': 1, '1972-1990': 1, 'After 2011': 1});3,0;137635,0;24022,0;18395,0;13348,0;3705,0;201,0;4,0;0,0;0,0;621,0;6329,0;15876,0;22721,0;104,0;35,028;LINESTRING (3583879.16840433 5421940.355309716, 3583883.740799178 5421924.351319646, 3583885.211306691 5421917.710744119, 3583885.66150623 5421910.687747871, 3583885.047696659 5421906.18479139);[289, 343] +530,0;['DEBW_001000eaURi', 'DEBW_001000eaURf', 'DEBW_001000eaURg', 'DEBW_001000eaURb', 'DEBW_001000eaURc', 'DEBW_001000eaUQN', 'DEBW_001000eaUQO', 'DEBW_001000eaUR0', 'DEBW_001000eaUQX', 'DEBW_001000eaUQY', 'DEBW_001000eaUQZ', 'DEBW_001000eaUQT', 'DEBW_001000eaUQU', 'DEBW_001000eaUQW', 'DEBW_001000eaUR1', 'DEBW_001000eaUQP', 'DEBW_001000eaUR2', 'DEBW_001000eaUQQ', 'DEBW_001000eaUR3', 'DEBW_001000eaUQR'];Counter({'non-heated': 10, 'residential': 9, 'industry': 1});Counter({'1972-1990': 9, 'Before 1948': 4, '1991-2010': 3, '1949-1971': 2, 'After 2011': 2});20,0;234179,0;38095,0;28369,0;19251,0;4359,0;169,0;0,0;0,0;0,0;584,0;8256,0;23970,0;35734,0;364,7;126,807;LINESTRING (3583550.487564867 5419648.045779052, 3583542.798526444 5419635.172495837, 3583444.013371064 5419582.794562617);[523, 269, 528, 370] +531,0;['DEBW_001000eyVFB', 'DEBW_001000eyVFE', 'DEBW_001000eyVFD'];Counter({'residential': 2, 'non-heated': 1});Counter({'1972-1990': 2, 'Before 1948': 1});3,0;42326,0;7746,0;5676,0;3773,0;689,0;18,0;0,0;0,0;0,0;70,0;1528,0;5006,0;7323,0;64,0;76,281;LINESTRING (3585738.823790619 5421314.540768285, 3585752.13038494 5421318.649730006, 3585792.164381448 5421324.026597778, 3585813.083707484 5421330.71112329);[264, 254, 571, 158] +533,0;['DEBW_001000eaUNi', 'DEBW_001000eaUNj'];Counter({'non-heated': 1, 'residential': 1});Counter({'1972-1990': 1, '1991-2010': 1});2,0;20476,0;3832,0;2871,0;2031,0;531,0;28,0;0,0;0,0;0,0;88,0;926,0;2524,0;3637,0;26,7;54,961;LINESTRING (3583239.418151526 5421391.90698869, 3583239.00822803 5421394.815096376, 3583239.580930259 5421397.693388278, 3583241.075121347 5421400.21838412, 3583243.318913676 5421402.120564857, 3583246.066641793 5421403.162678534, 3583249.01169112 5421403.262284665, 3583251.817470756 5421402.380986451, 3583254.174542068 5421400.625391271, 3583255.823432844 5421398.191836654, 3583256.569459349 5421395.355489055, 3583256.362504684 5421392.527151085, 3583255.258201533 5421389.907868268, 3583253.376972789 5421387.777515488, 3583250.913353729 5421386.361459796, 3583248.121834302 5421385.796979529, 3583245.301870373 5421386.155286156, 3583242.739922921 5421387.396166289, 3583240.70929124 5421389.379102333, 3583239.418151526 5421391.90698869);[526] +536,0;['DEBW_001000eaUTY', 'DEBW_001000eaUTZ', 'DEBW_001000eaUXJ'];Counter({'residential': 2, 'non-heated': 1});Counter({'1972-1990': 2, 'Before 1948': 1});3,0;48946,0;9078,0;6582,0;4242,0;581,0;11,0;0,0;0,0;0,0;55,0;1681,0;5827,0;8577,0;37,2;28,994;LINESTRING (3583207.909290811 5419387.951278836, 3583206.355428681 5419416.903452531);[514, 515] +537,0;['DEBW_001000eaUXG', 'DEBW_001000eaUXH', 'DEBW_001000eaUXw', 'DEBW_001000eaUXC', 'DEBW_001000eaUXE', 'DEBW_001000eaUXB'];Counter({'non-heated': 4, 'residential': 2});Counter({'1972-1990': 4, '1949-1971': 2});6,0;26725,0;4758,0;3504,0;2279,0;382,0;11,0;0,0;0,0;0,0;45,0;933,0;3072,0;4498,0;104,5;19,007;LINESTRING (3583144.37480942 5419418.915483568, 3583155.94763297 5419433.992826544);[508, 516] +540,0;['DEBW_001000eaUED', 'DEBW_001000eaUEf', 'DEBW_001000eaUEt'];Counter({'residential': 2, 'non-heated': 1});Counter({'1972-1990': 2, 'Before 1948': 1});3,0;39295,0;6768,0;5132,0;3609,0;816,0;30,0;0,0;0,0;0,0;92,0;1524,0;4445,0;6377,0;34,0;33,538;LINESTRING (3583648.684217262 5421665.577224016, 3583645.684990715 5421680.325851294, 3583643.679384736 5421698.704383031);[7, 553, 539, 541] +541,0;['DEBW_001000eaUEN', 'DEBW_001000eaUEd', 'DEBW_001000eaUEe', 'DEBW_001000eaUEg', 'DEBW_001000eaUEz'];Counter({'non-heated': 2, 'residential': 2, 'office and administration': 1});Counter({'1949-1971': 2, '1991-2010': 1, 'Before 1948': 1, '1972-1990': 1});5,0;80685,0;14053,0;10746,0;7853,0;2107,0;126,0;4,0;0,0;1,0;339,0;3551,0;9255,0;13257,0;45,5;49,314;LINESTRING (3583598.289955321 5421684.464294081, 3583606.428076537 5421682.828944564, 3583620.329977318 5421685.395617871, 3583633.499100872 5421692.834344219, 3583643.679384736 5421698.704383031);[547, 524, 539, 540] +542,0;['DEBW_001000eaUTU', 'DEBW_001000eaUZH', 'DEBW_001000eaUZJ'];Counter({'residential': 2, 'education': 1});Counter({'1972-1990': 2, '1949-1971': 1});3,0;81845,0;13825,0;10484,0;7523,0;2130,0;227,0;15,0;2,0;4,0;478,0;3611,0;9235,0;13105,0;81,4;98,364;LINESTRING (3583176.103317342 5419628.200305238, 3583173.793532135 5419632.637291074, 3583157.510905269 5419657.098587609, 3583143.785267778 5419677.760626228, 3583131.375753258 5419694.738365531, 3583122.038880259 5419702.830180787, 3583116.31465622 5419703.67918476);[532, 543] +543,0;['DEBW_001000eaUZK', 'DEBW_001000eaUZL'];Counter({'non-heated': 1, 'residential': 1});Counter({'Before 1948': 1, '1991-2010': 1});2,0;12215,0;2149,0;1609,0;1123,0;253,0;8,0;0,0;0,0;0,0;34,0;485,0;1403,0;2035,0;27,5;45,603;LINESTRING (3583113.385602037 5419749.17300263, 3583114.076629222 5419733.310811011, 3583114.737156859 5419719.494793323, 3583116.31465622 5419703.67918476);[544, 545, 532, 542] +544,0;['DEBW_001000eaUZE', 'DEBW_001000eaUZC', 'DEBW_001000eaUZD'];Counter({'residential': 2, 'non-heated': 1});Counter({'1991-2010': 1, '1949-1971': 1, 'After 2011': 1});3,0;26092,0;4971,0;3616,0;2413,0;524,0;24,0;0,0;0,0;0,0;76,0;1028,0;3214,0;4698,0;35,1;28,14;LINESTRING (3583141.36294986 5419752.192862622, 3583113.385602037 5419749.17300263);[545, 543] +545,0;['DEBW_001000eaUZA', 'DEBW_001000eaUZN'];Counter({'residential': 2});Counter({'1972-1990': 1, '1991-2010': 1});2,0;31976,0;5991,0;4460,0;3077,0;750,0;37,0;0,0;0,0;0,0;118,0;1361,0;3928,0;5697,0;28,0;43,36;LINESTRING (3583102.631507096 5419790.868490807, 3583107.458835207 5419780.829648817, 3583111.12082887 5419763.877193776, 3583113.385602037 5419749.17300263);[544, 551, 522, 543] +547,0;['DEBW_001000eaUDT', 'DEBW_001000eaUEl', 'DEBW_001000eaUEn', 'DEBW_001000eaUEj', 'DEBW_001000eaUEk', 'DEBW_001000eaUEy'];Counter({'residential': 4, 'non-heated': 1, 'office and administration': 1});Counter({'1949-1971': 2, '1972-1990': 2, 'Before 1948': 1, '1991-2010': 1});6,0;163821,0;29080,0;22270,0;16297,0;5028,0;469,0;16,0;1,0;2,0;1056,0;7668,0;19235,0;27453,0;88,7;63,046;LINESTRING (3583598.289955321 5421684.464294081, 3583576.676650092 5421674.140489494, 3583571.008925542 5421685.033928855, 3583564.759028858 5421686.853367048, 3583550.37114759 5421684.435269197, 3583544.998647959 5421682.48605157);[524, 541] +548,0;['DEBW_001000eyVLU', 'DEBW_001000eyVLS', 'DEBW_001000eyVLQ'];Counter({'non-heated': 2, 'health care': 1});Counter({'1972-1990': 3});3,0;257095,0;21982,0;17609,0;14210,0;6486,0;1407,0;125,0;16,0;27,0;2056,0;7544,0;14940,0;20648,0;163,0;80,387;LINESTRING (3584636.202900881 5422193.452051084, 3584670.5367034 5422237.420559236, 3584685.809651606 5422256.70656543);[440, 534] +549,0;['DEBW_001000eaUZf', 'DEBW_001000eaUZg', 'DEBW_001000eaUZh', 'DEBW_001000eaUZq', 'DEBW_001000eaUZr', 'DEBW_001000eaUZm', 'DEBW_001000eaUZn', 'DEBW_001000eaUZo', 'DEBW_001000eaUZp'];Counter({'residential': 6, 'non-heated': 3});Counter({'1949-1971': 3, '1972-1990': 3, 'Before 1948': 2, '1991-2010': 1});9,0;111894,0;20075,0;14809,0;9889,0;1822,0;51,0;0,0;0,0;0,0;205,0;4111,0;13008,0;18957,0;125,4;83,271;LINESTRING (3583093.697179961 5419881.176295319, 3583118.659916269 5419868.501098978, 3583122.530980172 5419865.555600553, 3583126.382615156 5419854.078487716, 3583131.911329004 5419816.175929703);[550, 551, 519, 556] +550,0;['DEBW_001000eaUZu'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;13256,0;2324,0;1741,0;1223,0;285,0;10,0;0,0;0,0;0,0;38,0;525,0;1516,0;2198,0;16,0;33,579;LINESTRING (3583165.281025271 5419819.921449417, 3583149.323707048 5419818.181866217, 3583131.911329004 5419816.175929703);[549, 389, 551, 558, 313] +551,0;['DEBW_001000eaUZv', 'DEBW_001000eaUZw', 'DEBW_001000eaUZt'];Counter({'residential': 2, 'non-heated': 1});Counter({'1949-1971': 2, '1972-1990': 1});3,0;51006,0;8926,0;6694,0;4603,0;979,0;33,0;0,0;0,0;0,0;121,0;1993,0;5831,0;8429,0;45,6;38,715;LINESTRING (3583102.631507096 5419790.868490807, 3583124.707564403 5419810.540411776, 3583131.911329004 5419816.175929703);[545, 549, 550, 522] +552,0;['DEBW_001000eaUGb', 'DEBW_001000eaUGc', 'DEBW_001000eaUGe', 'DEBW_001000eaUG2', 'DEBW_001000eaUG5', 'DEBW_001000eaUG1', 'DEBW_001000eaUG6', 'DEBW_001000eaUG7', 'DEBW_001000eaUG8', 'DEBW_001000eaUG9', 'DEBW_001000eaULA', 'DEBW_001000eaULB', 'DEBW_001000eaULg', 'DEBW_001000eaULx', 'DEBW_001000eaULy', 'DEBW_001000eaULz', 'DEBW_001000eaULt', 'DEBW_001000eaULv', 'DEBW_001000eaULr'];Counter({'non-heated': 10, 'residential': 9});Counter({'1972-1990': 8, '1949-1971': 4, 'Before 1948': 3, '1991-2010': 2, 'After 2011': 2});19,0;134036,0;24099,0;18028,0;12579,0;3116,0;135,0;0,0;0,0;0,0;435,0;5522,0;15772,0;22790,0;375,8;141,386;LINESTRING (3583377.748803993 5421804.06966774, 3583366.686576779 5421805.216676865, 3583303.697103511 5421810.781643967, 3583250.47344136 5421814.168498508, 3583236.774985816 5421814.186324091);[456, 106, 44, 366] +553,0;['DEBW_001000eaUEc', 'DEBW_001000eaUEs'];Counter({'residential': 2});Counter({'1972-1990': 1, '1949-1971': 1});2,0;23734,0;4372,0;3149,0;2035,0;351,0;11,0;0,0;0,0;0,0;42,0;821,0;2800,0;4123,0;17,8;34,287;LINESTRING (3583673.98394237 5421642.721006631, 3583653.217638311 5421659.460863346, 3583648.684217262 5421665.577224016);[71, 7, 174, 540] +555,0;['DEBW_001000eaUMN'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;68637,0;4276,0;2650,0;866,0;29,0;0,0;0,0;0,0;0,0;0,0;43,0;1182,0;3583,0;16,5;272,328;LINESTRING (3583963.95393634 5421894.414850025, 3583966.208564291 5421889.732644944, 3583972.886621947 5421864.361462803, 3583973.576315695 5421844.372588709, 3583962.731372437 5421807.747770768, 3583956.619992403 5421795.509306965, 3583948.002965903 5421793.421826524, 3583938.960760794 5421793.285613582, 3583910.951249012 5421799.915787219, 3583903.179082768 5421805.482639806, 3583902.677230534 5421812.527102634, 3583906.4704428 5421821.994325808, 3583936.895491096 5421878.323674107, 3583951.316479401 5421886.771987508, 3583959.100606709 5421891.594324166, 3583963.95393634 5421894.414850025);[554] +556,0;['DEBW_001000eaUZi', 'DEBW_001000eaUZj', 'DEBW_001000eaUZl'];Counter({'residential': 3});Counter({'Before 1948': 2, '1949-1971': 1});3,0;31249,0;5793,0;4255,0;2786,0;431,0;7,0;0,0;0,0;0,0;38,0;1119,0;3743,0;5496,0;43,8;31,844;LINESTRING (3583093.697179961 5419881.176295319, 3583078.098447832 5419853.414482852);[549, 519] +561,0;['DEBW_001000eaUFz'];Counter({'office and administration': 1});Counter({'1972-1990': 1});1,0;35570,0;6447,0;4993,0;3761,0;1298,0;144,0;5,0;0,0;1,0;299,0;1843,0;4284,0;6062,0;18,1;16,164;LINESTRING (3583582.728342748 5421901.00782024, 3583573.173518151 5421895.970368635, 3583568.492857032 5421893.352992785);[560, 420] +564,0;['DEBW_001000eyVJf', 'DEBW_001000eyVJd', 'DEBW_001000eyVID'];Counter({'non-heated': 3});Counter({'1972-1990': 2, '1991-2010': 1});3,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;37,0;44,34;LINESTRING (3586179.062264172 5421377.503221366, 3586171.379346511 5421364.781860548, 3586149.795303387 5421344.704522206);[12, 13, 565, 570] +565,0;['DEBW_001000eyVJa', 'DEBW_001000eyVIv', 'DEBW_001000eyVIw', 'DEBW_001000eyVIC'];Counter({'residential': 3, 'non-heated': 1});Counter({'1991-2010': 2, '1972-1990': 1, '1949-1971': 1});4,0;64163,0;11883,0;8939,0;6188,0;1440,0;65,0;0,0;0,0;0,0;225,0;2841,0;7816,0;11247,0;77,0;46,529;LINESTRING (3586103.288686151 5421343.640960196, 3586133.638453278 5421343.865251548, 3586149.795303387 5421344.704522206);[13, 51, 564, 157] +566,0;['DEBW_001000eaUF3', 'DEBW_001000eaUEL', 'DEBW_001000eaUF0', 'DEBW_001000eaUEI', 'DEBW_001000eaUEK', 'DEBW_001000eaUF7', 'DEBW_001000eaUF8'];Counter({'residential': 3, 'office and administration': 2, 'restaurant': 1, 'non-heated': 1});Counter({'1972-1990': 3, '1949-1971': 2, 'After 2011': 1, 'Before 1948': 1});7,0;280768,0;34375,0;26791,0;20277,0;7154,0;620,0;4,0;0,0;0,0;1255,0;9467,0;22549,0;32261,0;104,3;68,336;LINESTRING (3583619.454297135 5421782.330914242, 3583624.976958248 5421751.313760719, 3583632.554079223 5421735.287938077, 3583641.492716869 5421718.403840167);[70, 298, 301, 539] +569,0;['DEBW_001000eyVIu', 'DEBW_001000eyVIt', 'DEBW_001000eyVIs', 'DEBW_001000eyVIr', 'DEBW_001000eyVJv', 'DEBW_001000eyVJt', 'DEBW_001000eyVJs', 'DEBW_001000eyVJr', 'DEBW_001000eyVJp', 'DEBW_001000eyVI9', 'DEBW_001000eyVIf', 'DEBW_001000eyVIe', 'DEBW_001000eyVId', 'DEBW_001000eyVIb', 'DEBW_001000eyVIa', 'DEBW_001000eyVIi', 'DEBW_001000eyVIh', 'DEBW_001000eyVIg'];Counter({'residential': 11, 'non-heated': 7});Counter({'1972-1990': 8, '1949-1971': 5, '1991-2010': 3, 'Before 1948': 2});18,0;210361,0;37876,0;28315,0;19539,0;4312,0;160,0;0,0;0,0;0,0;565,0;8554,0;24753,0;35824,0;318,0;200,72;LINESTRING (3586135.337201899 5421421.753709264, 3586116.661863348 5421424.056781835, 3586099.61366641 5421434.905404714, 3586093.867304757 5421438.687488095, 3586080.986414771 5421440.268209901, 3585994.252994707 5421440.263897975, 3585972.057289951 5421435.58339801, 3585953.982712465 5421430.310284129, 3585943.11393133 5421422.145100231);[164, 14, 570, 159] +570,0;['DEBW_001000eyVIy', 'DEBW_001000eyVIE', 'DEBW_001000eyVIB', 'DEBW_001000eyVIA', 'DEBW_001000eyVIP'];Counter({'residential': 4, 'non-heated': 1});Counter({'1949-1971': 3, '1972-1990': 2});5,0;52101,0;9321,0;6982,0;4763,0;997,0;35,0;0,0;0,0;0,0;136,0;2117,0;6097,0;8813,0;80,1;63,061;LINESTRING (3586179.062264172 5421377.503221366, 3586173.628278018 5421386.673672073, 3586143.015300858 5421418.190621857, 3586135.337201899 5421421.753709264);[12, 14, 564, 569] +1,0;;;;;;;;;;;;;;;;;;;38,338;LINESTRING (3582845.353773712 5423931.304445015, 3582881.349557577 5423944.498095336);[2, 3, 572] +2,0;;;;;;;;;;;;;;;;;;;57,996;LINESTRING (3582845.353773712 5423931.304445015, 3582842.791245034 5423938.084747158, 3582843.365893672 5423945.256534763, 3582865.132514407 5423954.111767548, 3582870.953455037 5423953.853575887, 3582877.16462944 5423950.019578068, 3582881.349557577 5423944.498095336);[1, 3, 572] +3,0;;;;;;;;;;;;;;;;;;;66,65;LINESTRING (3582943.081002808 5423969.598726004, 3582926.933905836 5423962.706660335, 3582892.418016352 5423948.544786869, 3582881.349557577 5423944.498095336);[1, 2, 41] +11,0;;;;;;;;;;;;;;;;;;;105,997;LINESTRING (3585499.680841824 5418760.003480218, 3585507.258610973 5418755.058638093, 3585516.589497421 5418744.823847441, 3585520.654616378 5418738.445905651, 3585523.164254543 5418729.252220999, 3585527.772005983 5418688.923814084, 3585528.656266483 5418676.21255974, 3585531.799884219 5418663.936382524);[208, 428] +15,0;;;;;;;;;;;;;;;;;;;156,357;LINESTRING (3583079.907216431 5420584.088158568, 3583074.032514742 5420492.78095329, 3583073.50114773 5420440.383749776, 3583073.349610404 5420427.92374297);[16, 17, 247, 248] +17,0;;;;;;;;;;;;;;;;;;;433,821;LINESTRING (3583370.289953409 5420237.781778233, 3583368.633445516 5420243.641075425, 3583368.775616179 5420260.116367501, 3583370.918868008 5420274.652812548, 3583373.85218756 5420288.811769097, 3583374.072018039 5420300.583193941, 3583371.588843541 5420308.777081595, 3583357.397529755 5420337.584792063, 3583349.322018315 5420351.579143839, 3583340.777430036 5420358.703601645, 3583332.45998603 5420362.894994727, 3583318.416718581 5420360.238039145, 3583304.568552465 5420354.336118445, 3583296.145439412 5420351.863309085, 3583288.450853231 5420351.659365467, 3583281.650702834 5420353.415318755, 3583275.143774484 5420356.154484075, 3583260.568610689 5420369.473479131, 3583242.57985094 5420389.982611086, 3583227.717824255 5420409.759866637, 3583216.749017593 5420421.164041008, 3583208.588079887 5420426.670464299, 3583198.732210394 5420428.347539128, 3583171.248529785 5420425.390277624, 3583146.822809665 5420424.825711342, 3583125.463737348 5420426.564944807, 3583090.835555832 5420427.81727649, 3583078.757429053 5420427.103367375, 3583073.349610404 5420427.92374297);[16, 15] +18,0;;;;;;;;;;;;;;;;;;;51,216;LINESTRING (3583451.938731699 5421678.032838081, 3583472.114848373 5421725.107375637);[492, 546] +19,0;;;;;;;;;;;;;;;;;;;7,636;LINESTRING (3583487.254043235 5421817.277183779, 3583494.054781782 5421820.749358957);[20, 21, 155, 156] +22,0;;;;;;;;;;;;;;;;;;;31,453;LINESTRING (3585987.301524231 5418665.823259148, 3586006.372807476 5418640.812213177);[81, 82, 23, 24] +23,0;;;;;;;;;;;;;;;;;;;40,547;LINESTRING (3586025.027002725 5418604.816285877, 3586015.281323462 5418624.276036321, 3586006.372807476 5418640.812213177);[24, 194, 22] +24,0;;;;;;;;;;;;;;;;;;;54,979;LINESTRING (3586056.704405995 5418661.599018165, 3586042.20243627 5418658.038356046, 3586030.262133189 5418654.328149457, 3586019.322616236 5418649.443229492, 3586006.372807476 5418640.812213177);[22, 23] +25,0;;;;;;;;;;;;;;;;;;;43,204;LINESTRING (3582041.987527951 5419697.668645003, 3582040.286312404 5419699.17857892, 3582015.465279113 5419720.792347398, 3582009.455774396 5419726.098578799);[26, 31] +26,0;;;;;;;;;;;;;;;;;;;73,18;LINESTRING (3582041.987527951 5419697.668645003, 3582050.298301627 5419714.352958921, 3582025.854903319 5419738.207945087, 3582009.455774396 5419726.098578799);[25, 31] +27,0;;;;;;;;;;;;;;;;;;;3,77;LINESTRING (3583211.633832814 5421498.74019336, 3583214.971946484 5421500.491858269);[525, 467, 28, 29] +31,0;;;;;;;;;;;;;;;;;;;73,584;LINESTRING (3582091.829896085 5419645.857492557, 3582084.460788852 5419663.323233157, 3582064.641402461 5419678.848318663, 3582041.987527951 5419697.668645003);[25, 26, 398] +32,0;;;;;;;;;;;;;;;;;;;15,308;LINESTRING (3583422.336823398 5421844.390612507, 3583408.084672497 5421838.804840001);[513, 34, 33] +40,0;;;;;;;;;;;;;;;;;;;22,946;LINESTRING (3583236.061334794 5421986.571429813, 3583242.257270481 5421992.748283928, 3583248.681536252 5421994.92426678, 3583255.074873741 5421998.679265022);[453, 38, 391, 39] +48,0;;;;;;;;;;;;;;;;;;;34,509;LINESTRING (3582953.290296115 5423435.210724849, 3582974.171291112 5423407.736415865);[49, 50, 390] +49,0;;;;;;;;;;;;;;;;;;;32,506;LINESTRING (3582993.841735255 5423381.856983034, 3582974.171291112 5423407.736415865);[266, 48, 50, 52] +50,0;;;;;;;;;;;;;;;;;;;43,912;LINESTRING (3582974.171291112 5423407.736415865, 3582978.133205717 5423396.561171485, 3582978.684825555 5423385.602073642, 3582976.852995763 5423376.754213182, 3582971.791643965 5423365.82272629);[48, 49, 52, 53] +52,0;;;;;;;;;;;;;;;;;;;27,264;LINESTRING (3582993.841735255 5423381.856983034, 3582971.791643965 5423365.82272629);[266, 49, 50, 53] +53,0;;;;;;;;;;;;;;;;;;;276,162;LINESTRING (3582755.613133283 5423194.215025615, 3582759.355902334 5423197.273851127, 3582788.203799054 5423220.916304884, 3582881.855876341 5423300.047946398, 3582910.170895195 5423321.024729012, 3582971.791643965 5423365.82272629);[458, 465, 50, 52, 281] +57,0;;;;;;;;;;;;;;;;;;;365,987;LINESTRING (3584832.795055511 5419372.066949954, 3584851.572563688 5419371.162459361, 3584880.6848077 5419371.004846756, 3584911.783868759 5419374.236804198, 3584961.583648833 5419386.896979338, 3584980.551498719 5419392.747528625, 3585026.251694971 5419406.880803581, 3585073.776198035 5419421.576198071, 3585189.297681632 5419445.608160559);[460, 305] +65,0;;;;;;;;;;;;;;;;;;;19,836;LINESTRING (3583570.417209848 5421840.302696271, 3583550.796909035 5421837.383440712);[66, 303, 20, 567] +69,0;;;;;;;;;;;;;;;;;;;22,759;LINESTRING (3583698.525386504 5421743.55289958, 3583678.570893586 5421732.60846639);[70, 71, 72, 94, 95] +72,0;;;;;;;;;;;;;;;;;;;32,762;LINESTRING (3583656.883604619 5421754.084013673, 3583660.286513859 5421743.690561815, 3583668.461609712 5421736.171768897, 3583678.570893586 5421732.60846639);[69, 70, 71, 297, 95] +74,0;;;;;;;;;;;;;;;;;;;41,01;LINESTRING (3582546.035688966 5421045.568849143, 3582544.820158231 5421086.561251819);[267, 421] +81,0;;;;;;;;;;;;;;;;;;;159,397;LINESTRING (3585881.12488213 5418778.421756588, 3585895.387930343 5418767.006619802, 3585898.838041504 5418764.401329955, 3585908.394665847 5418757.173895571, 3585932.309921868 5418739.478367957, 3585941.875848969 5418732.128777947, 3585956.710626194 5418721.223141673, 3585966.815066417 5418711.76850037, 3585969.579880859 5418708.429687987, 3585974.718106618 5418700.978539102, 3585981.094188768 5418685.537834361, 3585987.301524231 5418665.823259148);[96, 143, 82, 22] +82,0;;;;;;;;;;;;;;;;;;;90,489;LINESTRING (3585936.095663471 5418593.245546623, 3585943.26291751 5418613.555536224, 3585944.36781213 5418615.619212266, 3585946.221292603 5418619.073689558, 3585948.039140106 5418622.46087986, 3585962.573859517 5418640.55970459, 3585976.410335389 5418657.802450831, 3585987.301524231 5418665.823259148);[81, 22] +83,0;;;;;;;;;;;;;;;;;;;222,406;LINESTRING (3583075.998701048 5418987.904776302, 3583063.396218803 5418949.320608795, 3583060.111044697 5418938.982945052, 3583053.945860299 5418910.794536215, 3583048.86703449 5418874.157739716, 3583043.925118786 5418802.218718241, 3583041.474798196 5418769.291649816);[101, 84, 85, 181] +84,0;;;;;;;;;;;;;;;;;;;328,369;LINESTRING (3582921.081739073 5418467.73711013, 3582937.307059907 5418493.638953703, 3582987.924045319 5418584.25405275, 3583005.682680157 5418621.401994297, 3583025.904395946 5418677.807128813, 3583033.299087405 5418709.639871567, 3583040.643448306 5418758.145192116, 3583041.474798196 5418769.291649816);[482, 396, 83, 85] +85,0;;;;;;;;;;;;;;;;;;;15,446;LINESTRING (3583056.570581186 5418766.057173107, 3583047.378567795 5418768.267251261, 3583041.474798196 5418769.291649816);[83, 84, 86, 87] +88,0;;;;;;;;;;;;;;;;;;;109,969;LINESTRING (3582186.236131692 5423692.82655952, 3582192.254590848 5423708.487584391, 3582211.091276485 5423752.656996211, 3582229.981284954 5423793.690582151);[147, 148] +89,0;;;;;;;;;;;;;;;;;;;141,486;LINESTRING (3586616.217125863 5419891.938562199, 3586652.509055905 5419875.951203108, 3586669.662212802 5419866.74087436, 3586696.933154385 5419851.892740707, 3586735.756962182 5419818.348415203);[90, 441, 79] +90,0;;;;;;;;;;;;;;;;;;;681,261;LINESTRING (3586258.074134731 5419348.081573434, 3586345.787555856 5419394.87709022, 3586392.559840552 5419423.387147209, 3586416.400631442 5419439.284477401, 3586438.039673607 5419455.303508003, 3586482.161792425 5419491.993279297, 3586505.50232284 5419515.524858637, 3586523.327856891 5419535.333691114, 3586550.054095106 5419569.351530857, 3586578.518608258 5419608.98032802, 3586627.87099888 5419682.659206398, 3586654.059180938 5419720.072921243, 3586679.178062766 5419753.143233947, 3586706.311831415 5419786.756668923, 3586735.756962182 5419818.348415203);[89, 451, 294] +91,0;;;;;;;;;;;;;;;;;;;104,73;LINESTRING (3582773.998267812 5418318.140431891, 3582671.426988626 5418296.987487338);[92, 93, 127] +93,0;;;;;;;;;;;;;;;;;;;546,526;LINESTRING (3582131.194170839 5418222.326083644, 3582208.090176185 5418223.258459136, 3582302.388399752 5418231.711855848, 3582409.195995022 5418245.25683233, 3582602.983122704 5418283.48258133, 3582629.571008977 5418288.725923019, 3582671.426988626 5418296.987487338);[136, 137, 91, 92] +95,0;;;;;;;;;;;;;;;;;;;43,5;LINESTRING (3583656.883604619 5421754.084013673, 3583672.680401741 5421746.612914582, 3583698.525386504 5421743.55289958);[69, 72, 297, 94] +96,0;;;;;;;;;;;;;;;;;;;34,945;LINESTRING (3585881.12488213 5418778.421756588, 3585855.380628659 5418802.051327681);[97, 98, 143, 81] +97,0;;;;;;;;;;;;;;;;;;;18,208;LINESTRING (3585843.501031858 5418815.850222205, 3585855.380628659 5418802.051327681);[96, 98, 108, 109] +98,0;;;;;;;;;;;;;;;;;;;62,917;LINESTRING (3585813.62838255 5418797.070770087, 3585816.673396066 5418786.95110114, 3585826.59551356 5418781.219650223, 3585836.838079073 5418780.398438497, 3585845.447196186 5418783.267222397, 3585851.425018375 5418790.811715172, 3585855.380628659 5418802.051327681);[96, 97, 108, 209] +101,0;;;;;;;;;;;;;;;;;;;224,748;LINESTRING (3583075.998701048 5418987.904776302, 3583094.9781556 5419038.952721466, 3583118.411495335 5419095.684218453, 3583158.846748555 5419196.805266773);[99, 100, 83, 181] +104,0;;;;;;;;;;;;;;;;;;;184,48;LINESTRING (3583152.995976523 5419896.408957479, 3583136.235197717 5419990.848991736, 3583132.076314057 5420012.610278652, 3583120.880231177 5420078.068970227);[105, 558, 16, 383] +108,0;;;;;;;;;;;;;;;;;;;35,285;LINESTRING (3585813.62838255 5418797.070770087, 3585843.501031858 5418815.850222205);[97, 98, 109, 209] +109,0;;;;;;;;;;;;;;;;;;;145,445;LINESTRING (3585931.203686181 5418929.310631156, 3585920.484970049 5418905.364273724, 3585910.685492597 5418888.384045871, 3585901.947575377 5418874.846106134, 3585889.416854465 5418859.025150052, 3585874.222639124 5418841.394639895, 3585858.665993995 5418826.817450233, 3585843.501031858 5418815.850222205);[97, 449, 484, 457, 108] +113,0;;;;;;;;;;;;;;;;;;;17,169;LINESTRING (3583848.363724095 5420233.183148518, 3583850.360546417 5420222.279244602, 3583850.085390906 5420216.201933597);[114, 273, 115, 283, 284] +114,0;;;;;;;;;;;;;;;;;;;55,525;LINESTRING (3583799.5613688 5420200.381716754, 3583819.464798086 5420201.915569792, 3583831.908143087 5420203.237208557, 3583841.062864459 5420206.300226761, 3583850.085390906 5420216.201933597);[224, 113, 115, 223] +120,0;;;;;;;;;;;;;;;;;;;4,638;LINESTRING (3583584.849273019 5421844.14526955, 3583589.14729777 5421845.889320869);[302, 119, 567, 121] +122,0;;;;;;;;;;;;;;;;;;;27,487;LINESTRING (3583850.499861623 5420420.160022383, 3583862.768155686 5420395.562448399);[277, 278, 123, 124] +124,0;;;;;;;;;;;;;;;;;;;26,587;LINESTRING (3583839.137059341 5420383.583451588, 3583845.602665259 5420387.996424803, 3583862.768155686 5420395.562448399);[293, 277, 122, 123] +127,0;;;;;;;;;;;;;;;;;;;55,348;LINESTRING (3582773.998267812 5418318.140431891, 3582828.323199956 5418328.734937212);[128, 129, 91, 92] +128,0;;;;;;;;;;;;;;;;;;;11,349;LINESTRING (3582832.043515296 5418339.457072257, 3582828.323199956 5418328.734937212);[129, 396, 397, 127] +130,0;;;;;;;;;;;;;;;;;;;7,268;LINESTRING (3582297.69077696 5423090.259813013, 3582296.566175957 5423097.439776987);[259, 132, 258, 131] +131,0;;;;;;;;;;;;;;;;;;;248,267;LINESTRING (3582271.579936838 5423344.446163274, 3582296.566175957 5423097.439776987);[130, 132, 325, 326] +136,0;;;;;;;;;;;;;;;;;;;42,014;LINESTRING (3582089.412290822 5418217.918222933, 3582131.194170839 5418222.326083644);[137, 93] +137,0;;;;;;;;;;;;;;;;;;;71,561;LINESTRING (3582130.822608223 5418293.885347415, 3582130.792579819 5418285.464870155, 3582131.194170839 5418222.326083644);[136, 333, 336, 93] +141,0;;;;;;;;;;;;;;;;;;;17,508;LINESTRING (3582130.865722763 5418308.39024382, 3582130.91595151 5418325.898428436);[336, 338, 142] +142,0;;;;;;;;;;;;;;;;;;;11,771;LINESTRING (3582142.687067545 5418325.860404311, 3582130.91595151 5418325.898428436);[338, 341, 141] +143,0;;;;;;;;;;;;;;;;;;;26,411;LINESTRING (3585895.331226221 5418800.686526361, 3585881.12488213 5418778.421756588);[96, 81] +147,0;;;;;;;;;;;;;;;;;;;40,732;LINESTRING (3582226.030797386 5423684.137383967, 3582186.236131692 5423692.82655952);[148, 149, 150, 88] +148,0;;;;;;;;;;;;;;;;;;;92,816;LINESTRING (3582199.451486558 5423625.449358163, 3582166.080068027 5423642.709221301, 3582164.703513535 5423647.616401671, 3582179.222982473 5423675.059740191, 3582186.236131692 5423692.82655952);[147, 150, 88, 409] +149,0;;;;;;;;;;;;;;;;;;;36,221;LINESTRING (3582262.077217509 5423680.709920227, 3582251.181945312 5423681.739158154, 3582239.370981682 5423683.255430489, 3582226.030797386 5423684.137383967);[147, 150, 151, 152] +150,0;;;;;;;;;;;;;;;;;;;64,529;LINESTRING (3582199.451486558 5423625.449358163, 3582209.494166766 5423646.942634913, 3582221.519141272 5423670.634183969, 3582226.030797386 5423684.137383967);[147, 148, 149, 409] +152,0;;;;;;;;;;;;;;;;;;;126,427;LINESTRING (3582242.799488102 5423555.780815348, 3582245.755696835 5423576.379780923, 3582256.032545045 5423647.985738332, 3582262.077217509 5423680.709920227);[326, 10, 149, 151] +153,0;;;;;;;;;;;;;;;;;;;8,595;LINESTRING (3583386.472661688 5421864.164470384, 3583388.826183167 5421872.43073407);[33, 67, 459, 154] +154,0;;;;;;;;;;;;;;;;;;;48,512;LINESTRING (3583342.201544036 5421884.480189316, 3583349.640372582 5421884.001933062, 3583359.49441193 5421882.770081744, 3583366.201979817 5421880.712560684, 3583379.835451161 5421876.211503318, 3583388.826183167 5421872.43073407);[67, 153, 187, 188] +155,0;;;;;;;;;;;;;;;;;;;45,914;LINESTRING (3583449.745672354 5421791.187983864, 3583473.099647314 5421810.057623597, 3583487.254043235 5421817.277183779);[198, 365, 19, 156] +159,0;;;;;;;;;;;;;;;;;;;57,914;LINESTRING (3585943.11393133 5421422.145100231, 3585945.076576238 5421416.079876049, 3585947.54737634 5421401.780226877, 3585946.802110546 5421384.516709517, 3585943.894323151 5421376.29634135, 3585938.55303514 5421366.648052404);[164, 569, 157, 158] +161,0;;;;;;;;;;;;;;;;;;;103,106;LINESTRING (3582291.398928416 5422943.788230184, 3582300.467569605 5422947.459319536, 3582332.92643133 5422952.087854819, 3582392.185082612 5422964.45409207);[160, 162, 259, 183] +166,0;;;;;;;;;;;;;;;;;;;50,778;LINESTRING (3582252.919961168 5422765.752598736, 3582255.979031394 5422754.608039632, 3582258.596766664 5422744.569264251, 3582272.453739394 5422719.268878044);[165, 167, 171, 183] +167,0;;;;;;;;;;;;;;;;;;;43,67;LINESTRING (3582231.099202738 5422719.481393549, 3582238.991507711 5422722.945916368, 3582245.731954406 5422725.0141944, 3582255.492829293 5422725.503121263, 3582265.008049538 5422723.2744283, 3582272.453739394 5422719.268878044);[171, 165, 166] +171,0;;;;;;;;;;;;;;;;;;;51,198;LINESTRING (3582252.919961168 5422765.752598736, 3582240.333607845 5422736.769357313, 3582231.099202738 5422719.481393549);[167, 166, 183] +175,0;;;;;;;;;;;;;;;;;;;13,363;LINESTRING (3584170.873573343 5421795.615898565, 3584168.673585868 5421808.796878516);[176, 58] +176,0;;;;;;;;;;;;;;;;;;;157,821;LINESTRING (3584011.361716837 5421816.912011317, 3584054.79077416 5421813.273432212, 3584144.431979001 5421806.628832849, 3584156.507874109 5421807.289487467, 3584168.673585868 5421808.796878516);[204, 175, 212, 58] +178,0;;;;;;;;;;;;;;;;;;;13,979;LINESTRING (3583408.947986386 5419796.710159586, 3583413.974870599 5419791.012522109, 3583416.423867266 5419785.120601438);[177, 179, 506, 30] +181,0;;;;;;;;;;;;;;;;;;;29,666;LINESTRING (3583075.998701048 5418987.904776302, 3583078.583722542 5418985.184785839, 3583097.24970289 5418967.210070876);[101, 83, 180, 182] +183,0;;;;;;;;;;;;;;;;;;;182,146;LINESTRING (3582291.398928416 5422943.788230184, 3582252.919961168 5422765.752598736);[161, 259, 166, 171] +184,0;;;;;;;;;;;;;;;;;;;11,921;LINESTRING (3585778.745333958 5421138.163552269, 3585772.817310669 5421148.505828262);[228, 236, 185, 186] +187,0;;;;;;;;;;;;;;;;;;;16,393;LINESTRING (3583341.86769103 5421868.090972528, 3583342.201544036 5421884.480189316);[455, 459, 154, 188] +191,0;;;;;;;;;;;;;;;;;;;30,979;LINESTRING (3583534.862811278 5421524.520477332, 3583549.877478602 5421507.649455118, 3583555.461306171 5421501.381918267);[192, 172, 220, 509] +194,0;;;;;;;;;;;;;;;;;;;358,259;LINESTRING (3586319.570920296 5418748.394761136, 3586309.247222659 5418733.596955339, 3586291.905519275 5418705.52080172, 3586278.924446007 5418687.567469204, 3586265.555439145 5418670.509143384, 3586250.116991998 5418651.639151066, 3586246.816388364 5418647.405817675, 3586238.345365493 5418636.552144493, 3586228.991249742 5418631.112918916, 3586218.374878486 5418630.948806119, 3586204.941270022 5418634.656512266, 3586185.028027501 5418637.685723579, 3586165.152426253 5418636.855863143, 3586158.755878435 5418635.544632603, 3586152.330000828 5418634.232956471, 3586146.152712669 5418632.969619667, 3586128.340754985 5418627.19972843, 3586107.775868047 5418622.088152355, 3586099.732441937 5418620.095302732, 3586070.391213799 5418609.63166086, 3586052.146820327 5418606.213446411, 3586025.027002725 5418604.816285877);[457, 437, 23] +197,0;;;;;;;;;;;;;;;;;;;23,383;LINESTRING (3583419.807714701 5421701.477398681, 3583405.101654443 5421711.012171348, 3583400.187321898 5421714.197668352);[546, 198, 199, 563] +198,0;;;;;;;;;;;;;;;;;;;92,553;LINESTRING (3583449.745672354 5421791.187983864, 3583423.543907249 5421762.787866049, 3583400.187321898 5421714.197668352);[197, 199, 365, 155] +200,0;;;;;;;;;;;;;;;;;;;28,678;LINESTRING (3582924.038750743 5423561.321927079, 3582928.114297753 5423562.18346991, 3582941.481789985 5423566.386824337, 3582950.90850561 5423571.009805694);[201, 202] +201,0;;;;;;;;;;;;;;;;;;;375,254;LINESTRING (3582816.49659119 5423921.365011611, 3582864.577172423 5423795.978346515, 3582950.90850561 5423571.009805694);[200, 202, 572] +202,0;;;;;;;;;;;;;;;;;;;523,363;LINESTRING (3583399.067506523 5423481.599602954, 3583362.637033133 5423505.636161944, 3583332.06084625 5423518.426146393, 3583296.136305181 5423526.79830948, 3583269.477026921 5423528.045866402, 3583245.354233027 5423526.261499721, 3583219.392577753 5423522.992640789, 3583185.214033368 5423512.593646365, 3583152.162036602 5423499.853598149, 3583085.992376556 5423471.870438207, 3583073.331576433 5423469.401353352, 3583060.637677195 5423467.677047939, 3583047.751739568 5423467.529380353, 3583034.554804842 5423470.057759356, 3583016.065264816 5423476.689541549, 3583006.38852955 5423481.951111134, 3582999.906942825 5423486.68191437, 3582985.678454353 5423499.928769151, 3582978.153912889 5423509.749532366, 3582967.323534924 5423530.977788882, 3582958.055461933 5423551.606445843, 3582950.90850561 5423571.009805694);[195, 200, 201, 557] +203,0;;;;;;;;;;;;;;;;;;;111,385;LINESTRING (3584079.789657986 5422001.786179789, 3584069.083589161 5421981.769958352, 3584054.629870758 5421961.430272355, 3584033.807862787 5421936.667709721, 3584006.679011613 5421920.897690015);[204, 205, 206, 442] +204,0;;;;;;;;;;;;;;;;;;;104,606;LINESTRING (3584011.361716837 5421816.912011317, 3584010.970970041 5421859.841150785, 3584011.424023878 5421891.526472143, 3584010.655955316 5421907.954783727, 3584006.679011613 5421920.897690015);[203, 205, 206, 176, 212] +205,0;;;;;;;;;;;;;;;;;;;1267,296;LINESTRING (3583087.261012267 5422752.206477113, 3583100.694976857 5422741.272703293, 3583120.767801738 5422723.975531211, 3583139.139451921 5422704.795493301, 3583166.342025802 5422670.853596749, 3583190.536910118 5422632.239728868, 3583200.529498226 5422618.696498274, 3583210.312131819 5422608.909735037, 3583257.956276431 5422570.390610062, 3583282.744515723 5422553.920836365, 3583301.487798243 5422544.757601577, 3583330.789036069 5422533.772438911, 3583368.109813104 5422519.203454907, 3583394.55045064 5422508.409399237, 3583420.011426483 5422495.020250984, 3583445.239750222 5422479.55884487, 3583461.868516081 5422466.782845518, 3583482.99018968 5422447.61172564, 3583506.451491059 5422422.458180606, 3583549.01433939 5422369.705659824, 3583589.853454679 5422318.573797508, 3583612.80821089 5422288.663535781, 3583643.79088997 5422254.168825801, 3583674.129601012 5422225.003674883, 3583701.798722356 5422203.306639437, 3583743.172970761 5422175.742518796, 3583835.91285142 5422128.340300301, 3583854.634077685 5422118.366556133, 3583880.114808904 5422100.452654096, 3583905.416500942 5422078.865557685, 3583922.973140453 5422061.566646082, 3583938.428570713 5422043.157196226, 3583952.231280774 5422025.000962258, 3583963.404955947 5422008.173280857, 3583981.067808933 5421973.157100139, 3584006.679011613 5421920.897690015);[203, 204, 206] +206,0;;;;;;;;;;;;;;;;;;;48,504;LINESTRING (3583961.813548134 5421902.702649861, 3583972.912910067 5421906.384793757, 3583999.207312061 5421916.747378148, 3584006.679011613 5421920.897690015);[554, 203, 204, 205, 498, 342] +207,0;;;;;;;;;;;;;;;;;;;64,655;LINESTRING (3585499.839289737 5418782.674763974, 3585495.762671066 5418803.201112838, 3585490.818039001 5418816.250567152, 3585462.406201291 5418807.350487736);[208, 209, 210] +208,0;;;;;;;;;;;;;;;;;;;22,672;LINESTRING (3585499.680841824 5418760.003480218, 3585499.839289737 5418782.674763974);[11, 428, 207, 209, 210] +209,0;;;;;;;;;;;;;;;;;;;319,378;LINESTRING (3585813.62838255 5418797.070770087, 3585786.617439231 5418784.36422155, 3585755.573360538 5418774.977219187, 3585725.770786029 5418769.736144801, 3585697.919456626 5418767.317109473, 3585664.420530462 5418766.86924389, 3585627.274003627 5418769.480046873, 3585556.170783412 5418778.066003101, 3585499.839289737 5418782.674763974);[98, 108, 207, 208, 210] +210,0;;;;;;;;;;;;;;;;;;;495,82;LINESTRING (3585126.10429676 5418520.048892694, 3585137.115087857 5418552.518306906, 3585150.83826292 5418586.486274229, 3585160.954619803 5418605.472061745, 3585167.195328247 5418616.523565843, 3585180.251198549 5418634.619942039, 3585195.732189109 5418654.777790575, 3585220.573135594 5418682.92044811, 3585243.660322947 5418702.961070447, 3585262.662036498 5418717.767111127, 3585299.21954291 5418740.24963716, 3585329.660125413 5418755.586797326, 3585358.087807446 5418765.876814315, 3585383.455149894 5418772.482882623, 3585403.648210369 5418777.452607, 3585433.094300574 5418781.084755893, 3585473.72435253 5418783.709388934, 3585499.839289737 5418782.674763974);[207, 208, 209, 308] +211,0;;;;;;;;;;;;;;;;;;;22,1;LINESTRING (3583338.445962942 5421576.939050929, 3583346.158150527 5421575.853101007, 3583359.971551475 5421572.111034743);[288, 410] +216,0;;;;;;;;;;;;;;;;;;;489,711;LINESTRING (3586224.191844028 5419415.798041473, 3586223.574840655 5419444.319357549, 3586223.452659734 5419459.33370909, 3586210.114323495 5419535.732554738, 3586200.204808954 5419586.712440602, 3586191.238388846 5419617.485047813, 3586178.418551004 5419648.998976852, 3586169.918062521 5419664.818190162, 3586155.632970794 5419687.255286056, 3586134.561544206 5419714.715345565, 3586114.795608883 5419737.890987311, 3586097.770806625 5419756.871105787, 3586077.199076864 5419785.718355455, 3586060.194185657 5419817.201297957, 3586049.528566542 5419845.078115821, 3586045.918461365 5419859.037555962);[232, 233, 76, 217] +217,0;;;;;;;;;;;;;;;;;;;657,571;LINESTRING (3585840.568238284 5420472.249523454, 3585841.406047024 5420450.216364298, 3585845.528165658 5420382.484316447, 3585857.364926121 5420310.332845768, 3585871.907052226 5420250.091457818, 3585888.27258997 5420197.619899221, 3585904.6189205 5420160.687110251, 3585923.682750105 5420123.929724838, 3585948.288684431 5420085.32241018, 3585983.728560388 5420037.371989486, 3586000.723836696 5420009.77066024, 3586012.753954233 5419984.183927907, 3586020.435836239 5419964.814704157, 3586028.766455721 5419938.09198185, 3586045.918461365 5419859.037555962);[229, 230, 76, 216] +223,0;;;;;;;;;;;;;;;;;;;12,035;LINESTRING (3583801.016596019 5420188.435216274, 3583799.5613688 5420200.381716754);[224, 226, 227, 114] +224,0;;;;;;;;;;;;;;;;;;;470,83;LINESTRING (3583397.607124295 5420025.018017646, 3583420.727627263 5420020.32517528, 3583446.324194187 5420017.237828248, 3583472.307135866 5420017.237454362, 3583503.345216008 5420022.373875448, 3583531.889578856 5420030.509690852, 3583562.439527635 5420044.726629388, 3583593.405840364 5420067.347855296, 3583619.669863785 5420097.473506051, 3583643.373678737 5420135.013299672, 3583662.693553451 5420158.839477222, 3583686.273957268 5420177.702073051, 3583711.206743473 5420190.467418506, 3583746.214963217 5420196.732647159, 3583756.627539574 5420197.567569222, 3583773.235985747 5420198.829296736, 3583791.133131693 5420199.710013009, 3583799.5613688 5420200.381716754);[388, 114, 507, 223] +225,0;;;;;;;;;;;;;;;;;;;192,511;LINESTRING (3583784.26775192 5419930.151661415, 3583792.195856248 5419926.077421692, 3583801.131522685 5419925.210642586, 3583810.129616063 5419928.482579338, 3583821.370090818 5419939.629970117, 3583832.616372797 5419950.388166533, 3583840.403372449 5419955.210290745, 3583845.513840254 5419955.676444034, 3583851.036378222 5419954.580452902, 3583853.449649881 5419951.090747896, 3583854.298853328 5419946.787786621, 3583851.619380353 5419941.653145859, 3583825.2582488 5419916.552541154, 3583811.628038999 5419907.326873751, 3583803.380269231 5419906.813598466, 3583797.456023147 5419908.292906146, 3583789.165660639 5419910.125968584, 3583785.177938406 5419913.981347192, 3583781.286491776 5419918.260849847, 3583784.26775192 5419930.151661415);[226] +226,0;;;;;;;;;;;;;;;;;;;260,051;LINESTRING (3583801.016596019 5420188.435216274, 3583800.604990717 5420165.582339144, 3583795.30410439 5420067.075042636, 3583792.63651029 5420027.492612496, 3583783.969583125 5419978.777018351, 3583780.294895422 5419954.974155942, 3583780.997709841 5419941.381265058, 3583784.26775192 5419930.151661415);[225, 227, 223] +227,0;;;;;;;;;;;;;;;;;;;122,692;LINESTRING (3583801.016596019 5420188.435216274, 3583814.90059458 5420186.586162557, 3583825.521284036 5420186.745837208, 3583848.258986002 5420191.403484985, 3583875.77880626 5420197.868360596, 3583918.801280435 5420215.734222071);[226, 223] +233,0;;;;;;;;;;;;;;;;;;;63,418;LINESTRING (3586232.809972253 5419353.997659025, 3586227.788373708 5419362.929751897, 3586223.934940205 5419387.363322197, 3586224.191844028 5419415.798041473);[450, 451, 232, 216] +234,0;;;;;;;;;;;;;;;;;;;16,516;LINESTRING (3585693.772335263 5420526.062660709, 3585693.540450027 5420542.576946538);[235, 229, 231] +236,0;;;;;;;;;;;;;;;;;;;34,349;LINESTRING (3585783.034666392 5421105.227193544, 3585785.056539728 5421111.976695068, 3585785.371655105 5421117.220547798, 3585783.634063272 5421125.814241839, 3585778.745333958 5421138.163552269);[228, 214, 184, 250] +238,0;;;;;;;;;;;;;;;;;;;151,659;LINESTRING (3585639.696878777 5421237.534951363, 3585636.973606613 5421242.554133674, 3585631.699579092 5421247.567492899, 3585630.52199876 5421254.556978142, 3585641.241152777 5421264.877118447, 3585659.443705061 5421273.321256065, 3585697.310629048 5421272.357298426, 3585706.287813251 5421277.73435154, 3585716.317229635 5421291.425471036, 3585723.38619061 5421292.668762312, 3585738.69260365 5421273.994875311);[193, 237, 263] +240,0;;;;;;;;;;;;;;;;;;;816,735;LINESTRING (3583333.141862719 5421526.783880222, 3583339.836948446 5421497.163278768, 3583348.898740683 5421469.557978516, 3583358.214156071 5421445.093177946, 3583375.482675741 5421394.641631207, 3583385.051819655 5421346.866811567, 3583389.090654563 5421311.589397618, 3583390.766284843 5421284.3519415, 3583391.37778234 5421266.01922792, 3583388.74054137 5421224.768975323, 3583381.737752874 5421185.755881088, 3583369.542110353 5421142.538483911, 3583353.265113739 5421105.577957551, 3583340.881968361 5421081.734128269, 3583325.407677561 5421055.285824581, 3583300.861602482 5421021.761223089, 3583272.345834577 5420989.46770086, 3583206.602516331 5420915.218656193, 3583189.496332688 5420895.876252085, 3583169.721675623 5420870.15397613, 3583151.287358894 5420842.038079099, 3583138.157013597 5420818.061249734, 3583129.575400323 5420798.734965336);[288, 241, 242, 287] +241,0;;;;;;;;;;;;;;;;;;;142,163;LINESTRING (3583087.276100072 5420663.660653774, 3583095.346741918 5420704.502239391, 3583100.332807032 5420726.544485048, 3583108.807858801 5420750.574155709, 3583117.418871041 5420771.380199896, 3583129.575400323 5420798.734965336);[268, 240, 242, 247] +242,0;;;;;;;;;;;;;;;;;;;21,473;LINESTRING (3583112.407101271 5420811.537357372, 3583121.96203556 5420803.448812255, 3583129.575400323 5420798.734965336);[240, 241] +247,0;;;;;;;;;;;;;;;;;;;79,932;LINESTRING (3583087.276100072 5420663.660653774, 3583081.406357947 5420608.925898899, 3583079.907216431 5420584.088158568);[268, 15, 241, 248] +248,0;;;;;;;;;;;;;;;;;;;91,96;LINESTRING (3583073.015335964 5420663.837420132, 3583067.278224164 5420626.756850039, 3583063.491968248 5420596.990918191, 3583065.300220613 5420587.808024532, 3583079.907216431 5420584.088158568);[267, 268, 15, 247] +249,0;;;;;;;;;;;;;;;;;;;16,378;LINESTRING (3585744.990763642 5420957.527062913, 3585738.477427324 5420972.554337371);[483, 393, 246, 250] +259,0;;;;;;;;;;;;;;;;;;;147,534;LINESTRING (3582291.398928416 5422943.788230184, 3582300.802972523 5422996.171872706, 3582302.344981316 5423011.822465504, 3582301.635884559 5423034.024612722, 3582297.69077696 5423090.259813013);[161, 130, 258, 183] +263,0;;;;;;;;;;;;;;;;;;;11,042;LINESTRING (3585738.69260365 5421273.994875311, 3585747.488505946 5421280.670615391);[264, 237, 238, 186] +264,0;;;;;;;;;;;;;;;;;;;35,082;LINESTRING (3585738.823790619 5421314.540768285, 3585742.339144886 5421305.685210732, 3585745.14672563 5421294.238194975, 3585747.488505946 5421280.670615391);[263, 531, 186, 571] +265,0;;;;;;;;;;;;;;;;;;;37,168;LINESTRING (3583992.117513347 5422167.777126325, 3583961.316491237 5422188.580203505);[266, 452] +266,0;;;;;;;;;;;;;;;;;;;1600,922;LINESTRING (3582993.841735255 5423381.856983034, 3583040.808978362 5423318.421590025, 3583095.833471362 5423242.470994668, 3583130.287463351 5423192.319649789, 3583161.607534923 5423147.950190152, 3583177.338990974 5423122.958020521, 3583204.69301889 5423078.273735999, 3583222.841315988 5423045.053366805, 3583238.271786063 5423013.761218009, 3583255.858289257 5422976.973179556, 3583268.019250143 5422947.267329041, 3583275.383646564 5422927.656258635, 3583285.123169819 5422904.554702145, 3583304.550707467 5422851.031901926, 3583318.575981673 5422806.949688996, 3583329.216869084 5422773.583990872, 3583348.735131771 5422717.971557491, 3583366.701138922 5422672.580283336, 3583384.115137189 5422633.242860629, 3583395.17651491 5422611.97432391, 3583409.610494302 5422584.238196032, 3583420.406300193 5422567.014518936, 3583431.146388419 5422550.090349349, 3583441.66973621 5422533.9415663, 3583458.840258797 5422510.428811084, 3583478.383110019 5422485.10522608, 3583506.099480329 5422453.274873441, 3583538.236888702 5422419.375315155, 3583574.995695171 5422386.17927045, 3583605.453917027 5422361.676119607, 3583640.986712966 5422337.950060879, 3583675.744512402 5422317.538376082, 3583712.240778444 5422298.988326816, 3583762.809078173 5422275.989490129, 3583841.260729103 5422248.282888213, 3583872.310330408 5422234.768515084, 3583909.588704708 5422217.410548242, 3583939.622721318 5422201.767864584, 3583961.316491237 5422188.580203505);[49, 52, 265] +268,0;;;;;;;;;;;;;;;;;;;14,263;LINESTRING (3583087.276100072 5420663.660653774, 3583079.013962809 5420663.693234664, 3583073.015335964 5420663.837420132);[267, 241, 247, 248] +270,0;;;;;;;;;;;;;;;;;;;5,519;LINESTRING (3583827.285045124 5420303.475146925, 3583828.84554065 5420298.181803914);[292, 293, 271, 272] +271,0;;;;;;;;;;;;;;;;;;;24,217;LINESTRING (3583835.675702324 5420274.948397573, 3583828.84554065 5420298.181803914);[270, 272, 276, 285, 286] +272,0;;;;;;;;;;;;;;;;;;;42,724;LINESTRING (3583869.420272727 5420311.561286928, 3583828.84554065 5420298.181803914);[270, 271] +273,0;;;;;;;;;;;;;;;;;;;22,407;LINESTRING (3583848.363724095 5420233.183148518, 3583841.802602783 5420254.60753302);[113, 274, 275, 276, 283, 284] +274,0;;;;;;;;;;;;;;;;;;;44,663;LINESTRING (3583797.612038115 5420248.125806499, 3583841.802602783 5420254.60753302);[273, 275, 276] +275,0;;;;;;;;;;;;;;;;;;;48,801;LINESTRING (3583887.313804007 5420272.221390544, 3583841.802602783 5420254.60753302);[273, 274, 276] +276,0;;;;;;;;;;;;;;;;;;;21,244;LINESTRING (3583835.675702324 5420274.948397573, 3583835.737516255 5420274.737989584, 3583841.802602783 5420254.60753302);[271, 273, 274, 275, 285, 286] +277,0;;;;;;;;;;;;;;;;;;;39,403;LINESTRING (3583850.499861623 5420420.160022383, 3583851.596778533 5420412.056708727, 3583849.16113332 5420403.399726196, 3583845.746291393 5420395.506630057, 3583839.137059341 5420383.583451588);[293, 278, 122, 124] +283,0;;;;;;;;;;;;;;;;;;;50,317;LINESTRING (3583798.535710198 5420226.182839446, 3583848.363724095 5420233.183148518);[113, 284, 273] +284,0;;;;;;;;;;;;;;;;;;;53,321;LINESTRING (3583898.034503282 5420252.572595725, 3583848.363724095 5420233.183148518);[113, 283, 273] +285,0;;;;;;;;;;;;;;;;;;;41,631;LINESTRING (3583794.335581484 5420270.033411319, 3583835.675702324 5420274.948397573);[276, 286, 271] +286,0;;;;;;;;;;;;;;;;;;;47,17;LINESTRING (3583879.541289791 5420292.292743628, 3583835.675702324 5420274.948397573);[276, 285, 271] +289,0;;;;;;;;;;;;;;;;;;;5,057;LINESTRING (3583885.047696659 5421906.18479139, 3583880.32969559 5421908.004687844);[290, 291, 529, 343] +292,0;;;;;;;;;;;;;;;;;;;37,34;LINESTRING (3583790.377033849 5420297.814846977, 3583827.285045124 5420303.475146925);[293, 270] +293,0;;;;;;;;;;;;;;;;;;;91,326;LINESTRING (3583839.137059341 5420383.583451588, 3583824.536437709 5420373.64237033, 3583816.064475351 5420355.417826396, 3583815.934680999 5420344.059263947, 3583817.764447988 5420334.020433694, 3583821.753019628 5420322.289992517, 3583827.285045124 5420303.475146925);[292, 270, 277, 124] +294,0;;;;;;;;;;;;;;;;;;;28,24;LINESTRING (3586252.109231682 5419323.18470615, 3586257.28500473 5419327.992097333, 3586260.236061661 5419334.411304928, 3586260.515704156 5419341.456579037, 3586258.074134731 5419348.081573434);[451, 295, 296, 90] +295,0;;;;;;;;;;;;;;;;;;;752,599;LINESTRING (3586717.309073012 5418833.383146264, 3586651.399060289 5418850.289288361, 3586598.964528937 5418864.580135658, 3586546.877955925 5418879.622119335, 3586497.306612966 5418897.050573826, 3586464.234525044 5418911.209188296, 3586433.029919663 5418929.323405196, 3586402.050107816 5418951.401112696, 3586372.913374681 5418977.122550461, 3586351.604748735 5419001.196754094, 3586332.032660762 5419027.266711826, 3586310.645357303 5419062.607585534, 3586296.055757714 5419096.062676052, 3586282.861559225 5419136.024180509, 3586276.096987805 5419166.597142402, 3586271.063460763 5419197.141274933, 3586264.973223478 5419240.538538353, 3586256.401556332 5419306.888957486, 3586252.109231682 5419323.18470615);[296, 435, 294] +296,0;;;;;;;;;;;;;;;;;;;28,144;LINESTRING (3586227.171820072 5419328.827795424, 3586232.045631621 5419323.764268888, 3586238.483696064 5419320.916195221, 3586245.518788396 5419320.713546528, 3586252.109231682 5419323.18470615);[449, 450, 294, 295] +298,0;;;;;;;;;;;;;;;;;;;24,105;LINESTRING (3583619.454297135 5421782.330914242, 3583639.896668258 5421769.55700773);[297, 299, 301, 566] +299,0;;;;;;;;;;;;;;;;;;;19,917;LINESTRING (3583651.779254806 5421785.541218635, 3583642.812573228 5421773.538332392, 3583639.896668258 5421769.55700773);[480, 297, 298, 479] +302,0;;;;;;;;;;;;;;;;;;;32,072;LINESTRING (3583598.142486649 5421814.957603848, 3583587.813414006 5421837.582645077, 3583584.849273019 5421844.14526955);[301, 303, 567, 120] +303,0;;;;;;;;;;;;;;;;;;;37,703;LINESTRING (3583570.417209848 5421840.302696271, 3583575.64247118 5421836.421260913, 3583583.61515133 5421828.699098327, 3583591.612865173 5421819.798279704, 3583598.142486649 5421814.957603848);[65, 301, 302, 567] +304,0;;;;;;;;;;;;;;;;;;;66,06;LINESTRING (3584712.509552458 5423124.448694097, 3584706.249199702 5423131.850472455, 3584677.4990572 5423180.332827413);[425, 429] +305,0;;;;;;;;;;;;;;;;;;;1637,384;LINESTRING (3584832.795055511 5419372.066949954, 3584824.615347766 5419378.115825496, 3584800.711722123 5419393.535911894, 3584631.314360658 5419503.939416625, 3584605.074530769 5419520.214705325, 3584599.205814708 5419523.306861907, 3584589.246429917 5419524.902097092, 3584580.42383521 5419523.578106124, 3584572.34761669 5419521.386727646, 3584439.664405061 5419426.420736551, 3584354.850805119 5419364.394234415, 3584316.762465606 5419336.511175352, 3584143.033001895 5419211.711899682, 3584131.712727907 5419201.419164439, 3583841.384472321 5419110.710205954, 3583814.323345505 5419183.626315525, 3583798.319662448 5419216.576876889, 3583723.774845284 5419319.735437751, 3583686.78973549 5419372.515105234, 3583673.710404559 5419399.281004017, 3583649.345147558 5419510.223360182, 3583635.588823339 5419540.605284953);[460, 306, 307, 57] +307,0;;;;;;;;;;;;;;;;;;;116,219;LINESTRING (3583573.840065908 5419634.836786724, 3583578.624505073 5419631.638332734, 3583591.641907941 5419604.048196706, 3583603.135685934 5419591.039747924, 3583611.016124045 5419575.986125193, 3583614.562658361 5419558.042284237, 3583635.588823339 5419540.605284953);[305, 306, 371, 370] +308,0;;;;;;;;;;;;;;;;;;;167,755;LINESTRING (3585126.10429676 5418520.048892694, 3585147.157504395 5418514.864301739, 3585154.503822306 5418514.030983209, 3585166.485734051 5418512.667802436, 3585178.847840034 5418513.30148123, 3585196.91083814 5418518.560466414, 3585219.01182454 5418524.481844761, 3585238.846247593 5418528.032832317, 3585250.713124405 5418527.958350786, 3585258.642401857 5418526.889371389, 3585271.193651258 5418521.864504945, 3585276.860473404 5418517.20158411, 3585280.588687369 5418514.144121621, 3585284.466501532 5418508.497273617);[210, 309, 310] +309,0;;;;;;;;;;;;;;;;;;;80,993;LINESTRING (3585354.979202897 5418548.272959285, 3585343.182418597 5418542.330707652, 3585325.514711734 5418532.817152673, 3585305.258850531 5418520.383199472, 3585284.466501532 5418508.497273617);[308, 310] +310,0;;;;;;;;;;;;;;;;;;;154,924;LINESTRING (3585200.453021519 5418381.723023023, 3585201.858621785 5418388.607420987, 3585213.155233069 5418415.319601706, 3585226.772886217 5418441.789193855, 3585250.1635447 5418475.148750977, 3585256.363165109 5418483.129755802, 3585266.137373518 5418495.703618449, 3585275.316526788 5418502.106222752, 3585284.466501532 5418508.497273617);[334, 335, 308, 309] +317,0;;;;;;;;;;;;;;;;;;;19,443;LINESTRING (3582854.22676626 5418293.125774005, 3582863.391651882 5418279.45833245, 3582865.092891626 5418277.003187062);[129, 404, 318] +319,0;;;;;;;;;;;;;;;;;;;150,774;LINESTRING (3582162.624487629 5423789.515234597, 3582153.384378055 5423783.650570363, 3582115.703987972 5423756.833433543, 3582040.758576311 5423700.792385817);[322, 527] +322,0;;;;;;;;;;;;;;;;;;;100,223;LINESTRING (3582162.624487629 5423789.515234597, 3582190.976220218 5423807.50794663, 3582231.019896825 5423835.483933489, 3582246.224911973 5423844.729234097);[323, 527, 319] +323,0;;;;;;;;;;;;;;;;;;;76,021;LINESTRING (3582272.667932109 5423773.687866597, 3582270.123088637 5423786.753175497, 3582261.784892489 5423807.129706562, 3582255.693993149 5423821.688740012, 3582253.021450311 5423828.523285061, 3582246.224911973 5423844.729234097);[322, 518, 151] +324,0;;;;;;;;;;;;;;;;;;;35,891;LINESTRING (3586268.739741603 5420810.896990154, 3586242.188376831 5420835.046058137);[490, 431, 117, 126] +325,0;;;;;;;;;;;;;;;;;;;12,703;LINESTRING (3582259.412264522 5423340.796069949, 3582271.579936838 5423344.446163274);[131, 326] +326,0;;;;;;;;;;;;;;;;;;;214,756;LINESTRING (3582242.799488102 5423555.780815348, 3582240.871785989 5423540.94763242, 3582239.928935731 5423523.426103735, 3582242.850395334 5423497.263450104, 3582248.006858877 5423474.059152924, 3582256.368879324 5423445.151609976, 3582259.040279394 5423435.92560363, 3582264.578799075 5423411.169743332, 3582271.579936838 5423344.446163274);[131, 325, 10, 152] +328,0;;;;;;;;;;;;;;;;;;;33,872;LINESTRING (3583019.555245777 5419564.32402609, 3583014.613707983 5419530.814810535);[329, 330, 337] +330,0;;;;;;;;;;;;;;;;;;;44,457;LINESTRING (3583007.774163279 5419486.888496852, 3583011.436401823 5419509.311302986, 3583014.613707983 5419530.814810535);[328, 329, 503, 508] +333,0;;;;;;;;;;;;;;;;;;;57,974;LINESTRING (3582130.822608223 5418293.885347415, 3582115.38454096 5418293.925036213, 3582115.247992902 5418251.389061571);[336, 137] +334,0;;;;;;;;;;;;;;;;;;;40,618;LINESTRING (3585200.453021519 5418381.723023023, 3585195.807125536 5418380.039222813, 3585192.86863705 5418379.404823381, 3585187.756799185 5418378.937450985, 3585182.059783533 5418378.850454768, 3585176.738091923 5418379.158502336, 3585170.213386047 5418381.405846098, 3585161.306539707 5418385.007212991);[310, 335] +335,0;;;;;;;;;;;;;;;;;;;81,797;LINESTRING (3585191.338770262 5418300.463340065, 3585195.934266771 5418341.94467766, 3585197.259460963 5418355.535051866, 3585199.252262414 5418375.831706677, 3585200.453021519 5418381.723023023);[334, 402, 403, 310] +336,0;;;;;;;;;;;;;;;;;;;14,505;LINESTRING (3582130.865722763 5418308.39024382, 3582130.822608223 5418293.885347415);[137, 333, 141, 338] +337,0;;;;;;;;;;;;;;;;;;;9,86;LINESTRING (3583020.9937503 5419574.07804221, 3583019.555245777 5419564.32402609);[256, 328, 329, 398] +338,0;;;;;;;;;;;;;;;;;;;38,975;LINESTRING (3582142.687067545 5418325.860404311, 3582147.534889411 5418325.842804805, 3582147.484712796 5418308.334619461, 3582130.865722763 5418308.39024382);[141, 142, 336, 341] +341,0;;;;;;;;;;;;;;;;;;;46,685;LINESTRING (3582142.835618534 5418372.545409395, 3582142.687067545 5418325.860404311);[142, 338, 347, 348] +346,0;;;;;;;;;;;;;;;;;;;23,29;LINESTRING (3582958.694797962 5422307.716489626, 3582957.577502284 5422316.309069416, 3582959.241060438 5422322.707328689, 3582963.663188786 5422329.391371389);[361, 362] +347,0;;;;;;;;;;;;;;;;;;;141,01;LINESTRING (3582001.826071653 5418372.96239716, 3582142.835618534 5418372.545409395);[348, 341] +348,0;;;;;;;;;;;;;;;;;;;7,108;LINESTRING (3582142.855618832 5418379.653238288, 3582142.835618534 5418372.545409395);[347, 341] +349,0;;;;;;;;;;;;;;;;;;;16,806;LINESTRING (3586923.904293698 5418340.539490738, 3586937.249882393 5418330.325069667);[418, 436, 350] +350,0;;;;;;;;;;;;;;;;;;;20,33;LINESTRING (3586918.448848058 5418322.590696951, 3586937.249882393 5418330.325069667);[418, 349, 415] +351,0;;;;;;;;;;;;;;;;;;;80,412;LINESTRING (3585749.151057043 5422419.462946164, 3585754.85059066 5422424.355887068, 3585794.130724571 5422456.750702932, 3585812.575352789 5422468.714122765);[352, 354, 357, 316] +352,0;;;;;;;;;;;;;;;;;;;109,198;LINESTRING (3585726.229360309 5422424.582775131, 3585756.85489532 5422452.684084682, 3585781.846234943 5422476.394144204, 3585787.22185388 5422478.045290165, 3585797.004247518 5422477.161486664, 3585802.908584986 5422474.460506922, 3585812.575352789 5422468.714122765);[353, 354, 316, 351] +353,0;;;;;;;;;;;;;;;;;;;70,136;LINESTRING (3585692.218886602 5422370.679448104, 3585689.952476793 5422374.137260934, 3585689.683639201 5422382.086188908, 3585690.002827072 5422389.921806841, 3585693.372894292 5422394.278309616, 3585726.229360309 5422424.582775131);[352, 354, 357, 358] +354,0;;;;;;;;;;;;;;;;;;;23,561;LINESTRING (3585749.151057043 5422419.462946164, 3585743.446941773 5422421.533044586, 3585737.630631446 5422422.322257642, 3585726.229360309 5422424.582775131);[352, 353, 357, 351] +356,0;;;;;;;;;;;;;;;;;;;51,443;LINESTRING (3582523.683000169 5422982.473382042, 3582568.106605469 5423008.414285521);[355, 168, 169, 538] +357,0;;;;;;;;;;;;;;;;;;;74,974;LINESTRING (3585749.151057043 5422419.462946164, 3585692.964141004 5422371.30268559, 3585692.218886602 5422370.679448104);[353, 354, 358, 351] +359,0;;;;;;;;;;;;;;;;;;;314,529;LINESTRING (3582891.826910765 5422293.61833749, 3582849.188511984 5422476.024453947, 3582832.594923527 5422550.112827702, 3582825.968475727 5422565.019256195, 3582816.170015313 5422598.587450063);[165, 360, 361, 170] +360,0;;;;;;;;;;;;;;;;;;;163,358;LINESTRING (3582977.809662225 5422620.480187366, 3582929.246190858 5422615.085395589, 3582900.384270432 5422612.887275383, 3582882.727309523 5422610.66690447, 3582840.206628826 5422601.514234692, 3582825.741426367 5422599.01894033, 3582816.170015313 5422598.587450063);[170, 359] +361,0;;;;;;;;;;;;;;;;;;;68,586;LINESTRING (3582958.694797962 5422307.716489626, 3582950.536354099 5422307.839725174, 3582925.515004599 5422302.550884458, 3582891.826910765 5422293.61833749);[165, 359, 362, 346] +362,0;;;;;;;;;;;;;;;;;;;400,028;LINESTRING (3583021.545201198 5421934.340872562, 3583009.017703039 5421970.404139605, 3583005.290712951 5421986.899664738, 3583001.565130828 5422006.253827972, 3583001.101555671 5422026.057012017, 3583005.023253003 5422040.764442177, 3583019.657324738 5422087.599024615, 3583028.798383517 5422114.508334273, 3583032.74782156 5422139.638471486, 3583031.586093787 5422157.595957753, 3583028.839846723 5422177.131547137, 3583014.033150651 5422211.748216859, 3582998.906414853 5422244.246781955, 3582986.809439155 5422267.202469333, 3582977.63782885 5422286.141846225, 3582966.899499212 5422301.042497078, 3582963.256377982 5422305.037026595, 3582958.694797962 5422307.716489626);[448, 361, 363, 346] +365,0;;;;;;;;;;;;;;;;;;;29,141;LINESTRING (3583423.056268686 5421801.722303588, 3583441.928674484 5421796.843780957, 3583449.745672354 5421791.187983864);[34, 198, 366, 155] +372,0;;;;;;;;;;;;;;;;;;;67,848;LINESTRING (3583318.701543211 5418626.157704176, 3583307.201454143 5418693.024080602);[112, 373, 374, 375] +373,0;;;;;;;;;;;;;;;;;;;190,338;LINESTRING (3583210.941235028 5418855.484172635, 3583255.851717828 5418756.548160422, 3583273.266991904 5418735.496521588, 3583307.201454143 5418693.024080602);[372, 470, 374, 182] +374,0;;;;;;;;;;;;;;;;;;;153,286;LINESTRING (3583431.78871468 5418640.89527013, 3583436.442767597 5418658.227743381, 3583392.993959994 5418678.75614318, 3583329.361590664 5418692.598726797, 3583307.201454143 5418693.024080602);[372, 373, 376, 125] +375,0;;;;;;;;;;;;;;;;;;;230,342;LINESTRING (3583114.97224614 5418528.829044268, 3583145.723429724 5418545.916137705, 3583177.61291061 5418580.094123136, 3583318.701543211 5418626.157704176);[112, 372] +379,0;;;;;;;;;;;;;;;;;;;49,801;LINESTRING (3585188.150605717 5418277.75698015, 3585182.47835209 5418250.107423256, 3585179.423544928 5418228.748998303);[402, 403] +381,0;;;;;;;;;;;;;;;;;;;108,3;LINESTRING (3583309.837566727 5420065.02780815, 3583262.063856008 5420080.375775241, 3583217.614768393 5420085.685213589, 3583204.259223245 5420085.53038131);[387, 388, 105, 380] +382,0;;;;;;;;;;;;;;;;;;;11,315;LINESTRING (3583221.67776601 5419996.69519568, 3583213.90818384 5420004.921474666);[384, 559, 380, 383] +384,0;;;;;;;;;;;;;;;;;;;5,344;LINESTRING (3583221.67776601 5419996.69519568, 3583225.35017694 5419992.812472733);[385, 386, 559, 382] +386,0;;;;;;;;;;;;;;;;;;;67,16;LINESTRING (3583287.94645681 5419997.262040136, 3583280.308876278 5419989.773412076, 3583241.998563365 5419986.042394342, 3583225.35017694 5419992.812472733);[384, 385, 387] +387,0;;;;;;;;;;;;;;;;;;;71,214;LINESTRING (3583287.94645681 5419997.262040136, 3583309.837566727 5420065.02780815);[385, 386, 388, 381] +388,0;;;;;;;;;;;;;;;;;;;96,558;LINESTRING (3583397.607124295 5420025.018017646, 3583369.538530027 5420037.022636409, 3583318.515638347 5420062.243258651, 3583309.837566727 5420065.02780815);[224, 387, 507, 381] +390,0;;;;;;;;;;;;;;;;;;;12,228;LINESTRING (3582953.290296115 5423435.210724849, 3582950.288524874 5423432.596595285, 3582944.120133639 5423427.121179452);[48] +391,0;;;;;;;;;;;;;;;;;;;18,228;LINESTRING (3583236.061334794 5421986.571429813, 3583229.220833287 5421991.652580882, 3583221.130222192 5421997.015390785);[40, 392, 453] +402,0;;;;;;;;;;;;;;;;;;;22,929;LINESTRING (3585188.150605717 5418277.75698015, 3585191.338770262 5418300.463340065);[379, 403, 335] +403,0;;;;;;;;;;;;;;;;;;;70,523;LINESTRING (3585188.150605717 5418277.75698015, 3585190.852180521 5418270.857445972, 3585196.96576507 5418266.245755602, 3585203.977344174 5418265.262781677, 3585204.82672041 5418265.831907602, 3585209.748020371 5418269.177255242, 3585212.420530539 5418275.224529929, 3585212.429239373 5418281.375715827, 3585209.268435859 5418285.209383937, 3585204.515023737 5418289.118836245, 3585199.51246547 5418292.535072636, 3585194.426910607 5418296.584060317, 3585191.338770262 5418300.463340065);[379, 402, 335] +404,0;;;;;;;;;;;;;;;;;;;156,285;LINESTRING (3582820.313093515 5418140.649543236, 3582827.307597728 5418171.908718706, 3582835.278372254 5418217.920290939, 3582854.22676626 5418293.125774005);[129, 573, 317] +409,0;;;;;;;;;;;;;;;;;;;44,35;LINESTRING (3582175.921251253 5423587.995782964, 3582178.572500784 5423590.548701179, 3582187.596278889 5423605.63117321, 3582199.451486558 5423625.449358163);[568, 148, 150] +410,0;;;;;;;;;;;;;;;;;;;72,832;LINESTRING (3583367.963622828 5421643.440205107, 3583364.957479204 5421636.6546794, 3583362.677956442 5421630.780990262, 3583357.569819748 5421619.481446041, 3583349.601535439 5421601.431943982, 3583342.692335121 5421588.526008477, 3583338.445962942 5421576.939050929);[288, 199, 364, 211, 222] +411,0;;;;;;;;;;;;;;;;;;;137,357;LINESTRING (3586735.399811327 5418238.24223584, 3586724.436760615 5418240.986052685, 3586704.783870945 5418237.532707033, 3586671.610195499 5418235.760277874, 3586668.578520929 5418231.686599581, 3586670.982435277 5418203.471175214, 3586669.194479593 5418187.793140969, 3586668.561779447 5418182.255111558, 3586664.413517575 5418164.604984613);[415] +412,0;;;;;;;;;;;;;;;;;;;358,622;LINESTRING (3584697.162541877 5423000.337078269, 3584679.842020155 5422978.027714304, 3584657.168295027 5422960.308758887, 3584637.002204214 5422944.407700134, 3584523.096555422 5422892.468429145, 3584437.069988548 5422848.840347899, 3584387.191047077 5422827.440033913);[417, 430, 413, 414] +413,0;;;;;;;;;;;;;;;;;;;151,527;LINESTRING (3584257.677287462 5422750.465408597, 3584361.331493598 5422804.1792565, 3584387.191047077 5422827.440033913);[473, 474, 412, 414] +414,0;;;;;;;;;;;;;;;;;;;62,616;LINESTRING (3584394.206449926 5422889.657725183, 3584388.394831357 5422840.85048606, 3584387.191047077 5422827.440033913);[416, 417, 412, 413] +415,0;;;;;;;;;;;;;;;;;;;202,471;LINESTRING (3586918.448848058 5418322.590696951, 3586884.761381856 5418303.456860675, 3586851.71025776 5418283.47665972, 3586804.216660146 5418260.769198471, 3586766.667909507 5418247.004110076, 3586735.399811327 5418238.24223584);[418, 411, 350] +416,0;;;;;;;;;;;;;;;;;;;46,202;LINESTRING (3584383.690964809 5422934.647101942, 3584394.206449926 5422889.657725183);[417, 425, 426, 414] +417,0;;;;;;;;;;;;;;;;;;;342,97;LINESTRING (3584697.162541877 5423000.337078269, 3584683.905985745 5423018.221720335, 3584674.006929001 5423022.520482201, 3584610.08368974 5422994.82028217, 3584451.250336312 5422919.342225174, 3584410.735007236 5422900.007943028, 3584394.206449926 5422889.657725183);[416, 430, 412, 414] +418,0;;;;;;;;;;;;;;;;;;;18,76;LINESTRING (3586923.904293698 5418340.539490738, 3586918.448848058 5418322.590696951);[436, 349, 350, 415] +421,0;;;;;;;;;;;;;;;;;;;19,581;LINESTRING (3582546.035688966 5421045.568849143, 3582528.490567022 5421054.263032923);[422, 423, 74, 267] +422,0;;;;;;;;;;;;;;;;;;;235,012;LINESTRING (3582491.410848723 5421193.196203348, 3582480.939720676 5421190.494074329, 3582474.336984469 5421190.885777603, 3582460.502090862 5421184.174135417, 3582419.177794512 5421135.967715067, 3582455.526336819 5421096.395900019, 3582475.98908253 5421079.246714935, 3582504.361797658 5421063.538315358, 3582528.490567022 5421054.263032923);[424, 421, 423] +425,0;;;;;;;;;;;;;;;;;;;407,87;LINESTRING (3584712.509552458 5423124.448694097, 3584690.292760695 5423127.325433346, 3584673.401804761 5423121.128889009, 3584521.96939046 5423049.320584835, 3584414.87847349 5422999.87836777, 3584390.354054013 5422986.737438124, 3584380.869112054 5422963.713520526, 3584383.690964809 5422934.647101942);[416, 426, 429, 304] +426,0;;;;;;;;;;;;;;;;;;;386,484;LINESTRING (3584732.723325315 5423100.552232224, 3584662.593815189 5423068.096399178, 3584557.885545658 5423018.676478855, 3584442.228942506 5422964.354156461, 3584383.690964809 5422934.647101942);[416, 425, 429, 430] +428,0;;;;;;;;;;;;;;;;;;;31,199;LINESTRING (3585470.812449762 5418771.785309646, 3585485.646708163 5418765.149699669, 3585499.680841824 5418760.003480218);[208, 11] +429,0;;;;;;;;;;;;;;;;;;;31,299;LINESTRING (3584732.723325315 5423100.552232224, 3584712.509552458 5423124.448694097);[425, 426, 430, 304] +430,0;;;;;;;;;;;;;;;;;;;122,361;LINESTRING (3584697.162541877 5423000.337078269, 3584713.440786854 5423021.306997489, 3584746.603310639 5423063.845736886, 3584748.356632655 5423075.751912343, 3584745.07980204 5423085.957579481, 3584732.723325315 5423100.552232224);[417, 426, 429, 412] +431,0;;;;;;;;;;;;;;;;;;;20,932;LINESTRING (3586268.739741603 5420810.896990154, 3586270.045402221 5420790.005641835);[324, 490, 432, 433] +434,0;;;;;;;;;;;;;;;;;;;31,866;LINESTRING (3583152.748447992 5421480.54273826, 3583123.448389992 5421468.014926562);[525, 526] +435,0;;;;;;;;;;;;;;;;;;;265,805;LINESTRING (3586717.309073012 5418833.383146264, 3586651.060600882 5418746.048961343, 3586553.104568757 5418624.398032212);[436, 437, 295] +436,0;;;;;;;;;;;;;;;;;;;466,979;LINESTRING (3586923.904293698 5418340.539490738, 3586673.567975715 5418532.189063439, 3586669.290724973 5418535.604146459, 3586553.104568757 5418624.398032212);[418, 435, 437, 349] +437,0;;;;;;;;;;;;;;;;;;;267,526;LINESTRING (3586319.570920296 5418748.394761136, 3586334.869737237 5418744.03769598, 3586410.056314628 5418717.683370174, 3586453.176635377 5418699.709188097, 3586463.908375259 5418691.477568862, 3586486.2696224 5418677.186200059, 3586553.104568757 5418624.398032212);[194, 457, 435, 436] +438,0;;;;;;;;;;;;;;;;;;;23,703;LINESTRING (3585148.007078524 5421940.168026473, 3585124.795945278 5421935.364131183);[454, 358, 439, 440] +439,0;;;;;;;;;;;;;;;;;;;25,777;LINESTRING (3585146.053269178 5421920.783928926, 3585124.795945278 5421935.364131183);[454, 73, 438, 440] +442,0;;;;;;;;;;;;;;;;;;;13,423;LINESTRING (3584086.111731413 5422013.627545002, 3584079.789657986 5422001.786179789);[203, 444] +444,0;;;;;;;;;;;;;;;;;;;27,513;LINESTRING (3584086.111731413 5422013.627545002, 3584099.416698746 5422037.709581279);[442, 445] +445,0;;;;;;;;;;;;;;;;;;;470,461;LINESTRING (3584323.895719007 5422451.099298324, 3584229.24427315 5422269.695964096, 3584181.543872379 5422184.717707403, 3584121.298835844 5422075.702629169, 3584099.416698746 5422037.709581279);[444, 534, 535] +446,0;;;;;;;;;;;;;;;;;;;57,628;LINESTRING (3584010.082540473 5421366.497765564, 3584002.20724821 5421358.437196817, 3583971.015319211 5421324.141934651);[452, 278, 447] +447,0;;;;;;;;;;;;;;;;;;;60,356;LINESTRING (3584010.082540473 5421366.497765564, 3584005.178371065 5421350.973917461, 3583992.600322729 5421336.391108572, 3583971.015319211 5421324.141934651);[452, 446, 278] +449,0;;;;;;;;;;;;;;;;;;;511,919;LINESTRING (3585931.203686181 5418929.310631156, 3585946.080510216 5418983.687198365, 3585958.712982722 5419031.889263934, 3585969.7354907 5419063.215022698, 3585976.734377627 5419077.271308703, 3585988.971877279 5419099.695100456, 3586006.097746273 5419122.28329336, 3586037.820874196 5419156.898362666, 3586073.234827938 5419191.80417512, 3586117.253632195 5419234.996354702, 3586199.228058366 5419306.961496441, 3586227.171820072 5419328.827795424);[450, 484, 296, 457, 109] +450,0;;;;;;;;;;;;;;;;;;;28,506;LINESTRING (3586232.809972253 5419353.997659025, 3586227.628248692 5419349.101213145, 3586224.737357272 5419342.582845524, 3586224.576166559 5419335.461544, 3586227.171820072 5419328.827795424);[449, 451, 296, 233] +451,0;;;;;;;;;;;;;;;;;;;28,68;LINESTRING (3586258.074134731 5419348.081573434, 3586253.212056659 5419353.334352371, 3586246.683987439 5419356.314494002, 3586239.516469627 5419356.548461448, 3586232.809972253 5419353.997659025);[450, 294, 233, 90] +452,0;;;;;;;;;;;;;;;;;;;918,296;LINESTRING (3583992.117513347 5422167.777126325, 3584013.535419716 5422150.05841423, 3584036.519214649 5422130.083168947, 3584060.375603502 5422107.173565025, 3584086.711376488 5422074.902478422, 3584105.728465801 5422047.315078266, 3584118.514662846 5422025.651253197, 3584148.931197817 5421974.599563837, 3584169.147748825 5421924.417269897, 3584179.224011308 5421886.172628737, 3584184.118851883 5421862.954858266, 3584187.426808709 5421836.109240702, 3584191.300998885 5421799.43938316, 3584193.038230305 5421775.172837826, 3584192.471236773 5421739.937498792, 3584187.886057779 5421694.141275707, 3584178.489623069 5421639.329434176, 3584146.320181103 5421552.484091139, 3584125.430676634 5421509.778709148, 3584099.649601267 5421469.658010093, 3584060.891690097 5421418.55232384, 3584010.082540473 5421366.497765564);[265, 446, 447] +454,0;;;;;;;;;;;;;;;;;;;19,482;LINESTRING (3585146.053269178 5421920.783928926, 3585146.823644883 5421928.403919866, 3585148.007078524 5421940.168026473);[358, 73, 438, 439] +457,0;;;;;;;;;;;;;;;;;;;428,612;LINESTRING (3585931.203686181 5418929.310631156, 3585955.473037757 5418920.95296696, 3586029.717684267 5418884.546050167, 3586050.168073039 5418874.205583489, 3586149.265340677 5418828.840292105, 3586319.570920296 5418748.394761136);[449, 194, 484, 109, 437] +458,0;;;;;;;;;;;;;;;;;;;16,812;LINESTRING (3582755.613133283 5423194.215025615, 3582762.67621696 5423178.959073678);[281, 465, 53] +460,0;;;;;;;;;;;;;;;;;;;112,461;LINESTRING (3584832.795055511 5419372.066949954, 3584912.778771045 5419293.009068368);[57, 305] +465,0;;;;;;;;;;;;;;;;;;;839,195;LINESTRING (3582386.558139281 5423925.754751175, 3582390.712606702 5423915.327210697, 3582400.0904177 5423892.052013409, 3582415.905976441 5423861.99807784, 3582432.571458998 5423835.416023686, 3582452.227215718 5423808.277646024, 3582476.665711112 5423777.29486174, 3582558.487233784 5423692.87109066, 3582592.019658967 5423657.908089051, 3582608.258978609 5423636.937338726, 3582627.238924446 5423609.033157274, 3582639.546820549 5423584.911965857, 3582659.107670847 5423547.016907019, 3582682.298559726 5423496.584537221, 3582697.358164986 5423466.297668505, 3582713.610141167 5423426.284775206, 3582723.117122831 5423391.989084005, 3582732.589723376 5423338.8060008, 3582748.151140263 5423244.213385263, 3582750.180766417 5423231.885858857, 3582753.258788519 5423209.162759135, 3582754.036847677 5423202.166814058, 3582755.613133283 5423194.215025615);[518, 458, 53, 281] +471,0;;;;;;;;;;;;;;;;;;;133,34;LINESTRING (3584286.755986049 5422685.000963376, 3584162.628988329 5422636.296097573);[472, 473] +472,0;;;;;;;;;;;;;;;;;;;149,195;LINESTRING (3584225.342414827 5422595.14299911, 3584310.09844338 5422634.477145386, 3584297.430298046 5422665.808290779, 3584286.755986049 5422685.000963376);[473, 471] +473,0;;;;;;;;;;;;;;;;;;;71,634;LINESTRING (3584257.677287462 5422750.465408597, 3584264.899798896 5422733.700920064, 3584286.755986049 5422685.000963376);[471, 472, 474, 413] +474,0;;;;;;;;;;;;;;;;;;;188,549;LINESTRING (3584090.259970064 5422663.733960607, 3584257.677287462 5422750.465408597);[557, 535, 473, 413] +475,0;;;;;;;;;;;;;;;;;;;140,531;LINESTRING (3584484.418581547 5419190.889612273, 3584524.216449313 5419071.163562557, 3584527.953759279 5419057.294155302);[123, 476, 477, 478] +476,0;;;;;;;;;;;;;;;;;;;146,371;LINESTRING (3584484.418581547 5419190.889612273, 3584504.764401655 5419168.784931427, 3584532.725773858 5419081.592467653, 3584527.953759279 5419057.294155302);[475, 123, 477, 478] +477,0;;;;;;;;;;;;;;;;;;;130,758;LINESTRING (3584559.414448406 5418930.401100989, 3584544.147479441 5418997.13036725, 3584527.953759279 5419057.294155302);[562, 475, 476, 478] +478,0;;;;;;;;;;;;;;;;;;;134,627;LINESTRING (3584559.414448406 5418930.401100989, 3584540.882668913 5418963.378063945, 3584522.701883405 5419034.657033043, 3584527.953759279 5419057.294155302);[562, 475, 476, 477] +484,0;;;;;;;;;;;;;;;;;;;14,85;LINESTRING (3585931.203686181 5418929.310631156, 3585917.047693336 5418933.797618471);[449, 457, 109] +487,0;;;;;;;;;;;;;;;;;;;29,919;LINESTRING (3583566.296877379 5421889.749562953, 3583552.5594089 5421916.327845838);[488, 489, 560, 121] +488,0;;;;;;;;;;;;;;;;;;;25,452;LINESTRING (3583548.152819391 5421941.377601873, 3583549.808214535 5421929.222691581, 3583552.5594089 5421916.327845838);[489, 487] +490,0;;;;;;;;;;;;;;;;;;;17,522;LINESTRING (3586268.739741603 5420810.896990154, 3586282.369265185 5420799.884680042);[432, 324, 431] +498,0;;;;;;;;;;;;;;;;;;;94,717;LINESTRING (3583961.813548134 5421902.702649861, 3583958.749135687 5421929.996966506, 3583956.44148668 5421939.172093214, 3583956.636418087 5421952.50046092, 3583954.879352321 5421965.020803362, 3583948.39617533 5421977.469941307, 3583941.141980617 5421982.721971844, 3583938.165840568 5421991.030559099);[342, 554, 206] +499,0;;;;;;;;;;;;;;;;;;;23,465;LINESTRING (3583480.966611203 5419974.576908526, 3583487.696368964 5419952.097976833);[496, 505, 500] +503,0;;;;;;;;;;;;;;;;;;;54,158;LINESTRING (3583007.774163279 5419486.888496852, 3582998.942308454 5419433.45577627);[330, 502, 504, 508] +505,0;;;;;;;;;;;;;;;;;;;101,228;LINESTRING (3583379.773028549 5419977.233841602, 3583480.966611203 5419974.576908526);[499, 500, 506, 507] +514,0;;;;;;;;;;;;;;;;;;;23,883;LINESTRING (3583207.909290811 5419387.951278836, 3583211.554117863 5419387.416145192, 3583231.614124143 5419385.045986706);[515, 100, 55, 536] +526,0;;;;;;;;;;;;;;;;;;;145,119;LINESTRING (3583239.418151526 5421391.90698869, 3583212.568917275 5421391.450424238, 3583199.17836674 5421391.395105862, 3583187.816794234 5421396.831504414, 3583183.539980304 5421399.036762743, 3583179.836756437 5421404.554120035, 3583172.135443553 5421420.122630335, 3583152.748447992 5421480.54273826);[434, 533, 525] +527,0;;;;;;;;;;;;;;;;;;;48,084;LINESTRING (3582154.42242589 5423832.47362164, 3582149.402211484 5423826.126189861, 3582148.699331897 5423820.632180849, 3582149.167223777 5423815.733838528, 3582150.600465518 5423811.450378805, 3582162.624487629 5423789.515234597);[322, 319] +532,0;;;;;;;;;;;;;;;;;;;25,147;LINESTRING (3583116.31465622 5419703.67918476, 3583096.873501102 5419687.728282833);[520, 521, 542, 543] +534,0;;;;;;;;;;;;;;;;;;;409,947;LINESTRING (3584636.202900881 5422193.452051084, 3584593.655925285 5422218.311179467, 3584507.151944867 5422269.265907022, 3584449.394964603 5422308.433315817, 3584391.393609335 5422364.271121498, 3584323.895719007 5422451.099298324);[548, 535, 440, 445] +535,0;;;;;;;;;;;;;;;;;;;317,388;LINESTRING (3584090.259970064 5422663.733960607, 3584122.675935552 5422628.540504921, 3584161.080997489 5422597.608860916, 3584219.767157034 5422559.175625257, 3584323.895719007 5422451.099298324);[557, 534, 474, 445] +538,0;;;;;;;;;;;;;;;;;;;70,341;LINESTRING (3582454.362766311 5422980.089845696, 3582474.978070532 5422975.445300292, 3582523.683000169 5422982.473382042);[162, 356, 169, 219] +539,0;;;;;;;;;;;;;;;;;;;19,82;LINESTRING (3583641.492716869 5421718.403840167, 3583643.679384736 5421698.704383031);[70, 566, 540, 541] +546,0;;;;;;;;;;;;;;;;;;;39,833;LINESTRING (3583419.807714701 5421701.477398681, 3583436.016165008 5421690.975208173, 3583451.938731699 5421678.032838081);[197, 492, 18, 563] +554,0;;;;;;;;;;;;;;;;;;;8,56;LINESTRING (3583963.95393634 5421894.414850025, 3583961.813548134 5421902.702649861);[555, 206, 498, 342] +557,0;;;;;;;;;;;;;;;;;;;1092,549;LINESTRING (3584090.259970064 5422663.733960607, 3584047.711073278 5422718.751765875, 3583844.118996524 5422985.407270324, 3583832.971587722 5423001.123243961, 3583809.148571482 5423033.811414728, 3583779.594250626 5423065.134321841, 3583760.558340227 5423086.504664754, 3583737.024412004 5423106.83974019, 3583658.6854273 5423152.268257744, 3583585.813385768 5423192.852365859, 3583536.611291987 5423233.325183456, 3583520.897776078 5423252.632759763, 3583506.330909446 5423275.617057512, 3583495.523314111 5423300.04812751, 3583483.927930909 5423327.181436453, 3583466.076311437 5423377.71292015, 3583452.585339086 5423411.569582414, 3583437.783185907 5423439.055362329, 3583417.240607847 5423465.309522775, 3583399.067506523 5423481.599602954);[195, 202, 535, 474] +558,0;;;;;;;;;;;;;;;;;;;77,468;LINESTRING (3583165.281025271 5419819.921449417, 3583152.995976523 5419896.408957479);[389, 550, 104, 313, 383] +559,0;;;;;;;;;;;;;;;;;;;23,516;LINESTRING (3583221.67776601 5419996.69519568, 3583225.8649249 5419973.555138018);[384, 382] +560,0;;;;;;;;;;;;;;;;;;;4,22;LINESTRING (3583566.296877379 5421889.749562953, 3583568.492857032 5421893.352992785);[420, 487, 561, 121] +562,0;;;;;;;;;;;;;;;;;;;751,321;LINESTRING (3584533.81738318 5418185.548585829, 3584555.489678967 5418292.936144318, 3584578.530123715 5418427.562625876, 3584582.914655046 5418462.933605308, 3584586.468264205 5418507.635338696, 3584589.477069669 5418631.291243647, 3584586.894181125 5418695.22066549, 3584583.560733327 5418757.870685283, 3584577.6853582 5418817.44557598, 3584559.414448406 5418930.401100989);[477, 478] +563,0;;;;;;;;;;;;;;;;;;;50,307;LINESTRING (3583439.357162251 5421747.83055923, 3583419.807714701 5421701.477398681);[546, 197] +567,0;;;;;;;;;;;;;;;;;;;14,935;LINESTRING (3583570.417209848 5421840.302696271, 3583584.849273019 5421844.14526955);[65, 302, 303, 120] +568,0;;;;;;;;;;;;;;;;;;;95,439;LINESTRING (3582175.921251253 5423587.995782964, 3582162.860121779 5423575.412058445, 3582140.471088166 5423589.708547538, 3582139.806997991 5423594.993300363, 3582144.024843362 5423602.107490761, 3582149.095695234 5423604.54036115, 3582175.921251253 5423587.995782964);[409] +571,0;;;;;;;;;;;;;;;;;;;35,002;LINESTRING (3585738.823790619 5421314.540768285, 3585721.555241067 5421344.986131358);[264, 59, 531, 62] +572,0;;;;;;;;;;;;;;;;;;;30,524;LINESTRING (3582845.353773712 5423931.304445015, 3582836.09967701 5423927.91885128, 3582816.49659119 5423921.365011611);[1, 2, 201] +573,0;;;;;;;;;;;;;;;;;;;137,002;LINESTRING (3582820.313093515 5418140.649543236, 3582816.476359907 5418132.817657799, 3582806.409292605 5418095.595495996, 3582805.867001267 5418087.167388219, 3582809.096587908 5418080.074401913, 3582817.183123539 5418079.282354772, 3582822.096420953 5418082.280622528, 3582825.833233467 5418098.820282998, 3582825.713941496 5418123.155488347, 3582820.313093515 5418140.649543236);[404] diff --git a/stoeckach_stat_lines_with_industry.csv b/stoeckach_stat_lines_with_industry.csv new file mode 100644 index 0000000..47fa515 --- /dev/null +++ b/stoeckach_stat_lines_with_industry.csv @@ -0,0 +1,529 @@ +ID;GMLId;Stat PrimaryUsageZoneType;Stat Class year of construction;Building Count;Total Yearly Heat+DHW demand;January Heating Demand;February Heating Demand;March Heating Demand;April Heating Demand;May Heating Demand;June Heating Demand;July Heating Demand;August Heating Demand;September Heating Demand;October Heating Demand;November Heating Demand;December Heating Demand;Total Distance;Length;geometry;neighbor +2,0;['DEBW522AA00010257', 'DEBW522AA0001023f', 'DEBW522AA00010246'];Counter({'industry': 3});Counter({'1949-1971': 2, 'Before 1948': 1});3,0;130663,0;10869,0;5337,0;1482,0;89,0;0,0;0,0;0,0;0,0;1,0;175,0;3403,0;10395,0;69,2;90,432;LINESTRING (3515713.202190543 5406580.919840121, 3515751.271364365 5406587.2317913, 3515750.405629841 5406592.044603925, 3515747.496397197 5406594.605316176, 3515704.931784209 5406587.980561495);[1, 3] +3,0;['DEBW522AA0001024d', 'DEBW522AA00010240'];Counter({'industry': 2});Counter({'1949-1971': 2});2,0;34815,0;3559,0;1886,0;566,0;30,0;0,0;0,0;0,0;0,0;0,0;78,0;1308,0;3390,0;24,5;73,813;LINESTRING (3515722.473055241 5406641.720122796, 3515699.517532451 5406637.797046502, 3515706.381566862 5406600.261809849, 3515704.931784209 5406587.980561495);[1, 2] +4,0;['DEBW522AA000070ae', 'DEBW522AA000070ab', 'DEBW522AA000070a9', 'DEBW522AA00039a84', 'DEBW522AA00039a8f', 'DEBW522AA00039a8d', 'DEBW522AA00039a90', 'DEBW522AA0003186f'];Counter({'industry': 4, 'office and administration': 2, 'hall': 1, 'residential': 1});Counter({'1949-1971': 5, '1972-1990': 3});8,0;1267399,0;47110,0;28677,0;16163,0;5081,0;600,0;20,0;2,0;4,0;1096,0;7915,0;21762,0;43451,0;458,2;56,44;LINESTRING (3514826.391888335 5405785.941880889, 3514842.53068116 5405793.346336181, 3514880.195381166 5405802.164512036);[490, 301] +5,0;['DEBW522AA0001d64d', 'DEBW522AA0000d186', 'DEBW522AA0000d188', 'DEBW522AA000313c1', 'DEBW522AA000313c0', 'DEBW522AA000313bf', 'DEBW522AA00037cee', 'DEBW522AA00038ba9', 'DEBW522AA00038baa'];Counter({'residential': 4, 'non-heated': 3, 'hall': 1, 'industry': 1});Counter({'1991-2010': 6, '1949-1971': 3});9,0;132063,0;23532,0;16419,0;10038,0;2258,0;115,0;1,0;0,0;0,0;334,0;4922,0;14748,0;23037,0;159,4;34,668;LINESTRING (3515188.16009401 5405850.40681292, 3515209.098484951 5405851.619994108, 3515220.083760808 5405843.442715064);[460, 511] +11,0;['DEBW522AA00010ef9', 'DEBW522AA00003f9c', 'DEBW522AA0000901d', 'DEBW522AA00036dfa', 'DEBW522AA0000c070', 'DEBW522AA0000c06f'];Counter({'residential': 3, 'industry': 1, 'office and administration': 1, 'non-heated': 1});Counter({'1972-1990': 3, '1991-2010': 2, '1949-1971': 1});6,0;371263,0;60813,0;42644,0;26576,0;5774,0;220,0;2,0;0,0;0,0;675,0;12590,0;37768,0;59477,0;136,2;104,968;LINESTRING (3515025.806910051 5406301.490186008, 3515014.82855067 5406291.007439521, 3514948.813689839 5406232.470324177, 3514947.640825185 5406231.444105566);[9, 10, 432, 441, 155] +13,0;['DEBW522AA0000d0ab', 'DEBW522AA0000d0ac', 'DEBW522AA000155d8', 'DEBW522AA00038d35', 'DEBW522AA00009db2'];Counter({'residential': 3, 'non-heated': 1, 'industry': 1});Counter({'1949-1971': 2, '1972-1990': 2, '1991-2010': 1});5,0;184068,0;24845,0;16198,0;8834,0;1525,0;38,0;0,0;0,0;0,0;169,0;4021,0;13874,0;24129,0;81,5;66,893;LINESTRING (3515022.125555146 5406076.053991904, 3515014.429684629 5406118.414147634, 3515012.998976727 5406125.894509782, 3515009.238978568 5406141.675761685);[14, 15, 25, 26] +14,0;['DEBW522AA00014afd', 'DEBW522AA00014afc', 'DEBW522AA0000c2ff'];Counter({'residential': 2, 'non-heated': 1});Counter({'1949-1971': 3});3,0;68878,0;11905,0;8715,0;5670,0;1316,0;47,0;0,0;0,0;0,0;170,0;2801,0;7733,0;11591,0;46,3;78,838;LINESTRING (3514961.322999262 5406203.36756228, 3514972.008697826 5406191.407984387, 3514997.079789333 5406163.328526517, 3515003.448224085 5406155.772377886, 3515006.240148332 5406150.319603419, 3515009.238978568 5406141.675761685);[13, 15, 56, 57] +15,0;['DEBW522AA0003526c', 'DEBW522AA0003d266', 'DEBW522AA0001c3af', 'DEBW522AA00029bb1', 'DEBW522AA00029bb2', 'DEBW522AA00007a05', 'DEBW522AA0001db43', 'DEBW522AA00019e18', 'DEBW522AA0002112a', 'DEBW522AA00024f16', 'DEBW522AA00024f14', 'DEBW522AA00008a23', 'DEBW522AA0001c5aa', 'DEBW522AA0004312e', 'DEBW522AA0004312f'];Counter({'non-heated': 7, 'residential': 7, 'retail': 1});Counter({'1949-1971': 13, '1991-2010': 1, '1972-1990': 1});15,0;471515,0;64940,0;46225,0;29841,0;7499,0;457,0;8,0;1,0;1,0;1109,0;14436,0;40986,0;63299,0;282,8;121,342;LINESTRING (3514917.339547697 5406062.607997756, 3515003.509555631 5406138.290908156, 3515009.238978568 5406141.675761685);[13, 14, 19, 20, 21] +16,0;['DEBW522AA0003cd85', 'DEBW522AA0001aa83', 'DEBW522AA0001aa89', 'DEBW522AA00034853', 'DEBW522AA0003cd8e', 'DEBW522AA00026208'];Counter({'residential': 3, 'non-heated': 2, 'sport location': 1});Counter({'1991-2010': 2, '1972-1990': 2, 'Before 1948': 1, 'After 2011': 1});6,0;504605,0;57835,0;43906,0;31915,0;12752,0;2037,0;41,0;0,0;1,0;2695,0;14890,0;36622,0;55220,0;229,1;61,063;LINESTRING (3515614.68912088 5406016.339304105, 3515635.254947175 5406024.447843212, 3515671.490837116 5406038.74986131);[111, 17, 18, 473] +17,0;['DEBW522AA0000eb39', 'DEBW522AA00031de5', 'DEBW522AA0004105f', 'DEBW522AA00023ccf', 'DEBW522AA000312f3', 'DEBW522AA000321f8', 'DEBW522AA0002550f', 'DEBW522AA00030bdb', 'DEBW522AA000031ea', 'DEBW522AA000440f0', 'DEBW522AA0001eeff', 'DEBW522AA0003a8bb', 'DEBW522AA0003ed24', 'DEBW522AA0003ed1f', 'DEBW522AA0000addd', 'DEBW522AA00038cd6', 'DEBW522AA0004358a', 'DEBW522AA0000f962'];Counter({'residential': 17, 'industry': 1});Counter({'1972-1990': 12, '1991-2010': 6});18,0;512397,0;93294,0;65118,0;38852,0;7271,0;233,0;0,0;0,0;0,0;929,0;19357,0;59344,0;91645,0;250,2;149,642;LINESTRING (3515614.68912088 5406016.339304105, 3515642.430953041 5405943.542952149, 3515645.686362054 5405932.865086762, 3515667.2352708 5405915.243329079, 3515697.236486564 5405902.13800032);[232, 16, 18, 470] +18,0;['DEBW522AA0001aa81', 'DEBW522AA0001aa82', 'DEBW522AA0001aa84', 'DEBW522AA0001aa86', 'DEBW522AA0001aa87', 'DEBW522AA0001aa88'];Counter({'industry': 3, 'non-heated': 2, 'hall': 1});Counter({'1972-1990': 5, '1991-2010': 1});6,0;14512,0;2161,0;1354,0;732,0;221,0;40,0;2,0;0,0;0,0;70,0;331,0;1106,0;2112,0;400,5;32,294;LINESTRING (3515584.758640428 5406004.212547085, 3515607.826690361 5406013.562317178, 3515614.68912088 5406016.339304105);[103, 108, 16, 17] +19,0;['DEBW522AA00039a7f', 'DEBW522AA00039a8c', 'DEBW522AA0002afc9', 'DEBW522AA0003368f', 'DEBW522AA00040edc', 'DEBW522AA0003e540', 'DEBW522AA0003e53f', 'DEBW522AA00039923', 'DEBW522AA00039924', 'DEBW522AA0000aa94', 'DEBW522AA0000ee7e', 'DEBW522AA0000ee7b'];Counter({'residential': 5, 'industry': 3, 'retail': 2, 'non-heated': 1, 'office and administration': 1});Counter({'1972-1990': 8, '1949-1971': 3, 'After 2011': 1});12,0;1444254,0;218014,0;166234,0;123731,0;50071,0;7206,0;265,0;29,0;56,0;11352,0;62284,0;141688,0;209055,0;358,0;124,995;LINESTRING (3514822.873143579 5405980.754837738, 3514917.339547697 5406062.607997756);[236, 237, 15, 20, 21] +20,0;['DEBW522AA0003cada', 'DEBW522AA0003419d', 'DEBW522AA0002c6fb', 'DEBW522AA0001cd29', 'DEBW522AA00022dc5', 'DEBW522AA0001c28f', 'DEBW522AA0001c5a9'];Counter({'residential': 6, 'hall': 1});Counter({'1972-1990': 3, 'After 2011': 2, '1949-1971': 2});7,0;276311,0;45967,0;32823,0;20691,0;4491,0;241,0;6,0;1,0;2,0;675,0;9712,0;28887,0;44834,0;145,1;93,81;LINESTRING (3514853.871593671 5406131.688023483, 3514917.339547697 5406062.607997756);[355, 15, 19, 21, 247] +21,0;['DEBW522AA000106a7', 'DEBW522AA0002f5c3', 'DEBW522AA00023630', 'DEBW522AA00023631', 'DEBW522AA00023632', 'DEBW522AA000101f8', 'DEBW522AA000101f7', 'DEBW522AA0003c398', 'DEBW522AA0003c399', 'DEBW522AA0002c798', 'DEBW522AA0002c795', 'DEBW522AA00039a81', 'DEBW522AA000395e8', 'DEBW522AA000395e9', 'DEBW522AA00019e17', 'DEBW522AA0000ec54', 'DEBW522AA0000ec53', 'DEBW522AA0002695c', 'DEBW522AA0002695d', 'DEBW522AA0002f46d', 'DEBW522AA1a08a54', 'DEBW522AA00017289', 'DEBW522AA0000ee7d', 'DEBW522AA0000ee7c'];Counter({'residential': 11, 'non-heated': 8, 'industry': 4, 'office and administration': 1});Counter({'1949-1971': 12, '1972-1990': 8, '1991-2010': 4});24,0;828882,0;95262,0;63513,0;36912,0;8055,0;469,0;9,0;1,0;2,0;1177,0;17433,0;54230,0;92160,0;558,2;119,314;LINESTRING (3514997.275421795 5405974.233846446, 3514923.862730978 5406057.654397848, 3514919.945797974 5406060.657686618, 3514917.339547697 5406062.607997756);[19, 20, 15] +24,0;['DEBW522AA00000252'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;262747,0;7102,0;3084,0;508,0;10,0;0,0;0,0;0,0;0,0;0,0;14,0;1057,0;6035,0;26,5;316,158;LINESTRING (3514296.738901568 5405869.553342881, 3514313.520750825 5405884.30863691, 3514335.324528452 5405903.491675422, 3514364.826398122 5405929.333481825, 3514406.61094616 5405967.662015857, 3514477.119853685 5406030.674731157, 3514532.187042753 5406080.537177456);[408, 297, 22, 23] +25,0;['DEBW522AA0002190e', 'DEBW522AA000106a6', 'DEBW522AA000106a8', 'DEBW522AA0002f5c2', 'DEBW522AA00040198', 'DEBW522AA0001b05b', 'DEBW522AA0001b05c', 'DEBW522AA0001f2fa', 'DEBW522AA0001f2fb', 'DEBW522AA0003250d', 'DEBW522AA0003b61c', 'DEBW522AA000142a9', 'DEBW522AA00017c1b', 'DEBW522AA00017c1a', 'DEBW522AA00017c1c', 'DEBW522AA0000bf6c', 'DEBW522AA0002f76f', 'DEBW522AA00033a9e', 'DEBW522AA00033a9d', 'DEBW522AA0000692b', 'DEBW522AA0000692a', 'DEBW522AA0001320c', 'DEBW522AA00011037', 'DEBW522AA00011c5c', 'DEBW522AA0000aca8', 'DEBW522AA0001b9a5', 'DEBW522AA0001f2f9', 'DEBW522AA00043188', 'DEBW522AA00005781', 'DEBW522AA00043130', 'DEBW522AA00037a76'];Counter({'residential': 22, 'non-heated': 5, 'office and administration': 2, 'hall': 1, 'event location': 1});Counter({'1949-1971': 22, '1972-1990': 8, 'Before 1948': 1});31,0;640755,0;118614,0;86464,0;58425,0;18266,0;2266,0;56,0;1,0;6,0;4296,0;30985,0;77832,0;115659,0;575,3;146,173;LINESTRING (3515046.867818346 5405932.230365084, 3515046.79240299 5405946.686980613, 3515046.537372301 5405948.63240776, 3515038.852356448 5405984.053279512, 3515023.520589124 5406068.184315084, 3515022.125555146 5406076.053991904);[423, 426, 13, 26] +26,0;['DEBW522AA000240ec'];Counter({'non-heated': 1});Counter({'1949-1971': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;71,7;107,449;LINESTRING (3515088.786214976 5406157.201933219, 3515052.266904094 5406105.782260896, 3515038.437484118 5406084.249048973, 3515035.815340288 5406081.139375404, 3515029.336445342 5406077.741369826, 3515022.125555146 5406076.053991904);[13, 25, 315, 316] +27,0;['DEBW522AA000079df', 'DEBW522AA0001eec1', 'DEBW522AA00000719'];Counter({'residential': 3});Counter({'1991-2010': 1, '1949-1971': 1, '1972-1990': 1});3,0;236021,0;37390,0;26737,0;16737,0;3682,0;132,0;0,0;0,0;0,0;413,0;7900,0;23629,0;36553,0;52,2;57,325;LINESTRING (3514795.694418974 5406198.347279594, 3514757.624804061 5406241.206161473);[459, 502, 28, 29] +28,0;['DEBW522AA0001c894', 'DEBW522AA000359d8', 'DEBW522AA00013193', 'DEBW522AA000079e5', 'DEBW522AA0002f552'];Counter({'industry': 3, 'residential': 1, 'retail': 1});Counter({'1972-1990': 4, '1991-2010': 1});5,0;770997,0;69250,0;50270,0;33817,0;10345,0;820,0;21,0;2,0;5,0;1908,0;16351,0;43278,0;66801,0;119,8;125,032;LINESTRING (3514850.871616725 5406324.50072945, 3514757.624804061 5406241.206161473);[48, 49, 27, 29] +29,0;['DEBW522AA000243c2', 'DEBW522AA000243c5', 'DEBW522AA0003408e', 'DEBW522AA00035f4d', 'DEBW522AA00019a46', 'DEBW522AA0004172d', 'DEBW522AA000001d7', 'DEBW522AA000001d6', 'DEBW522AA000037e9'];Counter({'industry': 4, 'non-heated': 2, 'office and administration': 2, 'residential': 1});Counter({'1972-1990': 6, '1949-1971': 2, '1991-2010': 1});9,0;357271,0;56262,0;39756,0;26109,0;8193,0;890,0;30,0;2,0;6,0;1697,0;13040,0;34147,0;54505,0;247,0;125,267;LINESTRING (3514663.875035145 5406158.123152041, 3514757.624804061 5406241.206161473);[365, 339, 27, 28] +32,0;['DEBW522AA0000a2b5', 'DEBW522AA00038ea5', 'DEBW522AA0003106b', 'DEBW522AA0002972c', 'DEBW522AA00044893'];Counter({'industry': 5});Counter({'1972-1990': 5});5,0;55387,0;4670,0;2392,0;714,0;36,0;0,0;0,0;0,0;0,0;0,0;74,0;1468,0;4416,0;115,8;392,022;LINESTRING (3514564.153351705 5406110.189679203, 3514577.977414111 5406123.125451857, 3514608.73717794 5406153.186546071, 3514639.681335203 5406185.672589982, 3514668.696213469 5406216.830416844, 3514714.832159097 5406266.927159407, 3514735.782882936 5406288.111264168, 3514759.184147857 5406310.558516793, 3514789.613583561 5406336.949947802, 3514817.517930122 5406359.542750912, 3514827.893241022 5406367.543617194, 3514846.232005219 5406381.470596642);[435, 23, 439, 31] +33,0;['DEBW522AA00043f98', 'DEBW522AA00043f97', 'DEBW522AA00043f99', 'DEBW522AA00043f94', 'DEBW522AA00043fb4'];Counter({'industry': 4, 'residential': 1});Counter({'1972-1990': 5});5,0;281699,0;7370,0;3401,0;994,0;122,0;5,0;0,0;0,0;0,0;15,0;264,0;1934,0;6606,0;72,1;100,627;LINESTRING (3515362.313169219 5406251.478860505, 3515363.279457645 5406258.165006119, 3515364.450017042 5406262.69430691, 3515367.003518294 5406266.626876224, 3515371.526622663 5406270.375784733, 3515378.806070553 5406273.731898737, 3515388.264613932 5406275.525980783, 3515398.891721705 5406279.881028687, 3515405.584420588 5406282.84634709, 3515413.454119044 5406287.972306654, 3515421.322705178 5406293.498617351, 3515428.204239881 5406297.254046774, 3515432.728896232 5406300.413615681, 3515439.409949786 5406307.604785812);[34, 35] +34,0;['DEBW522AA00043f96', 'DEBW522AA00043f95'];Counter({'industry': 2});Counter({'1972-1990': 2});2,0;44840,0;2413,0;1175,0;266,0;9,0;0,0;0,0;0,0;0,0;0,0;19,0;601,0;2161,0;26,9;89,004;LINESTRING (3515353.646169524 5406298.829084514, 3515366.102647986 5406303.222432288, 3515371.334265413 5406303.114417423, 3515375.885928305 5406301.781276141, 3515386.249120027 5406297.850702282, 3515409.57721001 5406297.781194999, 3515439.409949786 5406307.604785812);[33, 35] +35,0;['DEBW522AA0003bbd6', 'DEBW522AA00023111', 'DEBW522AA0003efcd'];Counter({'residential': 2, 'office and administration': 1});Counter({'1991-2010': 1, '1949-1971': 1, '1972-1990': 1});3,0;210776,0;37327,0;26891,0;17946,0;5386,0;556,0;18,0;2,0;4,0;1033,0;8883,0;23767,0;36406,0;50,2;97,241;LINESTRING (3515429.996943924 5406393.663797638, 3515433.426752055 5406380.773276335, 3515442.765986735 5406345.67996005, 3515446.718715868 5406335.026133685, 3515453.547644797 5406317.796802861, 3515450.186575403 5406313.661800682, 3515439.409949786 5406307.604785812);[33, 34, 39, 212] +37,0;['DEBW522AA00007d40', 'DEBW522AA00027367', 'DEBW522AA00027368'];Counter({'residential': 3});Counter({'1991-2010': 3});3,0;180586,0;30898,0;21838,0;13593,0;2768,0;81,0;0,0;0,0;0,0;285,0;6345,0;19387,0;30197,0;46,2;64,079;LINESTRING (3514576.474580911 5405883.627769752, 3514624.574112192 5405925.966621464);[36, 38, 429, 430] +39,0;['DEBW522AA0002558e', 'DEBW522AA00007231', 'DEBW522AA000322d2', 'DEBW522AA000276eb', 'DEBW522AA0001cdeb', 'DEBW522AA000273b9', 'DEBW522AA0002707d'];Counter({'residential': 7});Counter({'1991-2010': 7});7,0;520813,0;87659,0;61951,0;38755,0;8083,0;225,0;0,0;0,0;0,0;775,0;17776,0;54837,0;85612,0;166,5;112,883;LINESTRING (3515429.996943924 5406393.663797638, 3515425.966296384 5406392.574025787, 3515392.935579163 5406383.609149291, 3515359.320499773 5406376.044071367, 3515320.479804602 5406366.374262393);[35, 212] +41,0;['DEBW522AA00002e62'];Counter({'retail': 1});Counter({'After 2011': 1});1,0;92537,0;8315,0;6126,0;4231,0;1347,0;122,0;3,0;0,0;1,0;254,0;2075,0;5298,0;8051,0;23,7;48,269;LINESTRING (3514260.197495556 5405681.199568271, 3514267.272422692 5405678.837709985, 3514277.397022221 5405667.72056045, 3514287.086878274 5405657.091631301, 3514288.413245499 5405655.638202079, 3514291.815741734 5405646.850444937);[40, 42, 115, 116] +44,0;['DEBW522AA0001ed75', 'DEBW522AA0002aaf7', 'DEBW522AA00039117', 'DEBW522AA0003911b', 'DEBW522AA0002ae09', 'DEBW522AA0003584e', 'DEBW522AA00015d19', 'DEBW522AA0003e504', 'DEBW522AA00027957'];Counter({'residential': 8, 'industry': 1});Counter({'Before 1948': 3, '1972-1990': 3, '1991-2010': 2, '1949-1971': 1});9,0;361032,0;64742,0;44887,0;27353,0;5500,0;204,0;0,0;0,0;0,0;675,0;13017,0;40233,0;63639,0;156,6;48,535;LINESTRING (3514819.248458503 5405722.224108888, 3514832.651808484 5405761.092685186, 3514834.253034097 5405766.912997812, 3514834.61691521 5405768.248433192);[43, 45, 46, 47] +45,0;['DEBW522AA0000e3f9'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;54257,0;10217,0;6993,0;4287,0;947,0;43,0;0,0;0,0;0,0;122,0;2037,0;6340,0;10126,0;10,2;48,603;LINESTRING (3514834.61691521 5405768.248433192, 3514849.819084032 5405765.830925838, 3514882.612656015 5405760.590898708);[456, 43, 44, 46, 47, 309] +46,0;['DEBW522AA0003aa39', 'DEBW522AA00039cf8', 'DEBW522AA00039cf7', 'DEBW522AA00039118', 'DEBW522AA0003911a', 'DEBW522AA0004451a', 'DEBW522AA00c26c71', 'DEBW522AA00c26c82', 'DEBW522AA00c26c97', 'DEBW522AA0002a09e', 'DEBW522AA0002a09d', 'DEBW522AA0001f97f', 'DEBW522AA00000b82', 'DEBW522AA00000b81', 'DEBW522AA00000b83', 'DEBW522AA000379e1', 'DEBW522AA0003dd47', 'DEBW522AA0002f099', 'DEBW522AA0002f098', 'DEBW522AA00003ec9', 'DEBW522AA0003581a', 'DEBW522AA00003eff', 'DEBW522AA00003efe', 'DEBW522AA0001115f', 'DEBW522AA00039116', 'DEBW522AA00005335', 'DEBW522AA0003abdd', 'DEBW522AA00028b0c', 'DEBW522AA00028b17', 'DEBW522AA00032423', 'DEBW522AA0003abd6', 'DEBW522AA0003abd7', 'DEBW522AA0003abd8'];Counter({'residential': 25, 'hall': 2, 'office and administration': 2, 'retail': 2, 'industry': 1, 'non-heated': 1});Counter({'1972-1990': 10, 'Before 1948': 8, '1949-1971': 7, '1991-2010': 6, 'After 2011': 2});33,0;1748896,0;273721,0;195097,0;128611,0;34485,0;2444,0;58,0;4,0;10,0;5345,0;61181,0;172649,0;267793,0;705,8;231,292;LINESTRING (3514603.664662758 5405780.643550822, 3514637.822147984 5405779.186646245, 3514762.722129587 5405771.573228004, 3514834.61691521 5405768.248433192);[481, 482, 43, 44, 45, 47] +47,0;['DEBW522AA000070b2', 'DEBW522AA0000e926', 'DEBW522AA0000e925', 'DEBW522AA0003045f', 'DEBW522AA0003045e', 'DEBW522AA00030461', 'DEBW522AA00030460', 'DEBW522AA0001976f', 'DEBW522AA00019770', 'DEBW522AA0001110a', 'DEBW522AA00011109'];Counter({'residential': 5, 'retail': 3, 'non-heated': 2, 'industry': 1});Counter({'1972-1990': 5, '1991-2010': 3, '1949-1971': 2, 'After 2011': 1});11,0;293757,0;37970,0;27480,0;18646,0;5187,0;271,0;3,0;0,0;0,0;591,0;8174,0;23526,0;36940,0;195,8;141,114;LINESTRING (3514975.285683783 5405760.903817356, 3514967.235283654 5405762.505981048, 3514962.177215944 5405763.482247083, 3514907.454644277 5405766.828689796, 3514891.242696479 5405767.630874296, 3514869.231029325 5405769.22956263, 3514862.471303766 5405769.044871578, 3514845.954099158 5405768.578628801, 3514834.61691521 5405768.248433192);[43, 44, 45, 46, 302, 308, 309, 59] +48,0;['DEBW522AA00032cb0', 'DEBW522AA0001c2b9', 'DEBW522AA00035790', 'DEBW522AA0000901f', 'DEBW522AA0000901e', 'DEBW522AA0000901c', 'DEBW522AA000079e3', 'DEBW522AA0000da18', 'DEBW522AA000086ea', 'DEBW522AA0001a3cd'];Counter({'residential': 7, 'industry': 2, 'non-heated': 1});Counter({'1972-1990': 7, '1949-1971': 3});10,0;425175,0;68655,0;49284,0;30752,0;6003,0;155,0;0,0;0,0;0,0;564,0;13935,0;43041,0;66835,0;241,9;133,408;LINESTRING (3514939.128985028 5406224.459951276, 3514936.394560507 5406227.666544381, 3514926.379419805 5406238.949612973, 3514850.871616725 5406324.50072945);[9, 299, 49, 28] +49,0;['DEBW522AA0000c51e', 'DEBW522AA000015ad', 'DEBW522AA000015ac', 'DEBW522AA000015ab', 'DEBW522AA0003232a', 'DEBW522AA0003e2a1'];Counter({'residential': 4, 'non-heated': 2});Counter({'1972-1990': 5, '1991-2010': 1});6,0;254406,0;42636,0;29750,0;18288,0;3631,0;98,0;0,0;0,0;0,0;322,0;8187,0;26209,0;41665,0;156,4;112,243;LINESTRING (3514935.56705453 5406398.154787432, 3514931.527762873 5406394.752257105, 3514927.320455016 5406390.982302365, 3514850.871616725 5406324.50072945);[48, 432, 433, 52, 28] +50,0;['DEBW522AA0003213a', 'DEBW522AA0000be71', 'DEBW522AA0001cb2f', 'DEBW522AA000312b3', 'DEBW522AA000300c0', 'DEBW522AA00014611'];Counter({'residential': 4, 'non-heated': 2});Counter({'1949-1971': 4, '1972-1990': 2});6,0;65825,0;11928,0;8293,0;5318,0;1400,0;65,0;0,0;0,0;0,0;177,0;2533,0;7443,0;11752,0;196,0;16,261;LINESTRING (3515456.866988848 5405957.530672511, 3515472.720984155 5405961.144034788);[178, 220] +53,0;['DEBW522AA0000c7ed', 'DEBW522AA0000c7f2'];Counter({'office and administration': 1, 'non-heated': 1});Counter({'1972-1990': 2});2,0;213759,0;36061,0;27639,0;20851,0;8650,0;1266,0;45,0;5,0;10,0;1979,0;10702,0;23699,0;34653,0;95,4;47,241;LINESTRING (3514961.42144247 5406401.114943019, 3514952.893760887 5406411.245381026, 3514949.527696982 5406417.163722376, 3514947.512244598 5406423.5638463, 3514946.927639638 5406427.899339121, 3514947.275665782 5406435.173161222, 3514948.868977267 5406443.851496942);[146, 52, 54] +54,0;['DEBW522AA0001257d', 'DEBW522AA0001257b', 'DEBW522AA0001257c', 'DEBW522AA00005391', 'DEBW522AA00005390', 'DEBW522AA00c53577', 'DEBW522AA00026aba', 'DEBW522AA00012398'];Counter({'residential': 6, 'non-heated': 1, 'retail': 1});Counter({'1949-1971': 4, '1972-1990': 2, 'After 2011': 1, '1991-2010': 1});8,0;315328,0;47451,0;33392,0;20703,0;4428,0;189,0;1,0;0,0;0,0;589,0;10049,0;29826,0;46400,0;154,4;116,558;LINESTRING (3515037.136144073 5406312.630010982, 3515032.968007976 5406318.946498203, 3515013.992557627 5406342.693917224, 3514961.42144247 5406401.114943019);[52, 53, 155, 156, 157] +57,0;['DEBW522AA0003d333', 'DEBW522AA0003d334', 'DEBW522AA0003acc8', 'DEBW522AA0003663a', 'DEBW522AA0001e9cc'];Counter({'residential': 4, 'industry': 1});Counter({'1949-1971': 3, '1972-1990': 1, '1991-2010': 1});5,0;162845,0;24734,0;17616,0;10935,0;2186,0;60,0;0,0;0,0;0,0;230,0;4999,0;15459,0;24097,0;43,1;33,707;LINESTRING (3514951.135347951 5406180.009357519, 3514944.105090051 5406187.808459093, 3514946.502004812 5406189.961116684, 3514953.949218576 5406196.675552847, 3514961.322999262 5406203.36756228);[56, 14] +59,0;['DEBW522AA00043691'];Counter({'health care': 1});Counter({'After 2011': 1});1,0;2759181,0;230982,0;182475,0;147639,0;76176,0;20861,0;2128,0;384,0;640,0;26336,0;82599,0;157474,0;221436,0;30,6;78,004;LINESTRING (3514975.285683783 5405760.903817356, 3514990.124236654 5405759.853558706, 3514994.666291007 5405759.498695983, 3515020.22736676 5405757.821021833, 3515053.150702737 5405756.341111489);[302, 47, 308, 309, 58, 60] +60,0;['DEBW522A00c5be06', 'DEBW522AA0004369a', 'DEBW522AA00043693', 'DEBW522AA00043692', 'DEBW522AA00c5be06', 'DEBW522AA0000f09c', 'DEBW522AA00016a88', 'DEBW522AA0002a31d', 'DEBW522AA00015fba'];Counter({'residential': 5, 'health care': 2, 'industry': 1, 'non-heated': 1});Counter({'After 2011': 4, '1949-1971': 3, 'Before 1948': 1, '1991-2010': 1});9,0;3693181,0;316081,0;250810,0;204165,0;108189,0;33371,0;3989,0;793,0;1237,0;39143,0;114273,0;215978,0;302572,0;178,1;132,512;LINESTRING (3515185.471875038 5405749.290799064, 3515162.005735685 5405750.661993497, 3515140.332826993 5405751.926911352, 3515111.348759566 5405753.127764744, 3515096.356721641 5405753.854791625, 3515081.577422752 5405754.715877128, 3515053.150702737 5405756.341111489);[450, 170, 58, 59] +62,0;['DEBW522AA00012ca7', 'DEBW522AA000039ef', 'DEBW522AA00011cfb', 'DEBW522AA00c63a59', 'DEBW522AA00018da5', 'DEBW522AA00038a6a', 'DEBW522AA0000714e', 'DEBW522AA00019636', 'DEBW522AA0001aa6e', 'DEBW522AA0001149c', 'DEBW522AA0001149d', 'DEBW522AA00034123', 'DEBW522AA00034168', 'DEBW522AA000406fa', 'DEBW522AA0002711e', 'DEBW522AA0002711f', 'DEBW522AA0003559c', 'DEBW522AA0003b827', 'DEBW522AA0002707f'];Counter({'residential': 16, 'non-heated': 3});Counter({'1949-1971': 12, '1972-1990': 4, 'Before 1948': 2, '1991-2010': 1});19,0;305296,0;56248,0;38883,0;23831,0;5291,0;237,0;0,0;0,0;0,0;676,0;11595,0;35104,0;55454,0;194,4;141,653;LINESTRING (3515468.770747404 5405668.905214368, 3515444.234425551 5405661.131124736, 3515424.410768668 5405652.435944889, 3515407.575106456 5405644.716522655, 3515381.411876319 5405624.516508738, 3515369.229219173 5405616.176065964, 3515364.093246358 5405616.006331922, 3515360.753514816 5405617.33167651, 3515344.588483964 5405627.685296311);[515, 395, 61, 63] +63,0;['DEBW522AA00027650', 'DEBW522AA00011e47', 'DEBW522AA00016fed', 'DEBW522AA00014484', 'DEBW522AA0000cfc7'];Counter({'residential': 5});Counter({'1991-2010': 5});5,0;226633,0;41154,0;28501,0;17339,0;3481,0;117,0;0,0;0,0;0,0;427,0;8501,0;25924,0;40316,0;70,7;116,196;LINESTRING (3515396.219352714 5405731.615346164, 3515393.860753442 5405726.193137707, 3515381.934844375 5405699.293039461, 3515364.695160828 5405661.969528695, 3515344.588483964 5405627.685296311);[397, 401, 402, 61, 62] +64,0;['DEBW522AA00041b18'];Counter({'office and administration': 1});Counter({'After 2011': 1});1,0;229248,0;38024,0;29260,0;22334,0;9530,0;1415,0;54,0;6,0;11,0;2261,0;11493,0;24993,0;36454,0;11,4;7,891;LINESTRING (3514335.469820226 5405687.874361098, 3514330.098288732 5405693.654505358);[217, 346] +65,0;['DEBW522AA0001d1e5', 'DEBW522AA000283b3', 'DEBW522AA000344f4', 'DEBW522AA000130ac', 'DEBW522AA000310ad', 'DEBW522AA000310ac', 'DEBW522AA000131c7', 'DEBW522AA0001023a'];Counter({'residential': 8});Counter({'1991-2010': 3, '1949-1971': 2, '1972-1990': 2, 'After 2011': 1});8,0;254523,0;47913,0;32997,0;19503,0;3794,0;139,0;0,0;0,0;0,0;486,0;9657,0;30221,0;47184,0;92,5;78,131;LINESTRING (3515640.803185635 5405622.619212484, 3515658.335013743 5405546.480613328);[66, 67, 68, 457, 202] +66,0;['DEBW522AA00033291', 'DEBW522AA0001ab53', 'DEBW522AA00c43037'];Counter({'residential': 3});Counter({'1972-1990': 1, '1949-1971': 1, 'After 2011': 1});3,0;69110,0;11753,0;8270,0;5394,0;1432,0;59,0;0,0;0,0;0,0;146,0;2414,0;7262,0;11552,0;52,2;56,245;LINESTRING (3515695.42961555 5405635.971729876, 3515661.193935483 5405628.136240252, 3515640.803185635 5405622.619212484);[65, 67, 68, 458, 412] +67,0;['DEBW522AA00024130', 'DEBW522AA0000ab7e', 'DEBW522AA0001b313', 'DEBW522AA0001b314', 'DEBW522AA0001b315', 'DEBW522AA0003632e', 'DEBW522AA0001117f', 'DEBW522AA00011180', 'DEBW522AA0000df9f', 'DEBW522AA0000df9e', 'DEBW522AA0000df9d'];Counter({'residential': 9, 'non-heated': 1, 'retail': 1});Counter({'1949-1971': 6, 'After 2011': 4, '1972-1990': 1});11,0;121878,0;22043,0;14992,0;9131,0;2104,0;97,0;1,0;0,0;0,0;235,0;4171,0;13371,0;21775,0;193,1;43,757;LINESTRING (3515599.261639399 5405610.0375031, 3515602.898488133 5405612.883361451, 3515634.393337695 5405620.755348682, 3515640.803185635 5405622.619212484);[65, 66, 68] +68,0;['DEBW522AA00016be1', 'DEBW522AA00016be0', 'DEBW522AA0001e4b7', 'DEBW522AA0003d755', 'DEBW522AA0001acb8', 'DEBW522AA0000c725', 'DEBW522AA00009bd5', 'DEBW522AA00043b1f', 'DEBW522AA0000b6a9', 'DEBW522AA0000b6aa', 'DEBW522AA0000f781', 'DEBW522AA0000f780', 'DEBW522AA0000f77f', 'DEBW522AA000307a2', 'DEBW522AA0001b308', 'DEBW522AA0001b30b', 'DEBW522AA000135a3', 'DEBW522AA0001631b', 'DEBW522AA0001ba96', 'DEBW522AA000250ba', 'DEBW522AA0002bc99', 'DEBW522AA0001117e', 'DEBW522AA0000e1a4', 'DEBW522AA0001fb55', 'DEBW522AA0001a3e2', 'DEBW522AA0001a3e1', 'DEBW522AA0001a3e3', 'DEBW522AA0000874a'];Counter({'residential': 25, 'office and administration': 1, 'retail': 1, 'non-heated': 1});Counter({'1949-1971': 15, '1972-1990': 9, '1991-2010': 3, 'After 2011': 1});28,0;280114,0;46192,0;32204,0;19950,0;4638,0;246,0;2,0;0,0;0,0;657,0;9824,0;29155,0;45289,0;407,4;101,403;LINESTRING (3515626.915501251 5405722.922017627, 3515631.282637412 5405671.845988045, 3515638.091395732 5405635.934178662, 3515638.732709312 5405632.566412807, 3515640.803185635 5405622.619212484);[65, 66, 67, 357, 135, 428] +69,0;['DEBW522AA00038d5c', 'DEBW522AA011e9c5d', 'DEBW522AA0001425b', 'DEBW522AA0001425f', 'DEBW522AA00014262', 'DEBW522AA00014260'];Counter({'residential': 4, 'non-heated': 1, 'education': 1});Counter({'1949-1971': 3, '1972-1990': 2, 'After 2011': 1});6,0;36590,0;6149,0;4418,0;2928,0;901,0;78,0;2,0;0,0;1,0;162,0;1461,0;3922,0;6016,0;142,9;150,052;LINESTRING (3515884.808218144 5406145.895846482, 3515880.84291098 5406150.255046811, 3515838.848613421 5406195.642146505, 3515795.705303303 5406242.271841736, 3515791.587860221 5406253.759009006, 3515790.908169879 5406260.318277166);[70, 71] +73,0;['DEBW522AA000169d1'];Counter({'hall': 1});Counter({'1991-2010': 1});1,0;95579,0;17770,0;14111,0;11873,0;6701,0;2331,0;239,0;32,0;79,0;3496,0;8372,0;13220,0;17356,0;17,5;45,052;LINESTRING (3515731.291557201 5406315.331630948, 3515721.186474347 5406305.706226168, 3515713.226506815 5406298.81139735, 3515706.080117115 5406297.879518819, 3515699.167247629 5406292.255391194, 3515695.758689475 5406289.398981838);[72, 74, 81, 82] +74,0;['DEBW522AA00002d83'];Counter({'retail': 1});Counter({'1991-2010': 1});1,0;207141,0;19726,0;14861,0;10736,0;3918,0;463,0;15,0;1,0;3,0;836,0;5443,0;12844,0;19090,0;12,4;72,343;LINESTRING (3515758.239997768 5406284.458417303, 3515746.201151438 5406275.327972292, 3515739.122263039 5406271.27134056, 3515733.902684477 5406269.688707857, 3515728.288747098 5406269.873157883, 3515715.655501677 5406276.22104808, 3515695.758689475 5406289.398981838);[70, 72, 73, 81] +76,0;['DEBW522AA00000121', 'DEBW522AA000054a5', 'DEBW522AA0000df8b', 'DEBW522AA0000df8c'];Counter({'residential': 4});Counter({'1972-1990': 2, '1949-1971': 2});4,0;91502,0;17755,0;12234,0;7491,0;1666,0;77,0;0,0;0,0;0,0;228,0;3641,0;11087,0;17518,0;90,0;182,653;LINESTRING (3515582.686355866 5406632.623103159, 3515563.983947938 5406639.543894229, 3515547.42400902 5406647.504897657, 3515526.135413103 5406651.827546419, 3515517.221810976 5406652.481274171, 3515470.98720307 5406658.014146963, 3515415.696082221 5406665.457531305, 3515404.850515882 5406668.708367087);[328, 201, 75, 77] +83,0;['DEBW522AA0003a0c7', 'DEBW522AA0003a0c6', 'DEBW522AA00025790'];Counter({'education': 2, 'residential': 1});Counter({'1991-2010': 1, '1949-1971': 1, 'Before 1948': 1});3,0;271465,0;40735,0;29844,0;20720,0;6802,0;703,0;26,0;4,0;8,0;1468,0;11239,0;26790,0;39839,0;84,0;191,717;LINESTRING (3514893.361465982 5405586.281374415, 3514908.028046446 5405580.971242392, 3514911.720643292 5405579.557599423, 3515044.379888118 5405527.266138525, 3515055.583381825 5405522.81453105, 3515060.599832279 5405518.257396898, 3515062.978891029 5405513.448543883, 3515064.528483836 5405508.303849726);[303, 305, 84, 85, 89, 447] +91,0;['DEBW522AA00020dc5'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;2447,0;450,0;321,0;200,0;40,0;1,0;0,0;0,0;0,0;6,0;103,0;296,0;442,0;11,6;124,207;LINESTRING (3514636.416704105 5405977.619393225, 3514628.35464863 5405975.38539688, 3514607.403509479 5405956.581525347, 3514541.673093522 5405898.539333067);[99, 98] +92,0;['DEBW522AA0000ef35', 'DEBW522AA00012534'];Counter({'residential': 2});Counter({'After 2011': 2});2,0;109089,0;18136,0;12661,0;7611,0;1311,0;28,0;0,0;0,0;0,0;103,0;3292,0;11203,0;17735,0;27,5;59,219;LINESTRING (3515473.422718264 5405585.902536273, 3515486.544132475 5405528.155907955);[265, 382] +94,0;['DEBW522AA0001a0c2', 'DEBW522AA0000b89b', 'DEBW522AA0000b89a', 'DEBW522AA00033327', 'DEBW522AA00033328', 'DEBW522AA00033329', 'DEBW522AA0003332f', 'DEBW522AA0003332b', 'DEBW522AA0003332a'];Counter({'industry': 4, 'non-heated': 3, 'residential': 1, 'office and administration': 1});Counter({'1972-1990': 4, '1949-1971': 3, '1991-2010': 1, 'Before 1948': 1});9,0;105751,0;10700,0;6673,0;3372,0;613,0;23,0;0,0;0,0;0,0;74,0;1439,0;5242,0;10269,0;187,5;51,018;LINESTRING (3514693.717918797 5405987.64404433, 3514698.198786912 5405982.506912666, 3514703.939904808 5405975.927400618, 3514689.006313603 5405962.966178531, 3514683.265200144 5405969.545705759, 3514678.688524719 5405974.793805263);[96, 93, 95] +95,0;['DEBW522AA00023b4d', 'DEBW522AA000299a9'];Counter({'residential': 2});Counter({'1991-2010': 2});2,0;124196,0;22129,0;15220,0;9062,0;1678,0;54,0;0,0;0,0;0,0;183,0;4260,0;13671,0;21735,0;23,5;45,456;LINESTRING (3514644.629083261 5405944.690376286, 3514678.688524719 5405974.793805263);[430, 438, 93, 94] +96,0;['DEBW522AA0004370e', 'DEBW522AA0001a0cb', 'DEBW522AA000217ec', 'DEBW522AA00008c1d', 'DEBW522AA000303f7', 'DEBW522AA0003cf50', 'DEBW522AA0003cf4f', 'DEBW522AA00e68b84'];Counter({'residential': 7, 'non-heated': 1});Counter({'1972-1990': 4, 'After 2011': 3, '1991-2010': 1});8,0;266282,0;45778,0;31747,0;19037,0;3671,0;120,0;0,0;0,0;0,0;391,0;8840,0;28279,0;44922,0;119,1;92,514;LINESTRING (3514693.717918797 5405987.64404433, 3514717.893898357 5406009.41477399, 3514730.084393853 5406020.411653595, 3514751.012635791 5406039.293773972, 3514762.433337968 5406049.588104979);[237, 246, 247, 93, 94] +97,0;['DEBW522AA0000d908', 'DEBW522AA00038d2c', 'DEBW522AA00038d2d'];Counter({'office and administration': 2, 'residential': 1});Counter({'After 2011': 1, '1991-2010': 1, '1972-1990': 1});3,0;863777,0;147299,0;112503,0;83208,0;32280,0;4001,0;134,0;13,0;30,0;7287,0;42837,0;96958,0;141572,0;58,0;57,676;LINESTRING (3515052.667366845 5406299.304597401, 3515055.190990341 5406292.516651222, 3515059.44354359 5406282.130254463, 3515067.696574819 5406259.477407618, 3515063.966548293 5406244.843771158);[443, 191] +100,0;['DEBW522AA0001e976', 'DEBW522AA0000c9c6', 'DEBW522AA0003d6bf', 'DEBW522AA000100ba', 'DEBW522AA00004a7d', 'DEBW522AA00004a7c', 'DEBW522AA00010293', 'DEBW522AA00023594'];Counter({'residential': 8});Counter({'1991-2010': 6, '1972-1990': 2});8,0;363471,0;64473,0;45669,0;29110,0;6902,0;260,0;0,0;0,0;0,0;863,0;14339,0;41126,0;63015,0;93,4;209,236;LINESTRING (3515662.345119382 5406578.687114656, 3515678.666816344 5406545.637607379, 3515681.021676037 5406539.005155438, 3515682.721143349 5406511.842162727, 3515684.190162864 5406488.281617119, 3515691.592534237 5406381.610830741, 3515695.203974566 5406374.937413829);[101, 102, 327, 523] +102,0;['DEBW522AA0002b083'];Counter({'residential': 1});Counter({'Before 1948': 1});1,0;3102,0;688,0;442,0;252,0;61,0;4,0;0,0;0,0;0,0;8,0;116,0;403,0;688,0;8,6;32,661;LINESTRING (3515702.047708188 5406355.295243268, 3515705.56910277 5406357.195597167, 3515707.75828424 5406359.937396673, 3515707.995150714 5406361.939774803, 3515707.665378961 5406369.523131294, 3515706.098044818 5406372.999510037, 3515702.873596851 5406375.270227036, 3515698.867998983 5406375.748339111, 3515695.203974566 5406374.937413829);[100, 101, 203, 204] +103,0;['DEBW522AA0001aa85', 'DEBW522AA000300bf', 'DEBW522AA00022db9', 'DEBW522AA00022df5', 'DEBW522AA00014610'];Counter({'residential': 3, 'industry': 1, 'non-heated': 1});Counter({'Before 1948': 3, '1972-1990': 1, '1991-2010': 1});5,0;91253,0;16380,0;11401,0;6840,0;1361,0;47,0;0,0;0,0;0,0;183,0;3389,0;10328,0;16029,0;182,9;76,947;LINESTRING (3515522.309102675 5405964.62812954, 3515527.015775783 5405971.135585733, 3515528.221437315 5405976.232168507, 3515530.174561142 5405979.395827301, 3515584.758640428 5406004.212547085);[104, 18, 108] +104,0;['DEBW522AA0002f731', 'DEBW522AA000217d7', 'DEBW522AA00006a0a', 'DEBW522AA0000e031', 'DEBW522AA0000f79e', 'DEBW522AA0002c277', 'DEBW522AA000233c8', 'DEBW522AA0000e111', 'DEBW522AA0001056b', 'DEBW522AA0001908d', 'DEBW522AA0001abe9', 'DEBW522AA0002bcfb', 'DEBW522AA0000c7de', 'DEBW522AA0003dd79', 'DEBW522AA0001284a'];Counter({'residential': 15});Counter({'1972-1990': 13, '1991-2010': 2});15,0;552447,0;99155,0;69846,0;42215,0;8093,0;257,0;0,0;0,0;0,0;945,0;20405,0;62765,0;97510,0;234,3;194,715;LINESTRING (3515669.114017849 5405836.959303507, 3515657.130259837 5405849.870311704, 3515529.626649355 5405959.621824807, 3515522.309102675 5405964.62812954);[230, 231, 232, 103] +107,0;['DEBW522AA00002f4e', 'DEBW522AA00038b0e', 'DEBW522AA0004286f', 'DEBW522AA000217ab', 'DEBW522AA000039fd', 'DEBW522AA0000f9c9', 'DEBW522AA0002f5f8', 'DEBW522AA000004c1', 'DEBW522AA0002108b', 'DEBW522AA0001ecaa', 'DEBW522AA0000976b', 'DEBW522AA0000ef56', 'DEBW522AA00041629', 'DEBW522AA0002a8b5', 'DEBW522AA0000b887', 'DEBW522AA0004383e', 'DEBW522AA0000f2b9', 'DEBW522AA000160b1', 'DEBW522AA0000f2c0', 'DEBW522AA0001fd8a', 'DEBW522AA0002e3a2', 'DEBW522AA000423bb', 'DEBW522AA0002069e', 'DEBW522AA00041d8c', 'DEBW522AA0000191c', 'DEBW522AA0002126c', 'DEBW522AA0002126b', 'DEBW522AA00007882', 'DEBW522AA00033a5f', 'DEBW522AA0001a409', 'DEBW522AA000392d8', 'DEBW522AA0003c164', 'DEBW522AA0000f2bd', 'DEBW522AA00022bdd', 'DEBW522AA000010e4', 'DEBW522AA000010e3', 'DEBW522AA000263c8', 'DEBW522AA000247aa', 'DEBW522AA00022dcd', 'DEBW522AA00033b5f', 'DEBW522AA0000c010', 'DEBW522AA0000c011', 'DEBW522AA0000c012', 'DEBW522AA0000db38', 'DEBW522AA0001374b', 'DEBW522AA00043553'];Counter({'residential': 36, 'non-heated': 4, 'industry': 2, 'education': 2, 'hall': 1, 'retail': 1});Counter({'1991-2010': 17, '1949-1971': 15, '1972-1990': 12, 'Before 1948': 1, 'After 2011': 1});46,0;6589457,0;845930,0;621860,0;445777,0;185087,0;69765,0;25071,0;9346,0;14597,0;86177,0;264596,0;559278,0;821692,0;19161,5;870,792;LINESTRING (3514802.380496057 5406365.897214849, 3514780.172837212 5406347.923411776, 3514746.658988317 5406318.176625247, 3514725.405315425 5406297.703404465, 3514704.022549228 5406275.962176087, 3514658.874540561 5406227.380504929, 3514598.995752822 5406163.959359402, 3514570.259910037 5406135.449332728, 3514536.732598314 5406104.302591837, 3514467.313458014 5406041.013899757, 3514395.542697032 5405977.241872224, 3514358.479076213 5405943.251401274, 3514325.729788731 5405914.409902075, 3514300.86378336 5405891.61602695, 3514271.566342666 5405866.097578824, 3514238.04966036 5405832.361579932, 3514209.753112886 5405797.260023536, 3514195.125183406 5405776.093888322, 3514182.482906845 5405757.134684574);[105, 106, 437, 510] +108,0;['DEBW522AA00038352', 'DEBW522AA00029ed7', 'DEBW522AA0001ce28', 'DEBW522AA0000478d', 'DEBW522AA000263f2'];Counter({'residential': 5});Counter({'1972-1990': 5});5,0;141600,0;24917,0;17694,0;10881,0;2098,0;58,0;0,0;0,0;0,0;243,0;5329,0;15981,0;24364,0;49,8;71,276;LINESTRING (3515612.443643246 5405938.533098143, 3515584.758640428 5406004.212547085);[18, 103] +109,0;['DEBW522AA00015868', 'DEBW522AA00009132'];Counter({'sport location': 1, 'industry': 1});Counter({'1972-1990': 2});2,0;891358,0;86331,0;67893,0;52845,0;25123,0;4961,0;133,0;1,0;5,0;5994,0;24640,0;54612,0;81237,0;34,3;61,306;LINESTRING (3514390.055493898 5405784.162715342, 3514383.783876217 5405791.375064248, 3514420.253537329 5405828.088718545);[248, 249] +110,0;['DEBW522AA00c14303', 'DEBW522A00c14303', 'DEBW522A00c142f4', 'DEBW522AA000087bf', 'DEBW522AA0000fb90', 'DEBW522AA0003cd89', 'DEBW522AA0003cd86', 'DEBW522AA0003cd88', 'DEBW522AA0003cd87', 'DEBW522AA00026c6d', 'DEBW522AA00000611', 'DEBW522AA0001c08f', 'DEBW522AA0003c7ed', 'DEBW522AA000402de', 'DEBW522AA0003cd8a', 'DEBW522AA00026687', 'DEBW522AA0002d401', 'DEBW522AA00026686', 'DEBW522AA00026684', 'DEBW522AA0003c1d6'];Counter({'residential': 8, 'education': 6, 'non-heated': 2, 'hall': 2, 'sport location': 2});Counter({'1991-2010': 8, 'After 2011': 6, '1972-1990': 5, '1949-1971': 1});20,0;1524871,0;208088,0;154867,0;109033,0;36961,0;3967,0;103,0;13,0;25,0;7771,0;56774,0;136330,0;201560,0;487,9;213,578;LINESTRING (3515729.831058337 5406062.610988989, 3515781.262660725 5406084.3292743, 3515822.878746471 5405982.85930431, 3515825.372927189 5405976.471963209, 3515822.093859443 5405935.383092874);[229, 111, 112, 496] +111,0;['DEBW522AA0003cd84', 'DEBW522AA0000c2a7', 'DEBW522AA0003501f', 'DEBW522AA0003cd8d', 'DEBW522AA00017788'];Counter({'residential': 2, 'office and administration': 1, 'education': 1, 'industry': 1});Counter({'1972-1990': 2, 'After 2011': 1, '1991-2010': 1, '1949-1971': 1});5,0;285257,0;44597,0;32842,0;23055,0;8029,0;1021,0;49,0;7,0;15,0;1850,0;12365,0;29420,0;43498,0;161,4;63,031;LINESTRING (3515671.490837116 5406038.74986131, 3515689.03919287 5406045.927169722, 3515729.831058337 5406062.610988989);[110, 16, 112, 473] +112,0;['DEBW522AA000404cc', 'DEBW522AA000230d5', 'DEBW522AA00013d78', 'DEBW522AA00001d57', 'DEBW522AA0003e5c9', 'DEBW522AA0000e84d', 'DEBW522AA00019260', 'DEBW522AA000170c2', 'DEBW522AA0001ce26', 'DEBW522AA00016f81', 'DEBW522AA00017d3f', 'DEBW522AA0000f8fb', 'DEBW522AA00012c77', 'DEBW522AA00027114'];Counter({'residential': 14});Counter({'Before 1948': 7, '1972-1990': 5, '1949-1971': 2});14,0;403772,0;69553,0;49444,0;30479,0;5718,0;138,0;0,0;0,0;0,0;604,0;14547,0;44457,0;67916,0;182,6;128,971;LINESTRING (3515765.271995329 5405940.961597498, 3515765.479979464 5405979.472946215, 3515729.831058337 5406062.610988989);[234, 110, 111, 496, 474] +113,0;['DEBW522AA00000256', 'DEBW522AA0000024f', 'DEBW522AA0000024d', 'DEBW522AA012a1516', 'DEBW522AA000220f9'];Counter({'industry': 2, 'residential': 2, 'office and administration': 1});Counter({'1972-1990': 3, '1949-1971': 1, '1991-2010': 1});5,0;206233,0;31817,0;21398,0;12778,0;3185,0;225,0;4,0;0,0;1,0;457,0;6012,0;18704,0;31159,0;95,3;145,053;LINESTRING (3514353.246206732 5405868.852199149, 3514393.526883352 5405903.562586721, 3514406.202684733 5405888.938084989, 3514365.914632536 5405854.227588239, 3514353.246206732 5405868.852199149);[114] +114,0;['DEBW522AA0000025e', 'DEBW522AA0000024e', 'DEBW522AA0000024c'];Counter({'industry': 2, 'office and administration': 1});Counter({'1972-1990': 2, '1991-2010': 1});3,0;264937,0;32403,0;22055,0;13466,0;4219,0;445,0;15,0;1,0;3,0;975,0;6537,0;17792,0;30997,0;49,1;160,035;LINESTRING (3514436.539300913 5405921.543748296, 3514411.31303393 5405950.648397875, 3514337.482678108 5405887.027540914, 3514353.246206732 5405868.852199149);[113, 285, 286] +115,0;['DEBW522AA00016546'];Counter({'non-heated': 1});Counter({'After 2011': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;18,4;24,75;LINESTRING (3514278.127818298 5405698.259630052, 3514260.197495556 5405681.199568271);[41, 116] +116,0;['DEBW522AA00c14284'];Counter({'residential': 1});Counter({'After 2011': 1});1,0;6640,0;1525,0;1034,0;624,0;156,0;6,0;0,0;0,0;0,0;16,0;285,0;923,0;1489,0;26,4;35,989;LINESTRING (3514237.098497971 5405708.797986632, 3514260.197495556 5405681.199568271);[41, 115, 126, 127] +119,0;['DEBW522AA0001310b', 'DEBW522AA0001310c', 'DEBW522AA00013107', 'DEBW522AA0000a65f'];Counter({'industry': 2, 'residential': 1, 'education': 1});Counter({'1949-1971': 3, '1972-1990': 1});4,0;64694,0;9341,0;6604,0;4122,0;890,0;29,0;0,0;0,0;0,0;107,0;1955,0;5819,0;9076,0;30,9;36,694;LINESTRING (3514486.653925898 5405740.907005315, 3514493.929850455 5405737.54509559, 3514508.633350224 5405723.315277637, 3514514.541275737 5405717.603412643);[123, 261] +120,0;['DEBW522AA00c5d56f'];Counter({'residential': 1});Counter({'Before 1948': 1});1,0;45571,0;9125,0;6254,0;3789,0;877,0;51,0;0,0;0,0;0,0;139,0;1932,0;5705,0;9006,0;12,1;33,573;LINESTRING (3514701.354558892 5406012.062671794, 3514676.453047046 5405989.545036934);[394, 374, 121, 122] +121,0;['DEBW522AA00c5d55e', 'DEBW522AA0000d606', 'DEBW522AA000323b7', 'DEBW522AA000323b8'];Counter({'industry': 2, 'residential': 1, 'retail': 1});Counter({'1949-1971': 2, '1991-2010': 2});4,0;101842,0;7640,0;4160,0;1716,0;392,0;36,0;1,0;0,0;0,0;79,0;619,0;2865,0;7264,0;81,3;75,961;LINESTRING (3514696.657398238 5406066.241200648, 3514672.494973361 5406044.971023588, 3514698.274042505 5406015.568731543, 3514701.354558892 5406012.062671794);[120, 122] +122,0;['DEBW522AA0002ad44', 'DEBW522AA0000d605', 'DEBW522AA0000d607'];Counter({'retail': 2, 'industry': 1});Counter({'1991-2010': 3});3,0;1239670,0;90948,0;68826,0;49236,0;16973,0;1392,0;29,0;3,0;5,0;2544,0;21779,0;57220,0;86993,0;30,9;70,173;LINESTRING (3514752.90632679 5406059.67173536, 3514701.354558892 5406012.062671794);[366, 246, 503, 120, 121] +124,0;['DEBW522AA0000a66a', 'DEBW522AA0001188c', 'DEBW522AA0001ca87'];Counter({'residential': 2, 'non-heated': 1});Counter({'1949-1971': 2, '1972-1990': 1});3,0;79539,0;14581,0;10004,0;5866,0;1087,0;36,0;0,0;0,0;0,0;127,0;2801,0;8989,0;14391,0;35,8;52,667;LINESTRING (3514490.755811263 5405748.824340257, 3514486.84255094 5405753.262500118, 3514476.392514777 5405765.101275532, 3514483.958626356 5405771.737537843, 3514494.327608879 5405759.987532347, 3514497.783946033 5405756.070868142);[370, 123, 125] +126,0;['DEBW522AA00016547'];Counter({'retail': 1});Counter({'After 2011': 1});1,0;527796,0;41853,0;32470,0;24325,0;9573,0;1078,0;28,0;3,0;6,0;1844,0;11693,0;27334,0;39943,0;26,6;22,997;LINESTRING (3514253.421745569 5405724.997612189, 3514237.098497971 5405708.797986632);[116, 127] +129,0;['DEBW522AA00c60dcf', 'DEBW522AA00016cd1', 'DEBW522AA0000b3e4', 'DEBW522AA0000b3e6'];Counter({'residential': 3, 'non-heated': 1});Counter({'1972-1990': 3, '1949-1971': 1});4,0;166260,0;28089,0;19378,0;11803,0;2476,0;91,0;0,0;0,0;0,0;269,0;5395,0;17272,0;27739,0;75,7;78,86;LINESTRING (3514567.787602732 5405787.834446876, 3514537.223783528 5405789.1342636, 3514523.984042359 5405791.435363539, 3514511.656382998 5405796.229868807, 3514502.810103017 5405801.645017849, 3514500.137776056 5405803.58423127, 3514497.583562803 5405805.312458845, 3514493.462116262 5405807.859571713);[128, 130, 398, 281, 154] +131,0;['DEBW522AA0000605f', 'DEBW522AA0000605c'];Counter({'non-heated': 1, 'residential': 1});Counter({'1949-1971': 1, 'After 2011': 1});2,0;973162,0;108062,0;81763,0;57369,0;16069,0;324,0;1,0;0,0;0,0;845,0;21396,0;66417,0;102700,0;18,9;63,025;LINESTRING (3514238.638309937 5405791.394712596, 3514239.477015549 5405782.277930503, 3514211.333102586 5405753.559990998, 3514201.348558642 5405744.237919726);[298, 132, 127] +132,0;['DEBW522AA0000605d'];Counter({'retail': 1});Counter({'After 2011': 1});1,0;2230377,0;170574,0;129987,0;95154,0;35325,0;3589,0;88,0;8,0;17,0;6052,0;43917,0;108698,0;163094,0;27,6;52,196;LINESTRING (3514161.650004175 5405710.875996925, 3514180.959097662 5405723.246320897, 3514201.348558642 5405744.237919726);[131, 421, 163, 127] +134,0;['DEBW522AA000302c6', 'DEBW522AA00017b68', 'DEBW522AA00023b45', 'DEBW522AA0000fca8'];Counter({'residential': 4});Counter({'Before 1948': 3, '1949-1971': 1});4,0;25235,0;4616,0;3285,0;1984,0;372,0;12,0;0,0;0,0;0,0;48,0;990,0;2983,0;4533,0;53,2;50,388;LINESTRING (3515775.261879639 5405735.168932869, 3515781.715048588 5405732.006554903, 3515788.52239926 5405728.322509911, 3515795.163095959 5405723.803957173, 3515804.725642493 5405715.023307851, 3515814.609128112 5405704.486518217);[133, 135, 392, 314] +135,0;['DEBW522AA0001d1c9', 'DEBW522AA0001a219', 'DEBW522AA0002c20d', 'DEBW522AA0002a855', 'DEBW522AA0002bf14', 'DEBW522AA00027e11', 'DEBW522AA00013ee2', 'DEBW522AA00043613', 'DEBW522AA00028219', 'DEBW522AA00021154', 'DEBW522AA00004a0e', 'DEBW522AA000391fe', 'DEBW522AA00030907', 'DEBW522AA0003354a', 'DEBW522AA00031b53', 'DEBW522AA00001910', 'DEBW522AA0001adba', 'DEBW522AA000391a2', 'DEBW522AA0002bd35', 'DEBW522AA0000653e', 'DEBW522AA0003eab8', 'DEBW522AA0003014e', 'DEBW522AA0001f624', 'DEBW522AA0002f89c', 'DEBW522AA00041402', 'DEBW522AA00033ea3', 'DEBW522AA00026e38', 'DEBW522AA0003a92a', 'DEBW522AA00026193', 'DEBW522AA000099c6'];Counter({'residential': 30});Counter({'Before 1948': 15, '1972-1990': 9, '1949-1971': 5, '1991-2010': 1});30,0;210861,0;39017,0;26914,0;15860,0;2980,0;101,0;0,0;0,0;0,0;390,0;7906,0;24774,0;38359,0;679,6;150,516;LINESTRING (3515626.915501251 5405722.922017627, 3515646.662904753 5405724.489381747, 3515663.392325158 5405727.938908584, 3515702.703001646 5405736.466956321, 3515721.196567915 5405739.676933322, 3515735.279819872 5405740.772818378, 3515751.366874208 5405740.039451918, 3515765.1439428 5405737.642675052, 3515775.261879639 5405735.168932869);[68, 357, 133, 134, 428] +137,0;['DEBW522AA0001585f'];Counter({'education': 1});Counter({'After 2011': 1});1,0;570277,0;76812,0;56543,0;39347,0;12231,0;1008,0;34,0;5,0;10,0;2538,0;21195,0;50571,0;74821,0;29,4;78,83;LINESTRING (3514519.164949497 5405853.598306382, 3514492.78781728 5405830.01011014, 3514489.774894718 5405827.255548043, 3514460.457842839 5405800.990978721);[227, 136, 138, 281] +140,0;['DEBW522AA000355d5', 'DEBW522AA00004950', 'DEBW522AA00023cdb', 'DEBW522AA00008c75', 'DEBW522AA00002c41', 'DEBW522AA00026d56', 'DEBW522AA0001d7fe', 'DEBW522AA00017193', 'DEBW522AA00036439', 'DEBW522AA000384f9', 'DEBW522AA00038cfe', 'DEBW522AA0000fd43'];Counter({'residential': 12});Counter({'1972-1990': 12});12,0;351846,0;65035,0;44744,0;27424,0;6285,0;285,0;0,0;0,0;0,0;773,0;13146,0;40448,0;64174,0;436,8;209,724;LINESTRING (3515316.217529558 5405565.387993678, 3515312.229868192 5405564.476355607, 3515299.906992147 5405561.67375485, 3515270.568093161 5405555.155109008, 3515127.113706687 5405522.383863632, 3515128.049744482 5405515.880819255, 3515129.367609127 5405506.754336191);[8, 139, 12, 498] +141,0;['DEBW522AA000070ac', 'DEBW522AA000070ad', 'DEBW522AA00022ec5', 'DEBW522AA00029395', 'DEBW522AA00042be9', 'DEBW522AA00000a95', 'DEBW522AA00039a7d', 'DEBW522AA00039a80', 'DEBW522AA000443ef', 'DEBW522AA000349f2'];Counter({'residential': 6, 'industry': 3, 'hall': 1});Counter({'1972-1990': 7, '1949-1971': 2, '1991-2010': 1});10,0;429822,0;67564,0;46976,0;30690,0;9391,0;953,0;27,0;3,0;7,0;2387,0;17343,0;42814,0;66540,0;344,7;38,413;LINESTRING (3514771.577792884 5405849.440864366, 3514809.867207733 5405852.52196862);[301, 300] +142,0;['DEBW522AA00004540', 'DEBW522AA00029425', 'DEBW522AA00029423', 'DEBW522AA000328d9', 'DEBW522AA0001c32d', 'DEBW522AA0003d9dd', 'DEBW522AA0001f1a5', 'DEBW522AA0001d045', 'DEBW522AA0000208e', 'DEBW522AA0000208f', 'DEBW522AA00007b81', 'DEBW522AA00007b80', 'DEBW522AA0001c5f7', 'DEBW522AA0001c5f8', 'DEBW522AA00017f3a', 'DEBW522AA00017f3b', 'DEBW522AA0001c1e8', 'DEBW522AA0000ae64'];Counter({'residential': 12, 'non-heated': 6});Counter({'1949-1971': 10, '1991-2010': 5, '1972-1990': 2, 'After 2011': 1});18,0;539072,0;95101,0;65845,0;40786,0;9090,0;336,0;0,0;0,0;0,0;959,0;18566,0;58546,0;93599,0;309,4;145,405;LINESTRING (3514428.206203833 5405609.500005567, 3514283.040379922 5405601.166891429);[143, 144, 145, 151, 152] +143,0;['DEBW522AA0000038e', 'DEBW522AA0000780c', 'DEBW522AA0000b4c8', 'DEBW522AA0000b4c7'];Counter({'residential': 4});Counter({'1949-1971': 3, '1991-2010': 1});4,0;212670,0;38546,0;26936,0;16341,0;3282,0;121,0;0,0;0,0;0,0;399,0;7862,0;24282,0;37958,0;54,1;93,211;LINESTRING (3514348.660230373 5405534.988426626, 3514289.691164659 5405595.145301084, 3514283.040379922 5405601.166891429);[144, 145, 142] +145,0;['DEBW522AA000332d8'];Counter({'residential': 1});Counter({'After 2011': 1});1,0;78566,0;14292,0;9790,0;5751,0;1075,0;36,0;0,0;0,0;0,0;121,0;2720,0;8844,0;14102,0;16,5;47,059;LINESTRING (3514246.624331413 5405571.360193623, 3514283.040379922 5405601.166891429);[387, 142, 143, 144, 147, 372] +150,0;['DEBW522AA00013bd7', 'DEBW522AA00006bef', 'DEBW522AA0000a605', 'DEBW522AA0000a604', 'DEBW522AA000014cd', 'DEBW522AA000014cf', 'DEBW522AA000014ce', 'DEBW522AA00027ec2', 'DEBW522A0140870c'];Counter({'residential': 3, 'non-heated': 2, 'education': 2, 'office and administration': 1, 'hall': 1});Counter({'After 2011': 4, '1949-1971': 3, '1991-2010': 1, '1972-1990': 1});9,0;180296,0;29454,0;21049,0;13768,0;3928,0;385,0;14,0;2,0;4,0;867,0;7127,0;18762,0;28751,0;85,3;79,7;LINESTRING (3514637.349195167 5406071.057322857, 3514659.139318202 5406046.848915403, 3514627.41255375 5406018.375283062, 3514624.069818315 5406015.364014128);[148, 149] +153,0;['DEBW522AA00037719'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;68643,0;11878,0;8201,0;4860,0;890,0;26,0;0,0;0,0;0,0;81,0;2156,0;7245,0;11712,0;8,5;24,473;LINESTRING (3514563.209698252 5405838.955201179, 3514546.930790977 5405857.228705967);[38, 207, 154, 414] +154,0;['DEBW522AA00016cd0', 'DEBW522AA0003b46a', 'DEBW522AA0000f936'];Counter({'residential': 3});Counter({'1972-1990': 3});3,0;167670,0;29601,0;20749,0;12723,0;2532,0;84,0;0,0;0,0;0,0;289,0;6058,0;18611,0;29033,0;37,5;72,791;LINESTRING (3514493.462116262 5405807.859571713, 3514505.591926698 5405819.934498074, 3514546.930790977 5405857.228705967);[129, 38, 281, 398, 153] +156,0;['DEBW522AA00041501', 'DEBW522AA00006b63', 'DEBW522AA00014fc6'];Counter({'residential': 3});Counter({'Before 1948': 1, '1949-1971': 1, 'After 2011': 1});3,0;168355,0;29640,0;20941,0;13100,0;2835,0;110,0;1,0;0,0;0,0;359,0;6337,0;18710,0;29034,0;33,8;59,089;LINESTRING (3515080.775498763 5406352.436529479, 3515051.469830224 5406326.724875933, 3515048.128221055 5406323.44645784, 3515037.136144073 5406312.630010982);[262, 54, 189, 155, 157] +158,0;['DEBW522AA000102ed', 'DEBW522AA0001870f', 'DEBW522AA0000be1a', 'DEBW522AA0000be18', 'DEBW522AA0000532d', 'DEBW522AA0000532c', 'DEBW522AA0003dd82', 'DEBW522AA0003dd81', 'DEBW522AA0003dd80'];Counter({'residential': 5, 'non-heated': 2, 'retail': 1, 'industry': 1});Counter({'1991-2010': 3, '1949-1971': 3, '1972-1990': 2, 'Before 1948': 1});9,0;354795,0;53442,0;37204,0;22933,0;4925,0;193,0;1,0;0,0;0,0;564,0;10683,0;32825,0;52248,0;151,9;91,618;LINESTRING (3514707.054458801 5405875.10484296, 3514638.693865081 5405814.107670459);[160, 236, 300, 438, 159] +159,0;['DEBW522AA0002d0ec', 'DEBW522AA00031991'];Counter({'residential': 2});Counter({'Before 1948': 1, '1972-1990': 1});2,0;94255,0;16330,0;11231,0;6892,0;1425,0;49,0;0,0;0,0;0,0;144,0;3140,0;9961,0;16044,0;28,3;55,066;LINESTRING (3514638.693865081 5405814.107670459, 3514621.465251814 5405804.688135815, 3514591.010628369 5405786.582457589);[160, 130, 313, 158] +160,0;['DEBW522AA0003b8a7', 'DEBW522AA000074b0', 'DEBW522AA0002b26d', 'DEBW522AA00039a5a', 'DEBW522AA0002bcb5'];Counter({'residential': 5});Counter({'1949-1971': 2, '1972-1990': 2, 'After 2011': 1});5,0;249029,0;45454,0;31481,0;18730,0;3540,0;121,0;0,0;0,0;0,0;426,0;9034,0;28395,0;44722,0;63,5;68,642;LINESTRING (3514592.915421868 5405865.254684937, 3514638.693865081 5405814.107670459);[414, 36, 158, 159] +165,0;['DEBW522AA0000cad5', 'DEBW522AA0000cad4', 'DEBW522AA0000cad3', 'DEBW522AA0003cf9b', 'DEBW522AA0003cf99', 'DEBW522AA0003cf97'];Counter({'event location': 3, 'residential': 2, 'non-heated': 1});Counter({'1949-1971': 6});6,0;560719,0;110146,0;85983,0;68522,0;33718,0;8320,0;511,0;44,0;105,0;12912,0;42700,0;77685,0;106890,0;53,6;83,899;LINESTRING (3514428.443606128 5405565.640903681, 3514450.620502662 5405614.406176382, 3514454.319942746 5405615.994816438, 3514459.668894219 5405616.219866321, 3514466.15510229 5405614.257086621, 3514468.637855172 5405611.772458899, 3514470.378640699 5405609.208077709, 3514477.461812035 5405606.568490339);[185, 186] +167,0;['DEBW522AA0001c421'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;6279,0;1448,0;995,0;614,0;162,0;4,0;0,0;0,0;0,0;11,0;255,0;863,0;1422,0;20,9;28,562;LINESTRING (3515923.810095958 5406301.217086923, 3515933.856558274 5406305.482542462, 3515938.331229406 5406310.621854848, 3515945.125648725 5406319.059466491);[166, 168, 375, 379] +171,0;['DEBW522AA0003df81', 'DEBW522AA0003df83', 'DEBW522AA0003df82', 'DEBW522AA0003df7f', 'DEBW522AA00c50eb4', 'DEBW522AA0001350b', 'DEBW522AA0000f09b', 'DEBW522AA00c50e9f', 'DEBW522AA00036335'];Counter({'residential': 6, 'non-heated': 1, 'industry': 1, 'hall': 1});Counter({'1972-1990': 5, '1991-2010': 2, '1949-1971': 1, 'Before 1948': 1});9,0;571002,0;95156,0;67556,0;43536,0;10005,0;335,0;3,0;0,0;0,0;1000,0;19681,0;59422,0;92933,0;225,2;94,516;LINESTRING (3515143.46544511 5405710.121798154, 3515159.963275033 5405709.654733467, 3515170.140942969 5405714.920015307, 3515191.629287139 5405719.470800852, 3515199.999027885 5405722.106781987, 3515207.669322747 5405727.96586445, 3515209.176628908 5405733.052070472, 3515198.62462831 5405741.252783716, 3515198.735946449 5405743.566175216, 3515198.815317998 5405746.824733616, 3515198.927717774 5405748.737785493);[170, 172, 173] +173,0;['DEBW522AA00023672', 'DEBW522AA00023674', 'DEBW522AA0003e266', 'DEBW522AA0003c23d', 'DEBW522AA00022950', 'DEBW522AA0002294e'];Counter({'residential': 5, 'retail': 1});Counter({'1972-1990': 5, '1949-1971': 1});6,0;197082,0;35005,0;24077,0;14762,0;3107,0;130,0;1,0;0,0;0,0;371,0;6862,0;21614,0;34494,0;98,4;94,131;LINESTRING (3515292.413918784 5405744.632145028, 3515281.720012272 5405745.526063481, 3515252.041211864 5405748.181101277, 3515238.570063266 5405748.956358203, 3515215.265504993 5405750.350008809, 3515204.263997135 5405750.876261579, 3515198.927717774 5405748.737785493);[322, 420, 170, 171, 172, 177] +178,0;['DEBW522AA00002b12', 'DEBW522AA000279ac', 'DEBW522AA00007610', 'DEBW522AA00041fe2', 'DEBW522AA00032dcc', 'DEBW522AA00011c7b', 'DEBW522AA00004273', 'DEBW522AA00027112', 'DEBW522AA0002ef18', 'DEBW522AA000153b8', 'DEBW522AA000068e9'];Counter({'residential': 11});Counter({'1972-1990': 7, '1991-2010': 2, '1949-1971': 2});11,0;223298,0;39824,0;27609,0;17301,0;4142,0;164,0;0,0;0,0;0,0;470,0;8009,0;24676,0;39238,0;256,3;98,213;LINESTRING (3515456.866988848 5405957.530672511, 3515360.724162043 5405937.472271624);[50, 180, 179, 220] +181,0;['DEBW522AA0002247c', 'DEBW522AA00022480'];Counter({'residential': 2});Counter({'1972-1990': 2});2,0;15492,0;3481,0;2358,0;1402,0;345,0;16,0;0,0;0,0;0,0;40,0;647,0;2110,0;3436,0;324,9;333,509;LINESTRING (3515753.758020547 5406633.222644592, 3515765.2528511 5406615.99565147, 3515777.333295169 5406594.322067842, 3515783.203635839 5406583.818427951, 3515807.091834878 5406540.904303031, 3515828.226818514 5406505.255424742, 3515864.061393369 5406446.995368256, 3515904.150482028 5406383.643211219, 3515926.572156345 5406348.09843582);[168] +184,0;['DEBW522AA00016b04', 'DEBW522AA00016b05', 'DEBW522AA00016b06', 'DEBW522AA00016b07', 'DEBW522AA00016b01', 'DEBW522AA00016b02', 'DEBW522AA00016b03', 'DEBW522AA0000c2b2', 'DEBW522AA0000c2b3', 'DEBW522AA0000c2b0', 'DEBW522AA0000c2b1', 'DEBW522AA0000c2b5', 'DEBW522AA0000c2ae', 'DEBW522AA0000c2af', 'DEBW522AA0000c2ad'];Counter({'industry': 15});Counter({'1972-1990': 6, '1991-2010': 5, '1949-1971': 4});15,0;1074116,0;29440,0;13059,0;2755,0;137,0;0,0;0,0;0,0;0,0;0,0;257,0;5876,0;25660,0;461,3;274,674;LINESTRING (3515914.988801219 5405832.924167667, 3515911.584998152 5405846.503943577, 3515893.027940965 5405920.514856334, 3515907.251146852 5405960.27803125, 3515992.569924077 5405982.383449986, 3516008.549064632 5405996.096230236, 3516040.407058767 5406004.505347908);[183] +186,0;['DEBW522AA0000cad6', 'DEBW522AA0003cf98'];Counter({'residential': 1, 'industry': 1});Counter({'1949-1971': 2});2,0;10028,0;1994,0;1336,0;762,0;161,0;9,0;0,0;0,0;0,0;24,0;366,0;1197,0;1975,0;10,8;67,718;LINESTRING (3514473.289361209 5405591.756203254, 3514461.903523852 5405567.328263244, 3514451.822040846 5405555.72577162, 3514441.69189007 5405560.203584225, 3514428.443606128 5405565.640903681);[185, 165] +188,0;['DEBW522AA0001b99d', 'DEBW522AA000333da', 'DEBW522AA00016d18', 'DEBW522AA00016d19', 'DEBW522AA00016072', 'DEBW522AA0002ba3c', 'DEBW522AA0002ba3b', 'DEBW522AA0002fbd7', 'DEBW522AA00018026', 'DEBW522AA0001936a'];Counter({'residential': 5, 'non-heated': 2, 'restaurant': 1, 'health care': 1, 'hall': 1});Counter({'1949-1971': 7, '1991-2010': 2, '1972-1990': 1});10,0;275196,0;39568,0;28047,0;17851,0;4632,0;411,0;12,0;1,0;2,0;729,0;8322,0;24693,0;38647,0;235,4;200,73;LINESTRING (3515319.83009553 5406470.00573475, 3515315.90523235 5406465.157553782, 3515313.115074609 5406461.813755128, 3515278.644349188 5406420.473443388, 3515261.419770638 5406399.820079431, 3515250.033176438 5406385.677067333, 3515236.498455271 5406372.517989415, 3515228.448739122 5406366.023951851, 3515219.609148249 5406360.895624592, 3515204.095171191 5406354.170113809, 3515178.776841838 5406345.839017881, 3515170.549810522 5406345.116196047);[462, 211, 189, 190, 191] +189,0;['DEBW522AA00036642', 'DEBW522AA0003a794', 'DEBW522AA0002bb3a', 'DEBW522AA00008a7b', 'DEBW522AA00027d11', 'DEBW522AA000064f2', 'DEBW522AA00037f6a'];Counter({'residential': 7});Counter({'1991-2010': 3, 'Before 1948': 2, '1949-1971': 1, '1972-1990': 1});7,0;260157,0;46186,0;32267,0;19939,0;4226,0;166,0;1,0;0,0;0,0;503,0;9540,0;28863,0;45297,0;154,7;118,9;LINESTRING (3515170.549810522 5406345.116196047, 3515166.113657514 5406352.688493329, 3515145.467630537 5406377.287249528, 3515138.054710512 5406382.571814239, 3515132.201159997 5406384.479914901, 3515124.596000033 5406384.75969275, 3515118.369640483 5406383.230527277, 3515112.845206942 5406380.23533281, 3515108.945038691 5406377.044340343, 3515080.775498763 5406352.436529479);[262, 156, 188, 190, 191] +191,0;['DEBW522AA0003433d', 'DEBW522AA000115ff', 'DEBW522AA00010995', 'DEBW522AA00010994', 'DEBW522AA0002ee6e'];Counter({'residential': 4, 'hall': 1});Counter({'Before 1948': 2, '1949-1971': 2, '1991-2010': 1});5,0;167498,0;30231,0;21246,0;13455,0;3214,0;157,0;1,0;0,0;0,0;425,0;6557,0;19068,0;29707,0;63,2;126,761;LINESTRING (3515052.667366845 5406299.304597401, 3515063.662886625 5406303.348616839, 3515076.192515761 5406307.941685589, 3515163.091778412 5406339.858241878, 3515170.549810522 5406345.116196047);[97, 443, 188, 189, 190] +192,0;['DEBW522AA0002f237'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;56804,0;11126,0;7364,0;4105,0;737,0;31,0;0,0;0,0;0,0;98,0;2007,0;6762,0;11013,0;8,2;15,262;LINESTRING (3514196.103233215 5405606.885065685, 3514206.331228721 5405595.55675833);[193, 486] +197,0;['DEBW522AA007a9017', 'DEBW522AA0003f3a7'];Counter({'residential': 2});Counter({'After 2011': 2});2,0;120945,0;22020,0;15328,0;9037,0;1644,0;51,0;0,0;0,0;0,0;190,0;4355,0;13730,0;21633,0;44,0;80,771;LINESTRING (3514232.952402223 5405590.397412704, 3514229.202445204 5405594.224530868, 3514225.297702493 5405598.240310273, 3514223.168554098 5405600.41456291, 3514216.626890542 5405606.903573789, 3514186.895567987 5405639.055998933, 3514177.713847826 5405649.308281202);[384, 385, 194, 196, 349] +198,0;['DEBW522AA0000c2ac'];Counter({'industry': 1});Counter({'Before 1948': 1});1,0;97220,0;6914,0;2917,0;425,0;4,0;0,0;0,0;0,0;0,0;0,0;15,0;1486,0;6538,0;67,4;57,518;LINESTRING (3515785.730631321 5405801.432830905, 3515790.965946314 5405792.328623287, 3515794.600634321 5405782.786215771, 3515793.553460652 5405771.039882572, 3515789.734495775 5405762.466260386, 3515787.213446962 5405757.466011275, 3515784.874377596 5405753.077909474, 3515782.388375025 5405748.678275315);[228, 133, 199, 200, 229] +200,0;['DEBW522AA0001987e'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;61174,0;11522,0;7980,0;4603,0;809,0;27,0;0,0;0,0;0,0;105,0;2280,0;7285,0;11367,0;82,5;92,348;LINESTRING (3515848.750875685 5405685.444115918, 3515827.993874496 5405708.371948937, 3515809.013271023 5405729.403228806, 3515792.793676355 5405743.302886813, 3515787.325088874 5405746.490259865, 3515782.388375025 5405748.678275315);[133, 198, 199, 407] +204,0;['DEBW522AA012c25b5'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;344,0;65,0;45,0;27,0;5,0;0,0;0,0;0,0;0,0;1,0;14,0;42,0;63,0;7,2;16,847;LINESTRING (3515690.986549996 5406364.438864949, 3515691.733780239 5406359.959333176, 3515693.246977991 5406357.450295194, 3515695.874815648 5406355.711696436, 3515699.072448484 5406355.153479494, 3515702.047708188 5406355.295243268);[101, 102, 203, 206] +205,0;['DEBW522AA0001351b', 'DEBW522AA0001351c'];Counter({'hall': 2});Counter({'1972-1990': 2});2,0;10638,0;2416,0;1725,0;1182,0;372,0;37,0;1,0;0,0;0,0;101,0;745,0;1655,0;2404,0;22,7;6,744;LINESTRING (3515244.992795076 5405721.661519114, 3515244.897306943 5405718.93670642, 3515244.753878631 5405714.92177095);[501, 499, 500] +206,0;['DEBW522AA012c25a1', 'DEBW522AA00023d08'];Counter({'residential': 2});Counter({'1991-2010': 2});2,0;132207,0;22193,0;15880,0;10368,0;2524,0;91,0;0,0;0,0;0,0;274,0;4919,0;14006,0;21639,0;30,0;30,97;LINESTRING (3515663.936943507 5406350.140068986, 3515681.977797277 5406362.156216939, 3515690.986549996 5406364.438864949);[101, 204, 306, 307] +207,0;['DEBW522AA000270cc', 'DEBW522AA000270cd', 'DEBW522AA000270cf', 'DEBW522AA0002d0ed', 'DEBW522AA00c60dbe', 'DEBW522AA00016cd2'];Counter({'non-heated': 4, 'retail': 1, 'residential': 1});Counter({'1991-2010': 3, '1972-1990': 2, 'Before 1948': 1});6,0;236169,0;21780,0;15690,0;10369,0;2950,0;230,0;6,0;1,0;1,0;505,0;4955,0;13648,0;21143,0;72,7;30,966;LINESTRING (3514563.209698252 5405838.955201179, 3514583.807202523 5405815.833236878);[153, 414] +208,0;['DEBW522AA00020324', 'DEBW522AA00022a4c', 'DEBW522AA00022a4d', 'DEBW522AA00001b66', 'DEBW522AA00001b67', 'DEBW522AA00001b68', 'DEBW522AA00001b69'];Counter({'residential': 5, 'office and administration': 1, 'hall': 1});Counter({'1991-2010': 4, '1949-1971': 2, 'Before 1948': 1});7,0;3371031,0;531751,0;433792,0;379448,0;241761,0;129272,0;60198,0;37903,0;46220,0;141717,0;258225,0;395036,0;513939,0;259,8;312,033;LINESTRING (3515837.643534136 5406279.143652192, 3515839.430001304 5406273.555005966, 3515847.304248847 5406253.471093028, 3515852.738076237 5406238.996228185, 3515862.088290688 5406211.443430619, 3515872.237779562 5406192.300112983, 3515901.843029992 5406144.787496743, 3515905.45078252 5406139.559888774, 3515911.68817101 5406134.617747244, 3516032.154966877 5406048.50840727);[329, 183, 71] +209,0;['DEBW522AA000346e5', 'DEBW522AA000346e4', 'DEBW522AA0000f5ec', 'DEBW522AA00039cda', 'DEBW522AA00013c80', 'DEBW522AA0002ef3c', 'DEBW522AA0002ef3d', 'DEBW522AA0003fc19', 'DEBW522AA000049ab', 'DEBW522AA00003b36', 'DEBW522AA00007332', 'DEBW522AA00014a41', 'DEBW522AA000216e1', 'DEBW522AA000216de', 'DEBW522AA000216df', 'DEBW522AA000277c1', 'DEBW522AA000277c2'];Counter({'residential': 15, 'hall': 1, 'non-heated': 1});Counter({'1949-1971': 10, '1972-1990': 3, 'Before 1948': 2, '1991-2010': 2});17,0;277753,0;54309,0;37123,0;22480,0;5244,0;282,0;0,0;0,0;0,0;733,0;10984,0;33757,0;53711,0;277,4;73,943;LINESTRING (3515480.140282648 5406500.993623404, 3515408.21506832 5406483.836894202);[238, 239, 240, 210, 211, 212] +210,0;['DEBW522AA00010f9c', 'DEBW522AA00031132'];Counter({'residential': 2});Counter({'1991-2010': 2});2,0;45400,0;8856,0;5958,0;3527,0;780,0;40,0;0,0;0,0;0,0;109,0;1742,0;5442,0;8774,0;24,1;36,599;LINESTRING (3515400.343912555 5406519.579295299, 3515408.21506832 5406483.836894202);[359, 360, 209, 211, 212] +211,0;['DEBW522AA0002ab9c', 'DEBW522AA0001fca0', 'DEBW522AA0003b629', 'DEBW522AA00028346', 'DEBW522AA0000c358', 'DEBW522AA000051b2'];Counter({'residential': 6});Counter({'1991-2010': 5, '1949-1971': 1});6,0;305377,0;52482,0;37012,0;24015,0;6268,0;298,0;1,0;0,0;0,0;688,0;11058,0;32578,0;51481,0;87,5;91,547;LINESTRING (3515319.83009553 5406470.00573475, 3515329.077846146 5406465.460378719, 3515358.528574749 5406472.302170489, 3515408.21506832 5406483.836894202);[462, 209, 210, 212, 188] +212,0;['DEBW522AA00042afa', 'DEBW522AA00042afb', 'DEBW522AA00009fe0', 'DEBW522AA0003533e', 'DEBW522AA00036399', 'DEBW522AA00002d2c', 'DEBW522AA0003639a', 'DEBW522AA00003c55', 'DEBW522AA0003983f', 'DEBW522AA0002af84', 'DEBW522AA000247ec', 'DEBW522AA0001cf24', 'DEBW522AA00006e1e', 'DEBW522AA00006e1c', 'DEBW522AA00006e1d', 'DEBW522AA00039c95'];Counter({'residential': 13, 'non-heated': 2, 'hall': 1});Counter({'1949-1971': 8, '1991-2010': 4, 'Before 1948': 3, '1972-1990': 1});16,0;262937,0;47702,0;33289,0;20542,0;4578,0;210,0;1,0;0,0;0,0;601,0;9970,0;30000,0;46826,0;322,6;92,767;LINESTRING (3515429.996943924 5406393.663797638, 3515415.715155298 5406452.163642145, 3515408.21506832 5406483.836894202);[35, 39, 209, 210, 211] +213,0;['DEBW522AA000124f5', 'DEBW522AA0001d044', 'DEBW522AA0001d047'];Counter({'residential': 2, 'retail': 1});Counter({'1972-1990': 2, '1991-2010': 1});3,0;319617,0;35204,0;25451,0;17099,0;4938,0;358,0;8,0;1,0;2,0;800,0;8083,0;22140,0;34174,0;37,2;22,192;LINESTRING (3514338.711455605 5405670.145245355, 3514340.09633486 5405668.80318374, 3514353.508785709 5405653.613294042);[337, 377] +220,0;['DEBW522AA0001f48b', 'DEBW522AA0002a57c', 'DEBW522AA0000ec46', 'DEBW522AA0003e21f'];Counter({'residential': 3, 'office and administration': 1});Counter({'1972-1990': 4});4,0;198092,0;35979,0;25602,0;16797,0;4919,0;456,0;13,0;1,0;3,0;907,0;8319,0;22823,0;35202,0;54,4;60,291;LINESTRING (3515456.866988848 5405957.530672511, 3515461.970935973 5405934.491643699, 3515453.919138311 5405923.271013454, 3515431.461416581 5405918.883360896);[178, 50] +222,0;['DEBW522AA0135497d', 'DEBW522AA0001b622', 'DEBW522AA0001b627', 'DEBW522AA0002c32e', 'DEBW522AA0002f096', 'DEBW522AA0002f094', 'DEBW522AA0003584f', 'DEBW522AA0001f0ce', 'DEBW522AA000327e4'];Counter({'residential': 7, 'non-heated': 2});Counter({'1972-1990': 5, 'Before 1948': 2, '1949-1971': 2});9,0;290455,0;51939,0;36042,0;21559,0;3988,0;123,0;0,0;0,0;0,0;440,0;10201,0;32301,0;51051,0;206,1;55,1;LINESTRING (3514788.910048097 5405640.418741201, 3514807.026067229 5405692.455348196);[446, 447] +229,0;['DEBW522AA00035e19', 'DEBW522AA0001828d', 'DEBW522AA0003e30f', 'DEBW522AA0003c529', 'DEBW522AA00020acd', 'DEBW522AA00036f34', 'DEBW522AA00004282', 'DEBW522AA00015c97'];Counter({'residential': 8});Counter({'1991-2010': 8});8,0;229589,0;42616,0;29978,0;18742,0;4128,0;165,0;0,0;0,0;0,0;609,0;9728,0;27453,0;41600,0;94,4;139,497;LINESTRING (3515822.093859443 5405935.383092874, 3515815.488832381 5405885.499560766, 3515788.471767433 5405809.169374337, 3515785.730631321 5405801.432830905);[228, 198, 110, 496] +230,0;['DEBW522AA00023e40', 'DEBW522AA18228c0', 'DEBW522AA00c4ee47'];Counter({'education': 1, 'hall': 1, 'residential': 1});Counter({'1972-1990': 2, '1949-1971': 1});3,0;589970,0;89051,0;65243,0;44176,0;12978,0;932,0;17,0;1,0;3,0;2305,0;23030,0;57915,0;87092,0;79,9;109,035;LINESTRING (3515631.25218048 5405735.678324363, 3515636.060400624 5405758.544601351, 3515642.824648612 5405783.518128638, 3515658.489209744 5405820.993814003, 3515669.114017849 5405836.959303507);[356, 199, 104, 232, 231, 344] +231,0;['DEBW522AA0003cc24', 'DEBW522AA0003fc99', 'DEBW522AA18228cf'];Counter({'non-heated': 1, 'residential': 1, 'education': 1});Counter({'1972-1990': 2, '1949-1971': 1});3,0;161456,0;25080,0;18128,0;12206,0;3460,0;299,0;12,0;2,0;4,0;741,0;6602,0;16383,0;24674,0;51,9;58,218;LINESTRING (3515724.793040689 5405819.977969482, 3515675.461534639 5405834.73064202, 3515669.114017849 5405836.959303507);[228, 230, 104, 232, 233, 234] +232,0;['DEBW522AA0002f389', 'DEBW522AA0000b6f6', 'DEBW522AA0004423a', 'DEBW522AA0003b397', 'DEBW522AA00029119', 'DEBW522AA00019093', 'DEBW522AA0001c1b1'];Counter({'residential': 7});Counter({'1972-1990': 7});7,0;198233,0;36156,0;24877,0;14797,0;2716,0;80,0;0,0;0,0;0,0;332,0;7351,0;22788,0;35395,0;90,5;70,987;LINESTRING (3515697.236486564 5405902.13800032, 3515669.114017849 5405836.959303507);[230, 231, 104, 17, 470] +234,0;['DEBW522AA00023e8a', 'DEBW522AA0003a22d', 'DEBW522AA0001e13c', 'DEBW522AA000221db', 'DEBW522AA00042bf4', 'DEBW522AA0002e46e', 'DEBW522AA00024388', 'DEBW522AA00024b86', 'DEBW522AA000298ef', 'DEBW522AA00025607', 'DEBW522AA00026931', 'DEBW522AA0002af5f', 'DEBW522AA000416dc', 'DEBW522AA0000967d'];Counter({'residential': 14});Counter({'1949-1971': 14});14,0;410416,0;71433,0;49817,0;30208,0;5503,0;134,0;0,0;0,0;0,0;588,0;14571,0;45113,0;69631,0;187,1;128,526;LINESTRING (3515724.793040689 5405819.977969482, 3515757.617671085 5405898.248001459, 3515763.152651296 5405915.878615957, 3515765.271995329 5405940.961597498);[228, 231, 233, 112, 496, 474] +235,0;['DEBW522AA0002331a', 'DEBW522AA000366cf', 'DEBW522AA00031124', 'DEBW522AA00031122', 'DEBW522AA0002f8c2', 'DEBW522AA00021f10'];Counter({'residential': 6});Counter({'1972-1990': 4, '1991-2010': 1, '1949-1971': 1});6,0;162091,0;31597,0;21477,0;12608,0;2661,0;132,0;0,0;0,0;0,0;372,0;6254,0;19707,0;31292,0;159,0;62,77;LINESTRING (3515830.897703512 5405566.94793475, 3515859.829750657 5405576.782321868, 3515870.930221458 5405546.543309642);[254, 255] +236,0;['DEBW522AA000119c4', 'DEBW522AA000119c6', 'DEBW522AA000119c7', 'DEBW522AA0003e0c7', 'DEBW522AA0003e0c6', 'DEBW522AA00042370', 'DEBW522AA000158f8', 'DEBW522AA000158f7', 'DEBW522AA000158e6', 'DEBW522AA00031eeb', 'DEBW522AA0000249a', 'DEBW522AA00039a7e', 'DEBW522AA00039a7c', 'DEBW522AA00039a88', 'DEBW522AA00039a89', 'DEBW522AA00039a86', 'DEBW522AA00039a87', 'DEBW522AA00039a85', 'DEBW522AA00039a8a', 'DEBW522AA00039a8e', 'DEBW522AA00039a8b', 'DEBW522AA00039a91', 'DEBW522AA00042c5b', 'DEBW522AA00042c5a', 'DEBW522AA00c5d585', 'DEBW522AA000402ed', 'DEBW522AA00033ef5', 'DEBW522AA0004141e', 'DEBW522AA0002e5cc', 'DEBW522AA0002f4d0'];Counter({'residential': 16, 'industry': 10, 'non-heated': 2, 'office and administration': 2});Counter({'1972-1990': 11, 'Before 1948': 8, '1991-2010': 6, '1949-1971': 4, 'After 2011': 1});30,0;2302486,0;332817,0;242150,0;169302,0;61002,0;8347,0;294,0;22,0;49,0;14219,0;87575,0;209537,0;321086,0;955,1;156,767;LINESTRING (3514707.054458801 5405875.10484296, 3514822.873143579 5405980.754837738);[237, 300, 19, 438, 158] +237,0;['DEBW522AA00042772', 'DEBW522AA000408b2', 'DEBW522AA000408b1', 'DEBW522AA000408b4', 'DEBW522AA000408b3', 'DEBW522AA0001e20b', 'DEBW522AA000231c8', 'DEBW522AA00001f9d', 'DEBW522AA0000c904'];Counter({'retail': 4, 'residential': 4, 'industry': 1});Counter({'1972-1990': 8, '1949-1971': 1});9,0;520927,0;70524,0;50536,0;32193,0;7643,0;455,0;9,0;0,0;2,0;1148,0;15490,0;44457,0;68659,0;163,4;91,607;LINESTRING (3514762.433337968 5406049.588104979, 3514766.780648781 5406044.951105056, 3514768.446472398 5406042.953769874, 3514772.315407249 5406038.615773967, 3514822.873143579 5405980.754837738);[96, 236, 19, 246, 247] +238,0;['DEBW522AA0002ccff', 'DEBW522AA0002ccfe', 'DEBW522AA0002fb8a', 'DEBW522AA00013682', 'DEBW522AA00032324', 'DEBW522AA000447d5', 'DEBW522AA0001e44a'];Counter({'residential': 7});Counter({'1949-1971': 4, '1972-1990': 3});7,0;251421,0;46131,0;31766,0;19529,0;4478,0;203,0;0,0;0,0;0,0;539,0;9254,0;28552,0;45488,0;95,2;80,171;LINESTRING (3515558.457065435 5406518.135618098, 3515480.140282648 5406500.993623404);[239, 240, 209, 241, 242] +239,0;['DEBW522AA000049ac', 'DEBW522AA00013e7a', 'DEBW522AA00013e79', 'DEBW522AA0002910b'];Counter({'residential': 2, 'non-heated': 1, 'industry': 1});Counter({'1949-1971': 4});4,0;70584,0;12246,0;8486,0;5171,0;1161,0;47,0;0,0;0,0;0,0;125,0;2375,0;7513,0;12039,0;64,8;35,506;LINESTRING (3515488.456776671 5406466.475831361, 3515480.140282648 5406500.993623404);[489, 238, 240, 209, 509] +240,0;['DEBW522AA0003a0b9', 'DEBW522AA00026a81', 'DEBW522AA0002a8c5', 'DEBW522AA00036e02', 'DEBW522AA00030c31', 'DEBW522AA00022113', 'DEBW522AA00012029', 'DEBW522AA0002cd00', 'DEBW522AA00006d6d', 'DEBW522AA0003fec8', 'DEBW522AA00007c7e'];Counter({'residential': 11});Counter({'1949-1971': 9, '1972-1990': 2});11,0;324674,0;63417,0;43302,0;26183,0;6023,0;311,0;1,0;0,0;0,0;862,0;12987,0;39585,0;62624,0;158,6;91,451;LINESTRING (3515431.319296695 5406559.698617866, 3515467.046629191 5406554.814831385, 3515480.140282648 5406500.993623404);[209, 238, 239] +241,0;['DEBW522AA0000699b'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;38542,0;7691,0;5226,0;3044,0;626,0;30,0;0,0;0,0;0,0;93,0;1545,0;4835,0;7602,0;16,2;35,434;LINESTRING (3515567.287758925 5406483.819535716, 3515558.457065435 5406518.135618098);[488, 489, 238, 242] +242,0;['DEBW522AA00c3388b', 'DEBW522AA000145d5', 'DEBW522AA000145d4', 'DEBW522AA0001b3c5', 'DEBW522AA000398ab', 'DEBW522AA000043e6', 'DEBW522AA000043e5', 'DEBW522AA000043e7', 'DEBW522AA0003d419', 'DEBW522AA0003d41a', 'DEBW522AA00039f96', 'DEBW522AA00012cff', 'DEBW522AA0003442b', 'DEBW522AA00005fed', 'DEBW522AA0001ac07', 'DEBW522AA0001ac08', 'DEBW522AA00012eaa', 'DEBW522AA00013cf7', 'DEBW522AA0002e99d', 'DEBW522AA00012f47', 'DEBW522AA000254d1', 'DEBW522AA0002ed48', 'DEBW522AA0002ed38', 'DEBW522AA00040989', 'DEBW522AA00032915', 'DEBW522AA00022e7c', 'DEBW522AA00024c09', 'DEBW522AA000101b5', 'DEBW522AA000105df', 'DEBW522AA00022e7b', 'DEBW522AA00020c28'];Counter({'residential': 31});Counter({'1949-1971': 17, '1972-1990': 6, '1991-2010': 4, 'Before 1948': 3, 'After 2011': 1});31,0;848001,0;159894,0;111993,0;69814,0;16135,0;641,0;1,0;0,0;0,0;1944,0;32915,0;99673,0;157055,0;442,3;225,286;LINESTRING (3515383.978865559 5406630.807611369, 3515394.445204179 5406629.234912972, 3515453.259176019 5406599.192737154, 3515493.424402265 5406583.445340277, 3515506.633891491 5406578.266208709, 3515539.461646108 5406569.805153941, 3515546.49539335 5406566.188166168, 3515558.457065435 5406518.135618098);[483, 238, 241, 478] +243,0;['DEBW522AA00030adc', 'DEBW522AA00001ff3', 'DEBW522AA00013bd6', 'DEBW522AA000343f8', 'DEBW522AA000343f6', 'DEBW522AA00029d75', 'DEBW522AA00029d76', 'DEBW522AA000298c6', 'DEBW522AA000298c5', 'DEBW522AA000298c4', 'DEBW522AA00027ec1'];Counter({'residential': 5, 'non-heated': 4, 'office and administration': 2});Counter({'1949-1971': 7, '1972-1990': 4});11,0;91348,0;15955,0;11409,0;7479,0;2092,0;175,0;4,0;0,0;1,0;364,0;3611,0;10048,0;15540,0;84,3;39,03;LINESTRING (3514608.905746836 5406068.481165659, 3514638.531523807 5406093.89105025);[323, 324, 244, 245] +244,0;['DEBW522AA00006791', 'DEBW522AA00033051', 'DEBW522AA0003525a', 'DEBW522AA00012699', 'DEBW522AA00013bd8', 'DEBW522AA0002ca7a', 'DEBW522AA00020eac', 'DEBW522AA0002cb45', 'DEBW522AA0002cb44', 'DEBW522AA000130bc', 'DEBW522AA00011184', 'DEBW522AA0001118a', 'DEBW522AA0003a3e4', 'DEBW522AA0003a3e3', 'DEBW522AA0003a3e5'];Counter({'residential': 11, 'non-heated': 3, 'industry': 1});Counter({'1949-1971': 11, 'After 2011': 2, 'Before 1948': 1, '1972-1990': 1});15,0;149559,0;23632,0;16300,0;9856,0;1977,0;61,0;0,0;0,0;0,0;215,0;4596,0;14289,0;23046,0;154,8;61,476;LINESTRING (3514685.194695521 5406133.913616211, 3514638.531523807 5406093.89105025);[365, 366, 243, 245] +245,0;['DEBW522AA00001ff2', 'DEBW522AA0000f64b', 'DEBW522AA0002cb43'];Counter({'residential': 3});Counter({'1949-1971': 2, '1972-1990': 1});3,0;47087,0;8625,0;6060,0;3778,0;840,0;35,0;0,0;0,0;0,0;111,0;1874,0;5473,0;8477,0;25,1;31,315;LINESTRING (3514617.896942046 5406117.446427171, 3514638.531523807 5406093.89105025);[339, 243, 244, 340] +247,0;['DEBW522AA0000d3f4', 'DEBW522AA0002204c', 'DEBW522AA000120ab', 'DEBW522AA000120a9', 'DEBW522AA000377e4', 'DEBW522AA00024091', 'DEBW522AA00024090', 'DEBW522AA0002408f'];Counter({'residential': 6, 'retail': 1, 'industry': 1});Counter({'1972-1990': 5, '1991-2010': 2, '1949-1971': 1});8,0;391820,0;53462,0;38337,0;24851,0;5992,0;304,0;5,0;0,0;1,0;807,0;11777,0;33736,0;52010,0;134,7;123,088;LINESTRING (3514762.433337968 5406049.588104979, 3514775.82846434 5406060.666095059, 3514848.951815422 5406124.947038906, 3514853.871593671 5406131.688023483);[96, 355, 237, 20, 246] +250,0;['DEBW522AA0002c934', 'DEBW522AA0002c935'];Counter({'office and administration': 2});Counter({'1972-1990': 1, '1949-1971': 1});2,0;126996,0;21845,0;16055,0;11455,0;3952,0;394,0;11,0;1,0;2,0;695,0;5348,0;13708,0;21191,0;50,5;17,437;LINESTRING (3515354.579466866 5405757.846173813, 3515372.003605343 5405757.170974317);[253, 215] +251,0;['DEBW522AA0000a607'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;8794,0;1716,0;1235,0;778,0;175,0;9,0;0,0;0,0;0,0;29,0;404,0;1140,0;1677,0;12,3;39,66;LINESTRING (3514590.921946091 5406053.054616258, 3514598.468233257 5406044.477970876, 3514617.127667008 5406023.286079448);[324, 252, 149, 444] +252,0;['DEBW522AA00020dc1', 'DEBW522AA00020dc3', 'DEBW522AA00020dbf', 'DEBW522AA00020dbb', 'DEBW522AA00020dbd'];Counter({'office and administration': 3, 'non-heated': 1, 'industry': 1});Counter({'1972-1990': 4, 'After 2011': 1});5,0;674169,0;115240,0;87163,0;64149,0;24886,0;3129,0;110,0;11,0;23,0;5520,0;32858,0;75076,0;110991,0;52,5;169,565;LINESTRING (3514492.457683074 5405909.666274259, 3514562.067026075 5405970.965159616, 3514563.069181328 5405975.538333183, 3514577.445293757 5405988.230876978, 3514604.94254351 5406012.967819115, 3514617.127667008 5406023.286079448);[251, 149] +258,0;['DEBW522AA00027795', 'DEBW522AA000303cb', 'DEBW522AA00006859', 'DEBW522AA000266cd', 'DEBW522AA00038baf', 'DEBW522AA00038bae', 'DEBW522AA00034603'];Counter({'residential': 7});Counter({'1991-2010': 4, 'After 2011': 1, '1972-1990': 1, '1949-1971': 1});7,0;277371,0;50797,0;35249,0;21562,0;4646,0;180,0;0,0;0,0;0,0;590,0;10462,0;31981,0;49879,0;98,3;115,85;LINESTRING (3515267.798464726 5405920.326752629, 3515283.849380651 5405805.594369132);[321, 259, 260, 322] +259,0;['DEBW522AA00038b24', 'DEBW522AA00018a70', 'DEBW522AA0003200e', 'DEBW522AA00043989'];Counter({'residential': 4});Counter({'1972-1990': 3, '1949-1971': 1});4,0;117316,0;21813,0;15155,0;9277,0;1921,0;73,0;0,0;0,0;0,0;258,0;4636,0;13942,0;21448,0;77,2;84,391;LINESTRING (3515183.507521228 5405916.217243531, 3515267.798464726 5405920.326752629);[258, 260, 453, 424] +261,0;['DEBW522AA00000178', 'DEBW522AA00000177', 'DEBW522AA0002bdc0', 'DEBW522AA00035f5e', 'DEBW522AA00003b25', 'DEBW522AA00042c77', 'DEBW522AA00042c76', 'DEBW522AA0002fb32', 'DEBW522AA0001df36', 'DEBW522AA0001df35', 'DEBW522AA0001df38', 'DEBW522AA0001df37', 'DEBW522AA00018b9f', 'DEBW522AA00018b9e', 'DEBW522AA0003a7b5', 'DEBW522AA0003a7b4', 'DEBW522AA000152d1', 'DEBW522AA0001205c', 'DEBW522AA0001205d', 'DEBW522AA0003efb0'];Counter({'residential': 13, 'non-heated': 7});Counter({'1949-1971': 16, 'After 2011': 2, '1991-2010': 1, '1972-1990': 1});20,0;427087,0;69308,0;49051,0;30587,0;5847,0;128,0;0,0;0,0;0,0;551,0;14137,0;43576,0;67390,0;363,4;115,175;LINESTRING (3514440.543682368 5405635.364882839, 3514486.653925898 5405740.907005315);[461, 119, 152, 123] +262,0;['DEBW522AA00022b15', 'DEBW522AA00042767', 'DEBW522AA0003cd5d', 'DEBW522AA000414ff', 'DEBW522AA0003dadd', 'DEBW522AA0003f9f7', 'DEBW522AA00022263'];Counter({'residential': 6, 'office and administration': 1});Counter({'1991-2010': 5, '1972-1990': 2});7,0;368265,0;64023,0;44501,0;27364,0;5746,0;224,0;2,0;0,0;0,0;649,0;12745,0;39520,0;62746,0;204,9;45,886;LINESTRING (3515050.324609252 5406386.762122462, 3515080.775498763 5406352.436529479);[156, 189] +263,0;['DEBW522AA0000a661', 'DEBW522AA0000a662', 'DEBW522AA0000a65d', 'DEBW522AA0000a65e'];Counter({'hall': 2, 'education': 2});Counter({'1972-1990': 3, 'After 2011': 1});4,0;498497,0;67640,0;51636,0;39258,0;17220,0;5516,0;2249,0;1324,0;1751,0;7146,0;23260,0;46350,0;65676,0;52,9;31,791;LINESTRING (3514549.806677297 5405779.425160783, 3514552.502519904 5405771.247363555, 3514556.990497821 5405752.020312288, 3514554.476166081 5405749.678470128);[275, 276] +264,0;['DEBW522AA000328db', 'DEBW522AA000328dc', 'DEBW522AA00040185', 'DEBW522AA0001661e', 'DEBW522AA000084aa', 'DEBW522AA00040a56', 'DEBW522AA0000fc27', 'DEBW522AA000290c7'];Counter({'residential': 7, 'hall': 1});Counter({'After 2011': 4, '1949-1971': 2, '1972-1990': 1, 'Before 1948': 1});8,0;193847,0;32090,0;22222,0;13555,0;2761,0;90,0;0,0;0,0;0,0;279,0;6060,0;19703,0;31472,0;162,3;53,057;LINESTRING (3515568.603745155 5405607.706106232, 3515565.673590224 5405607.052991773, 3515541.923946694 5405601.738313421, 3515516.867591943 5405595.941940511);[265, 266, 363, 364] +265,0;['DEBW522AA00031322'];Counter({'residential': 1});Counter({'After 2011': 1});1,0;29222,0;5461,0;3783,0;2292,0;515,0;25,0;0,0;0,0;0,0;62,0;1091,0;3413,0;5404,0;16,4;44,59;LINESTRING (3515473.422718264 5405585.902536273, 3515481.654993377 5405587.782356584, 3515516.867591943 5405595.941940511);[264, 266, 92, 382] +266,0;['DEBW522AA0002fdf2', 'DEBW522AA0003aa50', 'DEBW522AA0003aa51', 'DEBW522AA0001661f', 'DEBW522AA00008cc2', 'DEBW522AA00003380', 'DEBW522AA00031f85'];Counter({'residential': 5, 'non-heated': 2});Counter({'1972-1990': 4, 'Before 1948': 2, '1949-1971': 1});7,0;316898,0;45223,0;32294,0;20732,0;4795,0;157,0;1,0;0,0;0,0;496,0;9435,0;28406,0;44093,0;118,2;91,638;LINESTRING (3515457.863507188 5405624.370444243, 3515507.234415471 5405635.760556808, 3515514.099998226 5405608.278195349, 3515516.867591943 5405595.941940511);[264, 265] +267,0;['DEBW522AA00005336'];Counter({'retail': 1});Counter({'1949-1971': 1});1,0;49269,0;4767,0;3631,0;2722,0;1104,0;153,0;6,0;1,0;1,0;257,0;1410,0;3155,0;4603,0;40,3;4,47;LINESTRING (3514594.188750635 5405762.470081883, 3514594.185652582 5405757.999584151);[268, 269] +269,0;['DEBW522AA0000e0b5'];Counter({'retail': 1});Counter({'1991-2010': 1});1,0;55262,0;5164,0;3798,0;2693,0;934,0;100,0;3,0;0,0;1,0;178,0;1306,0;3288,0;5017,0;8,4;32,264;LINESTRING (3514565.529286161 5405768.923537663, 3514567.835917803 5405763.502653109, 3514594.188750635 5405762.470081883);[291, 519, 267, 268] +271,0;['DEBW522AA00043f93'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;97708,0;3553,0;1451,0;228,0;4,0;0,0;0,0;0,0;0,0;0,0;9,0;621,0;3155,0;22,7;148,379;LINESTRING (3515367.464505464 5406167.84351874, 3515375.268305575 5406164.89566046, 3515383.110977474 5406150.426940472, 3515385.925560858 5406144.885450525, 3515396.33972357 5406117.07902935, 3515404.317775889 5406096.149621407, 3515411.244420493 5406078.175429916, 3515415.664774195 5406055.123360353, 3515411.816664909 5406032.916016641);[270, 272, 273, 274] +277,0;['DEBW522AA00042aaf', 'DEBW522AA00042aae', 'DEBW522AA00042aab'];Counter({'industry': 3});Counter({'1972-1990': 3});3,0;234747,0;6592,0;2735,0;525,0;20,0;0,0;0,0;0,0;0,0;0,0;45,0;1234,0;5818,0;48,1;13,459;LINESTRING (3515362.066711101 5406091.563438775, 3515348.78069614 5406089.414205826);[270, 279] +278,0;['DEBW522AA00042aad', 'DEBW522AA00042aac'];Counter({'industry': 2});Counter({'1972-1990': 2});2,0;7960,0;897,0;489,0;161,0;10,0;0,0;0,0;0,0;0,0;0,0;23,0;347,0;869,0;39,1;25,027;LINESTRING (3515308.060961828 5406110.676969388, 3515332.864757949 5406114.014073427);[280, 279] +282,0;['DEBW522A01405f86', 'DEBW522AA0003da5a'];Counter({'residential': 2});Counter({'1972-1990': 1, '1991-2010': 1});2,0;470955,0;84712,0;61964,0;41956,0;11689,0;585,0;6,0;0,0;1,0;1900,0;22061,0;55864,0;82508,0;44,8;14,211;LINESTRING (3515319.908892091 5406195.670918106, 3515321.514590015 5406186.133791142, 3515325.137026492 5406183.396874175);[280, 274] +283,0;['DEBW522A01405f95', 'DEBW522AA00043f9b', 'DEBW522AA00043f9a'];Counter({'industry': 2, 'residential': 1});Counter({'1972-1990': 3});3,0;88433,0;12152,0;7747,0;4339,0;1050,0;52,0;0,0;0,0;0,0;128,0;1982,0;6820,0;11924,0;43,4;23,864;LINESTRING (3515356.53827061 5406227.19784144, 3515379.429363208 5406220.454630063);[273, 284] +284,0;['DEBW522AA00043f92', 'DEBW522AA00043f91'];Counter({'industry': 2});Counter({'1972-1990': 2});2,0;275750,0;8153,0;3208,0;464,0;8,0;0,0;0,0;0,0;0,0;0,0;16,0;1237,0;7040,0;17,6;19,655;LINESTRING (3515383.947158388 5406239.583375218, 3515379.429363208 5406220.454630063);[273, 283] +285,0;['DEBW522AA00000251', 'DEBW522AA00015860'];Counter({'non-heated': 2});Counter({'1949-1971': 1, '1991-2010': 1});2,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;47,9;174,897;LINESTRING (3514436.539300913 5405921.543748296, 3514445.049661078 5405912.357740359, 3514545.107238602 5405999.801500726, 3514551.745080918 5406010.071901026, 3514550.576324972 5406027.29472316);[288, 289, 114, 469, 286] +287,0;['DEBW522AA00026a80', 'DEBW522AA00006eb2', 'DEBW522AA00006eb3', 'DEBW522AA000388cf'];Counter({'residential': 4});Counter({'1972-1990': 2, '1949-1971': 1, '1991-2010': 1});4,0;29793,0;6248,0;4121,0;2377,0;517,0;28,0;0,0;0,0;0,0;71,0;1115,0;3719,0;6223,0;56,5;29,753;LINESTRING (3515388.457673769 5406572.781238854, 3515405.346096827 5406573.639336978, 3515414.475705456 5406582.672103923);[463, 478] +289,0;['DEBW522AA00000253', 'DEBW522AA00000250'];Counter({'industry': 1, 'retail': 1});Counter({'1972-1990': 2});2,0;114884,0;9981,0;6864,0;4240,0;1087,0;79,0;2,0;0,0;0,0;172,0;1929,0;5869,0;9698,0;24,3;106,934;LINESTRING (3514550.576324972 5406027.29472316, 3514528.780898435 5406045.175901084, 3514492.195345426 5406014.344027798, 3514512.652395053 5405991.188075854);[288, 469, 285, 286] +296,0;['DEBW522AA0003a0c5', 'DEBW522AA0003a0c9', 'DEBW522AA0003a0c8', 'DEBW522AA00015796', 'DEBW522AA00029514', 'DEBW522AA0001f0a8', 'DEBW522AA0004242b', 'DEBW522AA00000370', 'DEBW522AA00032b8b', 'DEBW522AA00036f92', 'DEBW522AA0003f1d3', 'DEBW522AA000171c4', 'DEBW522AA0002f8e1'];Counter({'residential': 10, 'education': 2, 'sport location': 1});Counter({'1972-1990': 10, 'After 2011': 2, '1991-2010': 1});13,0;1478668,0;200923,0;148967,0;104200,0;36400,0;5133,0;129,0;4,0;14,0;7840,0;51446,0;128849,0;194387,0;272,4;204,84;LINESTRING (3514965.225464276 5405741.838507627, 3514984.75727126 5405733.349916393, 3514988.752449496 5405734.172376744, 3514991.910390531 5405737.58371185, 3515025.152803648 5405734.981304362, 3515022.821309006 5405730.282167235, 3515016.837169188 5405725.817922828, 3515010.147148334 5405724.27652369, 3515001.108077823 5405724.608246946, 3514995.822624609 5405725.417066358, 3514993.712962859 5405722.942658443, 3514965.55930736 5405666.074586106, 3514963.809450396 5405660.921077891, 3514964.527653445 5405656.118881145, 3514970.298255797 5405652.508927297, 3514992.278270618 5405643.67102418);[302, 303] +297,0;['DEBW522AA0003c2ea'];Counter({'hall': 1});Counter({'1991-2010': 1});1,0;7767,0;1668,0;1259,0;925,0;356,0;51,0;1,0;0,0;0,0;101,0;582,0;1178,0;1646,0;12,4;74,486;LINESTRING (3514244.379295503 5405816.653062719, 3514267.087398445 5405841.620844748, 3514296.738901568 5405869.553342881);[162, 408, 298, 24] +299,0;['DEBW522AA0002239a', 'DEBW522AA000394b5', 'DEBW522AA000394b4', 'DEBW522AA000394b3', 'DEBW522AA00014413', 'DEBW522AA00014412', 'DEBW522AA0002d86d', 'DEBW522AA0002d86c', 'DEBW522AA0003204e', 'DEBW522AA0001a3ce'];Counter({'residential': 6, 'non-heated': 3, 'industry': 1});Counter({'1949-1971': 5, '1972-1990': 3, 'Before 1948': 1, '1991-2010': 1});10,0;234245,0;39166,0;27310,0;16650,0;3303,0;111,0;0,0;0,0;0,0;365,0;7767,0;24257,0;38362,0;162,2;124,712;LINESTRING (3514939.128985028 5406224.459951276, 3514929.672111099 5406216.416838861, 3514853.632210616 5406147.211790623, 3514851.072187136 5406145.592532394, 3514845.614678308 5406142.152956539);[9, 48, 502, 503] +300,0;['DEBW522AA0003defb', 'DEBW522AA0003defa', 'DEBW522AA0003defd', 'DEBW522AA0003defc', 'DEBW522AA0003defe', 'DEBW522AA00012f7d', 'DEBW522AA00012f7c', 'DEBW522AA00012787'];Counter({'retail': 3, 'residential': 3, 'non-heated': 2});Counter({'1972-1990': 3, '1991-2010': 3, '1949-1971': 2});8,0;690528,0;69253,0;50462,0;33683,0;9334,0;667,0;15,0;1,0;3,0;1459,0;15761,0;43574,0;67363,0;156,8;69,834;LINESTRING (3514707.054458801 5405875.10484296, 3514709.477781509 5405872.864819332, 3514712.819095845 5405870.816250655, 3514751.194216202 5405855.181167428, 3514771.577792884 5405849.440864366);[236, 301, 141, 438, 158] +301,0;['DEBW522AA0003aa53', 'DEBW522AA0000673b', 'DEBW522AA00008fb1', 'DEBW522AA0002cd99', 'DEBW522AA00026dab', 'DEBW522AA00029506', 'DEBW522AA00029507', 'DEBW522AA0002734c', 'DEBW522AA0000e95c', 'DEBW522AA00025f87'];Counter({'residential': 9, 'non-heated': 1});Counter({'1972-1990': 5, '1991-2010': 2, '1949-1971': 2, 'After 2011': 1});10,0;443473,0;79601,0;55759,0;34158,0;7036,0;245,0;0,0;0,0;0,0;831,0;16384,0;50059,0;78200,0;161,5;83,885;LINESTRING (3514826.391888335 5405785.941880889, 3514771.577792884 5405849.440864366);[4, 490, 300, 141] +303,0;['DEBW522AA00026328', 'DEBW522AA0001da97', 'DEBW522AA0004459c', 'DEBW522AA0002d43a', 'DEBW522AA00028479', 'DEBW522AA0001b61e', 'DEBW522AA0002a8b9', 'DEBW522AA0003f1d2', 'DEBW522AA00042f26', 'DEBW522AA00043d42', 'DEBW522AA00028ecc', 'DEBW522AA00028eca'];Counter({'residential': 5, 'retail': 4, 'education': 2, 'industry': 1});Counter({'1949-1971': 5, '1972-1990': 3, '1991-2010': 3, 'After 2011': 1});12,0;630055,0;96862,0;70670,0;47783,0;14288,0;1293,0;40,0;5,0;11,0;2739,0;24479,0;62794,0;94498,0;233,9;171,384;LINESTRING (3514893.361465982 5405586.281374415, 3514898.174272396 5405597.503717011, 3514901.371793753 5405605.441197478, 3514922.091575849 5405647.8768657, 3514948.558529748 5405706.44168344, 3514965.225464276 5405741.838507627);[296, 302, 305, 83, 89, 447] +304,0;['DEBW522AA0002f733', 'DEBW522AA0002d7ff', 'DEBW522AA00029b24', 'DEBW522AA00029b22', 'DEBW522AA00029b23', 'DEBW522AA0000c1e6', 'DEBW522AA00041d2c', 'DEBW522AA00041d2d', 'DEBW522AA007a7c90', 'DEBW522AA0003852b', 'DEBW522AA000406bc', 'DEBW522AA000406bb', 'DEBW522AA0000cf41', 'DEBW522AA0000cf40', 'DEBW522AA0000cf42', 'DEBW522AA0000d39a', 'DEBW522AA0002d801', 'DEBW522AA0002d800', 'DEBW522AA0000d398'];Counter({'residential': 19});Counter({'1972-1990': 7, 'Before 1948': 6, '1991-2010': 4, '1949-1971': 2});19,0;313998,0;61069,0;42100,0;25232,0;5331,0;230,0;1,0;0,0;0,0;717,0;12404,0;38196,0;60260,0;335,7;199,767;LINESTRING (3514625.449910227 5405555.185152514, 3514637.162553858 5405569.538999182, 3514645.292733899 5405576.877545215, 3514656.993011659 5405584.659116467, 3514665.472701025 5405587.572597408, 3514676.664955958 5405590.081711167, 3514686.358244374 5405589.740051752, 3514695.807358726 5405587.229249923, 3514750.010169329 5405561.326749771, 3514777.17319834 5405543.171408244, 3514784.402838989 5405535.216937668, 3514791.074573816 5405524.258440999);[409, 305] +305,0;['DEBW522AA0000dc4e', 'DEBW522AA000243b1', 'DEBW522AA000243b2', 'DEBW522AA0001e64a'];Counter({'residential': 4});Counter({'1949-1971': 2, 'Before 1948': 1, '1991-2010': 1});4,0;132097,0;26198,0;18118,0;11279,0;2880,0;196,0;2,0;0,0;0,0;446,0;5616,0;16372,0;25898,0;66,5;119,622;LINESTRING (3514893.361465982 5405586.281374415, 3514880.258353594 5405578.362145286, 3514791.074573816 5405524.258440999);[303, 304, 83, 89, 447] +306,0;['DEBW522AA00018377', 'DEBW522AA00026802', 'DEBW522AA0003d383', 'DEBW522AA0003d381', 'DEBW522AA000113eb', 'DEBW522AA00019354', 'DEBW522AA00019353', 'DEBW522AA00019356', 'DEBW522AA00019355', 'DEBW522AA0001dc6d', 'DEBW522AA0001dc6c', 'DEBW522AA00009ded', 'DEBW522AA0001e484'];Counter({'residential': 12, 'industry': 1});Counter({'1991-2010': 10, '1949-1971': 3});13,0;306878,0;50359,0;34756,0;21648,0;5226,0;255,0;1,0;0,0;0,0;712,0;10581,0;31177,0;49438,0;137,8;201,748;LINESTRING (3515632.083326957 5406515.081685537, 3515633.704967572 5406492.044222738, 3515633.594619336 5406489.452805425, 3515632.919008372 5406473.481679711, 3515631.581818815 5406441.773002357, 3515629.61040551 5406395.049694203, 3515630.046300652 5406386.254478612, 3515631.85257223 5406370.812932267, 3515635.930604063 5406354.855039665, 3515640.108783542 5406342.522758447, 3515644.768446625 5406339.355230427, 3515652.621038114 5406342.602092284, 3515663.936943507 5406350.140068986);[206, 307, 310, 311] +307,0;['DEBW522AA000130f8', 'DEBW522AA000130f6'];Counter({'office and administration': 1, 'residential': 1});Counter({'1972-1990': 2});2,0;299863,0;47653,0;35134,0;23937,0;6628,0;232,0;1,0;0,0;0,0;717,0;11103,0;30474,0;45835,0;20,4;108,547;LINESTRING (3515657.556093261 5406456.891575973, 3515656.83213477 5406363.320464242, 3515663.936943507 5406350.140068986);[306, 206] +308,0;['DEBW522AA000070b0', 'DEBW522AA000070af', 'DEBW522AA00001823', 'DEBW522AA00043698', 'DEBW522AA00043695', 'DEBW522AA00e68ba4', 'DEBW522AA00039a82', 'DEBW522AA0002df90'];Counter({'industry': 3, 'residential': 3, 'health care': 1, 'non-heated': 1});Counter({'1991-2010': 5, '1949-1971': 2, '1972-1990': 1});8,0;3738441,0;313643,0;244707,0;192494,0;95561,0;26793,0;2975,0;595,0;949,0;33318,0;105983,0;210278,0;300068,0;280,2;143,241;LINESTRING (3515039.179746283 5405889.095107296, 3515037.191685732 5405885.141963896, 3515035.342874974 5405881.322641365, 3515001.256373588 5405812.272532699, 3514982.648702819 5405774.601812719, 3514981.13519004 5405771.77313877, 3514979.621616493 5405768.96670634, 3514975.885260409 5405762.017477686, 3514975.285683783 5405760.903817356);[485, 426, 302, 47, 309, 59] +309,0;['DEBW522AA00028ecd'];Counter({'sport location': 1});Counter({'1972-1990': 1});1,0;1537861,0;175599,0;137006,0;105418,0;47457,0;7924,0;70,0;0,0;0,0;10429,0;49457,0;112514,0;166637,0;29,7;94,269;LINESTRING (3514882.612656015 5405760.590898708, 3514900.87223303 5405757.9592152, 3514914.132369161 5405756.370780035, 3514927.096585126 5405755.537792667, 3514945.161221626 5405754.384778768, 3514951.319340818 5405754.223229609, 3514957.469875795 5405754.150632039, 3514971.27840182 5405759.113839883, 3514975.285683783 5405760.903817356);[456, 45, 302, 47, 308, 59] +310,0;['DEBW522AA000113ea', 'DEBW522AA000371e9', 'DEBW522AA000371e8', 'DEBW522AA000371ea'];Counter({'residential': 4});Counter({'1991-2010': 4});4,0;117798,0;22853,0;15227,0;8959,0;1960,0;105,0;1,0;0,0;0,0;262,0;4212,0;13818,0;22703,0;74,6;30,067;LINESTRING (3515632.083326957 5406515.081685537, 3515637.078801614 5406523.20254038, 3515636.625643371 5406532.920722816, 3515625.880000938 5406531.800996045);[312, 306, 311] +311,0;['DEBW522AA0003d1c0', 'DEBW522AA00027553'];Counter({'residential': 2});Counter({'1991-2010': 2});2,0;52461,0;10055,0;7004,0;4312,0;981,0;46,0;0,0;0,0;0,0;147,0;2199,0;6422,0;9884,0;22,0;17,833;LINESTRING (3515632.083326957 5406515.081685537, 3515628.152564587 5406525.679843034, 3515625.880000938 5406531.800996045);[312, 306, 310] +312,0;['DEBW522AA000319e6', 'DEBW522AA00007aa4', 'DEBW522AA00007aa3', 'DEBW522AA00023925'];Counter({'residential': 4});Counter({'After 2011': 2, 'Before 1948': 1, '1949-1971': 1});4,0;67474,0;12906,0;8792,0;5210,0;1071,0;46,0;0,0;0,0;0,0;138,0;2519,0;8004,0;12747,0;23,4;36,274;LINESTRING (3515616.34182866 5406566.793382431, 3515618.727296585 5406557.04720882, 3515625.880000938 5406531.800996045);[310, 311, 317, 318] +314,0;['DEBW522AA0000d919', 'DEBW522AA00005957', 'DEBW522AA0000f6a5', 'DEBW522AA00020a0d'];Counter({'residential': 4});Counter({'Before 1948': 3, '1949-1971': 1});4,0;54091,0;9962,0;6897,0;4121,0;772,0;23,0;0,0;0,0;0,0;97,0;2059,0;6327,0;9772,0;52,1;17,813;LINESTRING (3515814.609128112 5405704.486518217, 3515804.709327894 5405697.296973361, 3515800.199429926 5405694.014822666);[392, 134] +316,0;['DEBW522AA0000d907', 'DEBW522AA00006a43', 'DEBW522AA000313e1', 'DEBW522AA000313e0', 'DEBW522AA000313df', 'DEBW522AA000313de'];Counter({'education': 3, 'residential': 1, 'restaurant': 1, 'non-heated': 1});Counter({'1972-1990': 2, '1991-2010': 2, 'After 2011': 1, 'Before 1948': 1});6,0;1292575,0;191852,0;139462,0;92022,0;22425,0;1046,0;13,0;1,0;4,0;2598,0;42096,0;121574,0;186454,0;163,8;163,282;LINESTRING (3515182.952629347 5406290.480650766, 3515142.362313046 5406228.985195806, 3515130.434770267 5406213.573224051, 3515121.340755267 5406201.838713113, 3515114.127526282 5406192.889435019, 3515105.760991921 5406181.101303999, 3515088.786214976 5406157.201933219);[26, 315] +317,0;['DEBW522AA00043da1', 'DEBW522AA00043da0', 'DEBW522AA00035f83', 'DEBW522AA000032d8', 'DEBW522AA00039be9', 'DEBW522AA00027035', 'DEBW522AA00027036'];Counter({'residential': 7});Counter({'1972-1990': 3, '1949-1971': 3, '1991-2010': 1});7,0;96164,0;20195,0;13464,0;7711,0;1682,0;84,0;0,0;0,0;0,0;214,0;3661,0;12265,0;20041,0;58,6;32,236;LINESTRING (3515605.053817234 5406596.987926122, 3515616.34182866 5406566.793382431);[312, 318] +318,0;['DEBW522AA0002e7af'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;40506,0;7413,0;5190,0;3145,0;614,0;21,0;0,0;0,0;0,0;78,0;1547,0;4722,0;7280,0;9,1;46,912;LINESTRING (3515658.360895023 5406587.372351769, 3515639.664150294 5406576.321942022, 3515616.34182866 5406566.793382431);[327, 328, 312, 317] +320,0;['DEBW522AA00038d36', 'DEBW522AA00038d37', 'DEBW522AA00038d32', 'DEBW522AA00038d31', 'DEBW522AA00038d34', 'DEBW522AA00038d33'];Counter({'office and administration': 4, 'industry': 2});Counter({'1972-1990': 5, '1991-2010': 1});6,0;1503602,0;244221,0;188475,0;143372,0;62395,0;10033,0;410,0;44,0;88,0;15345,0;74170,0;160355,0;234127,0;149,3;33,95;LINESTRING (3515054.014724684 5406191.215642706, 3515059.265066087 5406178.663397113, 3515075.594397409 5406166.530094707);[315, 319] +322,0;['DEBW522AA00023673', 'DEBW522AA00035f8d', 'DEBW522AA00004dc4', 'DEBW522AA00004dc6'];Counter({'non-heated': 2, 'residential': 2});Counter({'1949-1971': 2, '1991-2010': 1, '1972-1990': 1});4,0;71494,0;14199,0;9545,0;5597,0;1235,0;61,0;0,0;0,0;0,0;177,0;2765,0;8796,0;14041,0;75,7;61,563;LINESTRING (3515283.849380651 5405805.594369132, 3515290.402528067 5405757.415393594, 3515290.813381255 5405754.947732166, 3515291.426864499 5405750.92373427, 3515292.413918784 5405744.632145028);[321, 258, 420, 173, 177] +323,0;['DEBW522AA00033941', 'DEBW522AA00033940', 'DEBW522AA0000a606'];Counter({'non-heated': 1, 'office and administration': 1, 'industry': 1});Counter({'1949-1971': 2, '1972-1990': 1});3,0;106481,0;19376,0;14298,0;9842,0;3177,0;321,0;10,0;1,0;2,0;694,0;5137,0;12578,0;18781,0;27,1;27,086;LINESTRING (3514626.769426803 5406048.121284146, 3514608.905746836 5406068.481165659);[243, 324] +324,0;['DEBW522AA000343f7'];Counter({'office and administration': 1});Counter({'1972-1990': 1});1,0;12710,0;2317,0;1720,0;1244,0;466,0;61,0;2,0;0,0;0,0;110,0;659,0;1515,0;2247,0;13,3;23,713;LINESTRING (3514590.921946091 5406053.054616258, 3514594.566910479 5406055.68854921, 3514608.905746836 5406068.481165659);[323, 243, 251, 444] +328,0;['DEBW522AA00009446', 'DEBW522AA00043d9f', 'DEBW522AA00043d9e', 'DEBW522AA0003b6d7'];Counter({'residential': 4});Counter({'1972-1990': 3, 'Before 1948': 1});4,0;152456,0;30663,0;21470,0;13337,0;3293,0;200,0;1,0;0,0;0,0;548,0;6872,0;19629,0;30197,0;51,0;103,387;LINESTRING (3515582.686355866 5406632.623103159, 3515601.002796752 5406632.429293614, 3515623.111455801 5406634.447978874, 3515630.953012627 5406633.591264505, 3515637.340585479 5406629.839144747, 3515640.539185787 5406626.233840385, 3515656.84557549 5406590.670959663, 3515658.360895023 5406587.372351769);[327, 201, 76, 318] +331,0;['DEBW522AA0000dbfe', 'DEBW522AA00014c14', 'DEBW522AA00014c13'];Counter({'residential': 2, 'hall': 1});Counter({'1972-1990': 2, 'Before 1948': 1});3,0;68236,0;12567,0;8766,0;5306,0;1051,0;39,0;0,0;0,0;0,0;136,0;2631,0;7940,0;12358,0;36,0;92,237;LINESTRING (3515491.257535909 5405943.190808632, 3515459.994621565 5405872.922383602, 3515453.721180295 5405858.937611531);[514, 330, 332, 336] +333,0;['DEBW522AA000204f2'];Counter({'restaurant': 1});Counter({'1991-2010': 1});1,0;503485,0;41807,0;32174,0;23960,0;9789,0;986,0;0,0;0,0;0,0;1603,0;11188,0;26743,0;39858,0;17,4;24,071;LINESTRING (3515455.444275433 5405830.862756741, 3515460.093251386 5405831.698473586, 3515464.273680141 5405834.579100848, 3515466.98660821 5405839.368439914, 3515467.763521115 5405848.100274443);[332, 334, 367, 378] +334,0;['DEBW522AA00021575', 'DEBW522AA00021574'];Counter({'office and administration': 2});Counter({'1991-2010': 1, '1972-1990': 1});2,0;110404,0;20358,0;15056,0;10531,0;3556,0;383,0;12,0;1,0;2,0;803,0;5571,0;13322,0;19768,0;23,4;58,733;LINESTRING (3515501.092060358 5405894.075855519, 3515494.891808507 5405888.242661731, 3515480.174963205 5405855.841054445, 3515473.801147385 5405851.642139386, 3515467.763521115 5405848.100274443);[512, 513, 332, 333] +335,0;['DEBW522AA00009131'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;151051,0;5039,0;1980,0;316,0;6,0;0,0;0,0;0,0;0,0;0,0;12,0;808,0;4474,0;6,8;28,478;LINESTRING (3514394.634446763 5405743.517456993, 3514391.262237215 5405743.297529714, 3514387.902306009 5405744.022888496, 3514379.465266431 5405753.209169317, 3514373.312190766 5405760.032611331);[226, 341, 219, 223] +337,0;['DEBW522AA00018ee9', 'DEBW522AA000280d0'];Counter({'residential': 2});Counter({'1991-2010': 1, '1972-1990': 1});2,0;110367,0;19956,0;13732,0;8389,0;1791,0;74,0;0,0;0,0;0,0;211,0;3999,0;12300,0;19645,0;19,8;44,326;LINESTRING (3514305.926235767 5405640.314056317, 3514338.711455605 5405670.145245355);[338, 213, 377] +338,0;['DEBW522AA0001c5f6'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;70846,0;10500,0;7549,0;4764,0;988,0;30,0;0,0;0,0;0,0;108,0;2235,0;6667,0;10219,0;12,0;10,159;LINESTRING (3514298.411681713 5405633.477998094, 3514305.926235767 5405640.314056317);[337, 347] +342,0;['DEBW522AA00034b30'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;96813,0;16838,0;11683,0;7232,0;1449,0;43,0;0,0;0,0;0,0;144,0;3253,0;10387,0;16560,0;12,5;41,462;LINESTRING (3515442.168831953 5405739.014331596, 3515400.798812654 5405741.769909744);[344, 390, 401, 343, 216] +343,0;['DEBW522AA00009674'];Counter({'residential': 1});Counter({'Before 1948': 1});1,0;89935,0;17242,0;12179,0;7811,0;1999,0;113,0;1,0;0,0;0,0;324,0;4057,0;11136,0;16934,0;8,4;47,954;LINESTRING (3515450.485258151 5405785.076601749, 3515447.05887513 5405777.84989181, 3515443.859313138 5405773.648618912, 3515442.168831953 5405739.014331596);[358, 342, 344, 350] +347,0;['DEBW522AA000328d8'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;103140,0;17172,0;12171,0;7825,0;1766,0;52,0;0,0;0,0;0,0;169,0;3558,0;10721,0;16759,0;9,0;32,364;LINESTRING (3514273.516905318 5405612.797104975, 3514298.411681713 5405633.477998094);[144, 386, 338] +349,0;['DEBW522AA0001b4e3', 'DEBW522AA0001b4e4'];Counter({'retail': 2});Counter({'1991-2010': 2});2,0;375461,0;31084,0;23094,0;16243,0;5463,0;517,0;14,0;1,0;2,0;949,0;7653,0;19612,0;29944,0;46,5;77,295;LINESTRING (3514288.700764039 5405643.695391214, 3514278.605523037 5405631.637231149, 3514269.45924323 5405622.050275335, 3514260.997969942 5405614.711436934, 3514244.346509208 5405600.323622037, 3514232.952402223 5405590.397412704);[384, 385, 197, 40] +350,0;['DEBW522AA00024414'];Counter({'education': 1});Counter({'1972-1990': 1});1,0;279451,0;40204,0;29733,0;20462,0;6273,0;581,0;25,0;4,0;9,0;1424,0;11355,0;26707,0;39482,0;15,0;86,821;LINESTRING (3515450.485258151 5405785.076601749, 3515530.48106291 5405751.334741416);[352, 358, 343, 351] +352,0;['DEBW522AA00c5b996', 'DEBW522AA00024415'];Counter({'residential': 1, 'education': 1});Counter({'After 2011': 1, '1991-2010': 1});2,0;55677,0;8143,0;5955,0;4073,0;1228,0;115,0;5,0;1,0;2,0;285,0;2268,0;5399,0;7968,0;74,8;139,155;LINESTRING (3515464.116038264 5405817.085914092, 3515488.13075721 5405805.886861764, 3515554.25265916 5405775.054081032, 3515545.676149089 5405754.268126653, 3515542.247936147 5405750.399783623, 3515537.716350203 5405749.608806071, 3515530.951889757 5405751.135871493, 3515530.48106291 5405751.334741416);[358, 367, 350, 351] +353,0;['DEBW522AA00003409', 'DEBW522AA0000f4cf', 'DEBW522AA0003111e', 'DEBW522AA00031123', 'DEBW522AA0003a08a'];Counter({'residential': 5});Counter({'1972-1990': 3, '1991-2010': 2});5,0;246142,0;45868,0;32347,0;20905,0;5581,0;316,0;2,0;0,0;0,0;907,0;10642,0;29192,0;45094,0;120,7;170,46;LINESTRING (3516024.329180032 5405576.815380782, 3515867.128800713 5405510.902073364);[290, 393, 348] +354,0;['DEBW522AA00ee030d', 'DEBW522AA00ee02e0', 'DEBW522AA00ee02ef', 'DEBW522AA1992073', 'DEBW522AA013a3db7', 'DEBW522AA013a3da6', 'DEBW522AA0003709b', 'DEBW522AA0002fbd9', 'DEBW522AA013a3d95'];Counter({'residential': 4, 'sport location': 2, 'non-heated': 1, 'industry': 1, 'health care': 1});Counter({'1972-1990': 4, 'After 2011': 3, 'Before 1948': 1, '1949-1971': 1});9,0;104975,0;15850,0;11079,0;7157,0;2356,0;320,0;13,0;1,0;2,0;500,0;3474,0;9724,0;15558,0;334,7;110,272;LINESTRING (3515230.505304283 5406594.124976994, 3515222.435576959 5406586.997013348, 3515191.299109521 5406570.654347842, 3515163.458734726 5406555.25488684, 3515156.433463406 5406553.089644628, 3515151.326851989 5406547.793565092, 3515148.941501348 5406544.161803343, 3515147.381946855 5406539.442446482, 3515147.778227876 5406536.885767745, 3515149.072701222 5406533.642031396, 3515150.576613823 5406531.744457658);[472, 475] +355,0;['DEBW522AA00c524a2', 'DEBW522AA0002865b', 'DEBW522AA00025113', 'DEBW522AA0002cde4', 'DEBW522AA0000c200', 'DEBW522AA0000c201', 'DEBW522AA0003e27c', 'DEBW522AA0001bf4e', 'DEBW522AA0002162d', 'DEBW522AA00036c84', 'DEBW522AA0003dcad'];Counter({'residential': 8, 'hotel': 1, 'non-heated': 1, 'retail': 1});Counter({'1949-1971': 6, '1972-1990': 3, 'After 2011': 2});11,0;491252,0;67193,0;47482,0;30088,0;6826,0;329,0;5,0;0,0;1,0;856,0;14105,0;41907,0;65654,0;199,8;127,91;LINESTRING (3514853.871593671 5406131.688023483, 3514880.122846772 5406154.532532405, 3514936.324535852 5406204.23518553, 3514941.286962161 5406208.685511798, 3514949.78241438 5406216.314622181);[10, 427, 20, 247, 56] +358,0;['DEBW522AA0001cecb'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;85253,0;16300,0;11445,0;7075,0;1584,0;75,0;1,0;0,0;0,0;242,0;3645,0;10421,0;16030,0;12,1;34,818;LINESTRING (3515464.116038264 5405817.085914092, 3515457.849359838 5405800.621256856, 3515450.485258151 5405785.076601749);[352, 367, 343, 350] +359,0;['DEBW522AA00010f9e', 'DEBW522AA00010f9d', 'DEBW522AA0001bc50', 'DEBW522AA0001bc51', 'DEBW522AA0001bc52', 'DEBW522AA0001bc53'];Counter({'residential': 6});Counter({'1972-1990': 4, '1991-2010': 2});6,0;57195,0;11359,0;7877,0;4797,0;1074,0;47,0;0,0;0,0;0,0;146,0;2351,0;7122,0;11179,0;50,2;15,773;LINESTRING (3515400.343912555 5406519.579295299, 3515385.005929698 5406515.900816206);[360, 210] +360,0;['DEBW522AA00e6ee9c', 'DEBW522AA0003fec7'];Counter({'residential': 2});Counter({'After 2011': 1, '1991-2010': 1});2,0;68216,0;13476,0;9147,0;5539,0;1337,0;79,0;0,0;0,0;0,0;190,0;2705,0;8319,0;13363,0;31,3;35,042;LINESTRING (3515386.895135459 5406550.435586321, 3515395.284937739 5406542.574037955, 3515400.343912555 5406519.579295299);[359, 462, 463, 210] +363,0;['DEBW522AA0002d466', 'DEBW522AA0000ace5', 'DEBW522AA00008788', 'DEBW522AA00008786', 'DEBW522AA00005dd1'];Counter({'residential': 5});Counter({'1972-1990': 2, '1991-2010': 2, '1949-1971': 1});5,0;119670,0;23107,0;15761,0;9218,0;1817,0;71,0;0,0;0,0;0,0;246,0;4594,0;14483,0;22804,0;74,2;57,951;LINESTRING (3515582.251225978 5405551.384593337, 3515568.603745155 5405607.706106232);[264, 364, 434, 415] +364,0;['DEBW522AA0003c9d1', 'DEBW522AA00029d8d', 'DEBW522AA000403bc'];Counter({'residential': 3});Counter({'1972-1990': 2, 'Before 1948': 1});3,0;32322,0;6262,0;4292,0;2564,0;542,0;25,0;0,0;0,0;0,0;80,0;1311,0;3949,0;6163,0;71,1;16,833;LINESTRING (3515585.024227978 5405611.410314488, 3515568.603745155 5405607.706106232);[264, 363] +365,0;['DEBW522AA0002ca79'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;22165,0;3312,0;2415,0;1597,0;404,0;21,0;0,0;0,0;0,0;71,0;834,0;2183,0;3222,0;10,7;32,259;LINESTRING (3514663.875035145 5406158.123152041, 3514685.194695521 5406133.913616211);[366, 339, 244, 29] +366,0;['DEBW522AA000243c3', 'DEBW522AA0003bfed', 'DEBW522AA0002ad43', 'DEBW522AA000133f8', 'DEBW522AA000094a9'];Counter({'residential': 3, 'industry': 2});Counter({'1972-1990': 3, '1991-2010': 2});5,0;318054,0;40892,0;29161,0;18656,0;4461,0;119,0;0,0;0,0;0,0;421,0;8286,0;24773,0;39363,0;127,5;100,484;LINESTRING (3514752.90632679 5406059.67173536, 3514750.253744946 5406062.500531998, 3514747.984320797 5406064.918872255, 3514743.416000471 5406069.788840084, 3514685.194695521 5406133.913616211);[365, 244, 246, 503, 122] +368,0;['DEBW522AA00038446'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;86735,0;15383,0;10775,0;6451,0;1185,0;35,0;0,0;0,0;0,0;128,0;3044,0;9616,0;15142,0;22,2;97,97;LINESTRING (3514411.701161606 5405572.537215658, 3514384.003990265 5405509.846084734, 3514381.950703298 5405505.303620026, 3514379.939883016 5405501.395139784, 3514371.27086244 5405483.313091471);[185, 369, 151] +370,0;['DEBW522AA0000a660'];Counter({'retail': 1});Counter({'1991-2010': 1});1,0;80023,0;7776,0;5966,0;4391,0;1636,0;194,0;6,0;1,0;2,0;373,0;2287,0;5215,0;7490,0;17,2;33,748;LINESTRING (3514507.091053123 5405782.839975984, 3514510.392704498 5405779.067488246, 3514511.856787074 5405775.512669832, 3514511.565043178 5405771.819870525, 3514510.038145236 5405768.390777165, 3514506.412667801 5405763.810843346, 3514497.783946033 5405756.070868142);[371, 276, 124, 125] +377,0;['DEBW522AA0001c1f9'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;177180,0;29246,0;20679,0;12797,0;2353,0;48,0;0,0;0,0;0,0;207,0;5780,0;18233,0;28475,0;14,3;43,41;LINESTRING (3514338.711455605 5405670.145245355, 3514353.007210601 5405683.159492891, 3514370.836616475 5405699.341066713);[399, 400, 337, 213] +378,0;['DEBW522AA0001cec9'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;4069,0;828,0;581,0;357,0;86,0;5,0;0,0;0,0;0,0;14,0;181,0;525,0;821,0;6,7;13,075;LINESTRING (3515443.569604036 5405836.334817416, 3515455.444275433 5405830.862756741);[390, 330, 333, 367] +382,0;['DEBW522AA0003183a', 'DEBW522AA0001a5cc', 'DEBW522AA0001082f', 'DEBW522AA0003f589', 'DEBW522AA00031022'];Counter({'residential': 5});Counter({'Before 1948': 2, '1949-1971': 2, 'After 2011': 1});5,0;205907,0;35268,0;24798,0;15944,0;4030,0;187,0;1,0;0,0;0,0;449,0;7287,0;21890,0;34624,0;90,2;73,707;LINESTRING (3515473.422718264 5405585.902536273, 3515465.711490789 5405584.268815982, 3515429.668300667 5405576.140635988, 3515401.61648614 5405569.291217297);[265, 92, 383] +383,0;['DEBW522AA00001420', 'DEBW522AA00032d29', 'DEBW522AA00021134'];Counter({'residential': 3});Counter({'Before 1948': 3});3,0;105361,0;18123,0;12994,0;8815,0;2631,0;148,0;1,0;0,0;0,0;329,0;4180,0;11429,0;17772,0;60,8;69,581;LINESTRING (3515333.893481765 5405553.425924376, 3515337.184212313 5405553.913091873, 3515340.44554914 5405554.400181064, 3515358.202053889 5405558.719003624, 3515377.691569922 5405563.465208779, 3515401.61648614 5405569.291217297);[487, 382] +388,0;['DEBW522AA00011c49'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;43690,0;8522,0;5765,0;3333,0;653,0;30,0;0,0;0,0;0,0;91,0;1652,0;5254,0;8422,0;10,5;120,716;LINESTRING (3514147.121686662 5405503.806941249, 3514213.560772178 5405561.112250945, 3514224.045868847 5405570.213194147, 3514228.709382376 5405574.172814935, 3514238.57151737 5405582.604972045);[384, 386, 387, 373] +390,0;['DEBW522AA00008226'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;475891,0;85335,0;61682,0;40732,0;10368,0;471,0;4,0;0,0;0,0;1548,0;21019,0;55435,0;83281,0;19,6;103,799;LINESTRING (3515400.798812654 5405741.769909744, 3515403.722831924 5405747.327118914, 3515443.569604036 5405836.334817416);[330, 401, 342, 216, 378] +393,0;['DEBW522AA00021c85', 'DEBW522AA000102e8', 'DEBW522AA000102e7', 'DEBW522AA000102e9', 'DEBW522AA00020a1d', 'DEBW522AA0002cb0b', 'DEBW522AA0002cb0a', 'DEBW522AA0001a594', 'DEBW522AA000301c5', 'DEBW522AA0003111f', 'DEBW522AA00031125', 'DEBW522AA00031126', 'DEBW522AA00031121', 'DEBW522AA00031120', 'DEBW522AA0001987a', 'DEBW522AA0001987c', 'DEBW522AA00019879'];Counter({'residential': 16, 'retail': 1});Counter({'1949-1971': 9, '1972-1990': 6, '1991-2010': 2});17,0;330587,0;55740,0;39193,0;25130,0;6160,0;273,0;2,0;0,0;0,0;734,0;11609,0;34503,0;54844,0;480,0;212,404;LINESTRING (3515839.08608109 5405675.697427834, 3515850.792761623 5405664.910067659, 3515867.958443282 5405651.79169369, 3515887.204145669 5405641.136913346, 3515903.852633597 5405634.266982128, 3515940.68623995 5405622.416688041, 3515963.621737569 5405614.096852105, 3515982.455572227 5405606.265868798, 3515997.830149863 5405597.824583332, 3516013.448657858 5405586.314740527, 3516024.329180032 5405576.815380782);[353, 294, 392, 407] +395,0;['DEBW522AA0001b92d', 'DEBW522AA00018da3', 'DEBW522AA0003ef59', 'DEBW522AA0002c1b4', 'DEBW522AA00027a65', 'DEBW522AA0003e337', 'DEBW522AA0000739d', 'DEBW522AA0000d655', 'DEBW522AA00020f71', 'DEBW522AA00000fe3', 'DEBW522AA00032862'];Counter({'residential': 9, 'non-heated': 2});Counter({'1949-1971': 9, '1972-1990': 2});11,0;49664,0;9488,0;6452,0;3649,0;605,0;20,0;0,0;0,0;0,0;82,0;1846,0;6033,0;9309,0;102,2;59,108;LINESTRING (3515468.770747404 5405668.905214368, 3515470.49235997 5405708.19913602, 3515471.048031242 5405722.568519111, 3515471.216896027 5405727.962489392);[515, 396, 397, 62] +396,0;['DEBW522AA00eff6e7'];Counter({'residential': 1});Counter({'After 2011': 1});1,0;1983,0;446,0;304,0;175,0;41,0;2,0;0,0;0,0;0,0;5,0;79,0;276,0;440,0;11,5;118,354;LINESTRING (3515471.216896027 5405727.962489392, 3515500.622287504 5405725.941734687, 3515529.945582453 5405724.387973959, 3515559.240763563 5405722.378343109, 3515589.371180661 5405721.260833351);[480, 395, 428, 397] +397,0;['DEBW522AA00c66f6a', 'DEBW522AA00c66f82', 'DEBW522AA00f4e41c'];Counter({'residential': 3});Counter({'1991-2010': 1, 'Before 1948': 1, '1972-1990': 1});3,0;129926,0;23105,0;16111,0;9975,0;1996,0;59,0;0,0;0,0;0,0;216,0;4646,0;14450,0;22665,0;35,9;75,086;LINESTRING (3515396.219352714 5405731.615346164, 3515471.216896027 5405727.962489392);[395, 396, 401, 402, 63] +399,0;['DEBW522AA0003aa12', 'DEBW522AA0002e863', 'DEBW522AA0002e862', 'DEBW522AA0000dc92', 'DEBW522AA0000dc91', 'DEBW522AA0000dc93', 'DEBW522AA000435bc', 'DEBW522AA0001da5c', 'DEBW522AA0001da5b', 'DEBW522AA000095ee', 'DEBW522AA0000358d', 'DEBW522AA00c33797'];Counter({'residential': 8, 'hall': 1, 'industry': 1, 'office and administration': 1, 'retail': 1});Counter({'1972-1990': 5, '1991-2010': 3, 'Before 1948': 2, 'After 2011': 1, '1949-1971': 1});12,0;548435,0;88391,0;61962,0;38197,0;8324,0;404,0;6,0;0,0;1,0;1189,0;18429,0;55316,0;86545,0;221,6;127,593;LINESTRING (3514370.836616475 5405699.341066713, 3514375.609656938 5405703.490142319, 3514404.31502262 5405727.940030039, 3514405.451409076 5405728.943798175, 3514409.710974914 5405732.724606874, 3514435.00964155 5405755.964894711, 3514447.515581363 5405767.595834247, 3514449.677959372 5405769.658707863, 3514459.853065628 5405778.992835781, 3514466.166590262 5405784.1023267);[398, 400, 371, 377] +400,0;['DEBW522AA000435bd', 'DEBW522AA0002ca3b', 'DEBW522AA0002ca3a', 'DEBW522AA0003a7b6', 'DEBW522AA000152d2'];Counter({'non-heated': 2, 'office and administration': 1, 'retail': 1, 'residential': 1});Counter({'1949-1971': 5});5,0;69886,0;9285,0;6770,0;4610,0;1358,0;100,0;2,0;0,0;0,0;207,0;2220,0;5906,0;9019,0;114,2;42,168;LINESTRING (3514370.836616475 5405699.341066713, 3514375.367858168 5405694.593029588, 3514398.774255692 5405667.763289039);[377, 399] +402,0;['DEBW522AA00021302'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;114241,0;20097,0;13988,0;8853,0;1923,0;69,0;0,0;0,0;0,0;201,0;3979,0;12399,0;19794,0;10,7;87,227;LINESTRING (3515309.187822383 5405737.193638287, 3515317.405819584 5405736.159574827, 3515396.219352714 5405731.615346164);[491, 492, 397, 174, 401, 63] +403,0;['DEBW522AA0003c2ec', 'DEBW522AA0003c2ee'];Counter({'office and administration': 1, 'industry': 1});Counter({'1972-1990': 2});2,0;266573,0;47078,0;35248,0;25329,0;9163,0;1062,0;36,0;4,0;8,0;2040,0;13144,0;30677,0;45475,0;15,4;35,075;LINESTRING (3514311.333229995 5405799.697391428, 3514338.552672066 5405821.81895364);[404, 405] +405,0;['DEBW522AA00009135', 'DEBW522AA00009134'];Counter({'office and administration': 2});Counter({'1972-1990': 2});2,0;136109,0;23506,0;18063,0;13397,0;5239,0;681,0;24,0;2,0;5,0;1238,0;7030,0;15631,0;22613,0;22,3;36,128;LINESTRING (3514348.902576098 5405788.583594451, 3514348.667362902 5405800.137317386, 3514341.716969578 5405808.460042384, 3514338.552672066 5405821.81895364);[528, 403, 404, 341] +406,0;['DEBW522AA0003c2e9'];Counter({'office and administration': 1});Counter({'1991-2010': 1});1,0;475408,0;82800,0;62477,0;45545,0;17001,0;2028,0;68,0;7,0;15,0;3791,0;23601,0;54281,0;79844,0;0,9;36,535;LINESTRING (3514318.793556168 5405845.066278456, 3514290.820815701 5405821.563939213);[408, 404] +409,0;['DEBW522AA0000d399'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;1477,0;356,0;209,0;109,0;24,0;1,0;0,0;0,0;0,0;2,0;45,0;185,0;362,0;25,4;42,534;LINESTRING (3514625.449910227 5405555.185152514, 3514658.220662013 5405528.069492072);[304] +410,0;['DEBW522AA000078f8', 'DEBW522AA000274a7', 'DEBW522AA0003050e', 'DEBW522AA00018382', 'DEBW522AA00017c42', 'DEBW522AA0004082a', 'DEBW522AA00011aed', 'DEBW522AA00012731'];Counter({'residential': 8});Counter({'1972-1990': 8});8,0;221339,0;38996,0;27849,0;17340,0;3408,0;92,0;0,0;0,0;0,0;406,0;8663,0;25282,0;38043,0;97,6;77,732;LINESTRING (3515766.463383651 5405568.423729443, 3515750.289873896 5405644.454601263);[454, 455, 411, 412] +411,0;['DEBW522AA00028cd9', 'DEBW522AA00036f74', 'DEBW522AA1490654', 'DEBW522AA00006116'];Counter({'residential': 4});Counter({'1972-1990': 2, 'After 2011': 1, '1949-1971': 1});4,0;130266,0;23423,0;16196,0;9827,0;1999,0;64,0;0,0;0,0;0,0;231,0;4682,0;14677,0;23003,0;67,0;55,985;LINESTRING (3515806.265848874 5405645.468085664, 3515750.289873896 5405644.454601263);[295, 410, 412, 413] +412,0;['DEBW522AA0002c41c', 'DEBW522AA0002c41b', 'DEBW522AA1481ce4', 'DEBW522AA00c4ee72', 'DEBW522AA00010522', 'DEBW522AA0001abe5'];Counter({'residential': 6});Counter({'After 2011': 5, '1972-1990': 1});6,0;118408,0;20365,0;14246,0;9070,0;2203,0;80,0;0,0;0,0;0,0;222,0;4073,0;12607,0;20022,0;132,4;55,557;LINESTRING (3515695.42961555 5405635.971729876, 3515723.146738122 5405641.387127873, 3515735.921266034 5405642.835211029, 3515750.289873896 5405644.454601263);[66, 458, 410, 411] +413,0;['DEBW522AA0003df29', 'DEBW522AA0003f4f1', 'DEBW522AA0002206b', 'DEBW522AA0001fe8c', 'DEBW522AA000387b6'];Counter({'residential': 5});Counter({'1972-1990': 4, '1949-1971': 1});5,0;231492,0;40530,0;28530,0;17293,0;3185,0;82,0;0,0;0,0;0,0;346,0;8270,0;25783,0;39677,0;78,3;71,39;LINESTRING (3515826.856909357 5405577.11192791, 3515806.265848874 5405645.468085664);[454, 295, 411, 254] +414,0;['DEBW522AA000172e9', 'DEBW522AA0002cdd0'];Counter({'residential': 2});Counter({'1991-2010': 1, '1972-1990': 1});2,0;159043,0;29472,0;20273,0;12155,0;2401,0;92,0;0,0;0,0;0,0;311,0;5970,0;18356,0;28985,0;19,8;39,675;LINESTRING (3514563.209698252 5405838.955201179, 3514592.915421868 5405865.254684937);[160, 36, 207, 153] +418,0;['DEBW522AA0001ef70', 'DEBW522AA00015533', 'DEBW522AA0002c933', 'DEBW522AA0002c951'];Counter({'residential': 2, 'office and administration': 1, 'non-heated': 1});Counter({'1972-1990': 4});4,0;288212,0;49424,0;35975,0;24305,0;7729,0;728,0;21,0;2,0;5,0;1449,0;11768,0;31392,0;47838,0;106,9;31,683;LINESTRING (3515339.044006719 5405815.019379455, 3515336.737139462 5405831.037909881, 3515334.527657441 5405846.378348929);[417, 419] +419,0;['DEBW522AA0000e3a5', 'DEBW522AA00039e8f', 'DEBW522AA0003998d', 'DEBW522AA00037370', 'DEBW522AA0000883f', 'DEBW522AA0000e26e', 'DEBW522AA0000fd7b', 'DEBW522AA00019464'];Counter({'residential': 7, 'office and administration': 1});Counter({'1972-1990': 6, '1991-2010': 2});8,0;397559,0;70337,0;48868,0;29608,0;6192,0;311,0;6,0;1,0;1,0;833,0;13996,0;44061,0;68802,0;158,8;162,125;LINESTRING (3515433.913813406 5405898.116755901, 3515412.730366805 5405905.965374995, 3515397.759845368 5405904.334077618, 3515355.568265891 5405896.267358539, 3515323.107410255 5405890.08463247, 3515320.801821405 5405889.47783117, 3515322.428722157 5405872.189686866, 3515332.329363113 5405854.924114522, 3515334.527657441 5405846.378348929);[417, 418] +422,0;['DEBW522AA00019463'];Counter({'office and administration': 1});Counter({'1972-1990': 1});1,0;159486,0;28190,0;21142,0;15353,0;5741,0;662,0;22,0;2,0;5,0;1289,0;7946,0;18486,0;27240,0;19,7;84,915;LINESTRING (3515294.091764727 5405838.29464748, 3515282.488523881 5405922.412885381);[417, 260, 325, 180] +423,0;['DEBW522AA00017c1d'];Counter({'office and administration': 1});Counter({'1949-1971': 1});1,0;12855,0;2612,0;1839,0;1230,0;393,0;45,0;1,0;0,0;0,0;90,0;660,0;1661,0;2549,0;52,6;35,431;LINESTRING (3515075.288291754 5405913.412594087, 3515072.88686944 5405918.399314125, 3515069.667056025 5405921.682384108, 3515064.743658167 5405924.549425079, 3515054.860704195 5405930.072131149, 3515046.867818346 5405932.230365084);[424, 425, 426, 25] +424,0;['DEBW522AA00017c18', 'DEBW522AA00024515', 'DEBW522AA000278fd', 'DEBW522AA0002f378', 'DEBW522AA00c56efe', 'DEBW522AA00043c79', 'DEBW522AA00043c78', 'DEBW522AA000156d2', 'DEBW522AA00020f19', 'DEBW522AA00020f1a', 'DEBW522AA000175dd', 'DEBW522AA00023bf1', 'DEBW522AA00023bf2'];Counter({'residential': 9, 'non-heated': 2, 'education': 1, 'office and administration': 1});Counter({'1949-1971': 5, '1991-2010': 3, '1972-1990': 3, 'After 2011': 1, 'Before 1948': 1});13,0;432719,0;77331,0;54667,0;35037,0;8661,0;465,0;8,0;1,0;2,0;1263,0;17150,0;49206,0;76010,0;323,3;108,259;LINESTRING (3515183.507521228 5405916.217243531, 3515091.813326122 5405913.534797779, 3515085.957055403 5405913.541313061, 3515075.288291754 5405913.412594087);[259, 453, 423, 425] +427,0;['DEBW522AA00038d38', 'DEBW522AA00038d39', 'DEBW522AA00038d30', 'DEBW522AA00038d2e', 'DEBW522AA00038d2f'];Counter({'office and administration': 3, 'industry': 2});Counter({'1972-1990': 5});5,0;157212,0;14216,0;8962,0;4964,0;1329,0;115,0;3,0;0,0;0,0;232,0;2251,0;7101,0;13588,0;137,8;122,531;LINESTRING (3514949.78241438 5406216.314622181, 3514962.448164831 5406227.847071206, 3514977.350996661 5406240.820074008, 3515009.126807165 5406269.051193259, 3515028.346592866 5406283.181293242, 3515036.310186401 5406289.040933546, 3515039.745018558 5406293.187003332, 3515041.042699135 5406296.982613756);[355, 10, 56, 441, 443, 157] +428,0;['DEBW522AA0002f657', 'DEBW522AA0002f659'];Counter({'residential': 2});Counter({'1972-1990': 2});2,0;11550,0;2195,0;1554,0;986,0;233,0;10,0;0,0;0,0;0,0;37,0;512,0;1428,0;2148,0;17,5;37,583;LINESTRING (3515589.371180661 5405721.260833351, 3515607.423849894 5405721.86698271, 3515626.915501251 5405722.922017627);[480, 68, 357, 135, 396] +429,0;['DEBW522AA00027369', 'DEBW522AA0002736a', 'DEBW522AA00020bfe', 'DEBW522AA0000be19', 'DEBW522AA000037fb'];Counter({'residential': 4, 'office and administration': 1});Counter({'1991-2010': 3, '1972-1990': 1, '1949-1971': 1});5,0;282065,0;46808,0;34680,0;23986,0;7305,0;646,0;22,0;2,0;4,0;1313,0;11754,0;30218,0;45309,0;102,9;34,521;LINESTRING (3514647.515142546 5405900.170917576, 3514624.574112192 5405925.966621464);[37, 430] +431,0;['DEBW522AA0000a368'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;17168,0;3277,0;2229,0;1283,0;248,0;11,0;0,0;0,0;0,0;31,0;620,0;2021,0;3250,0;11,3;22,84;LINESTRING (3514585.837718039 5406058.579489457, 3514570.833241705 5406075.799776652);[340, 469, 444, 30] +432,0;['DEBW522AA00014758', 'DEBW522AA0002eea0', 'DEBW522AA0002eea1', 'DEBW522AA000278d8', 'DEBW522AA00042305', 'DEBW522AA00038af9', 'DEBW522AA00038afb', 'DEBW522AA00038afa', 'DEBW522AA00036f17', 'DEBW522AA00036df9', 'DEBW522AA00036dfc', 'DEBW522AA00007901', 'DEBW522AA00007902', 'DEBW522AA0002ee9f'];Counter({'residential': 8, 'non-heated': 3, 'industry': 1, 'office and administration': 1, 'hall': 1});Counter({'1949-1971': 9, '1991-2010': 4, '1972-1990': 1});14,0;454762,0;73930,0;53101,0;34169,0;8341,0;517,0;11,0;1,0;2,0;1251,0;16650,0;47001,0;72158,0;344,3;132,24;LINESTRING (3514935.56705453 5406398.154787432, 3515016.360994619 5406311.451261884, 3515018.674579242 5406309.01090625, 3515022.248119266 5406305.239444077, 3515025.806910051 5406301.490186008);[11, 49, 433, 52, 441, 155] +438,0;['DEBW522AA0000012b', 'DEBW522AA000376af', 'DEBW522AA0001c3ed', 'DEBW522AA000209ed', 'DEBW522AA00037fc9', 'DEBW522AA0002f4d1'];Counter({'residential': 5, 'office and administration': 1});Counter({'1991-2010': 3, '1972-1990': 2, '1949-1971': 1});6,0;447699,0;74470,0;53810,0;34536,0;8227,0;467,0;9,0;1,0;2,0;1148,0;16390,0;47297,0;72511,0;85,5;93,485;LINESTRING (3514707.054458801 5405875.10484296, 3514648.299570068 5405940.362898918, 3514644.629083261 5405944.690376286);[236, 300, 430, 158, 95] +445,0;['DEBW522AA0001025d', 'DEBW522AA0001025e', 'DEBW522AA0001024c', 'DEBW522AA00010253', 'DEBW522AA00010256', 'DEBW522AA00010258', 'DEBW522AA00010251', 'DEBW522AA00010243'];Counter({'industry': 8});Counter({'1949-1971': 3, '1972-1990': 3, 'Before 1948': 2});8,0;236054,0;13971,0;6483,0;1445,0;51,0;0,0;0,0;0,0;0,0;0,0;127,0;3666,0;13016,0;107,9;325,884;LINESTRING (3515761.645173796 5406448.3862603, 3515753.903003692 5406492.335572865, 3515756.03055812 5406496.066956894, 3515783.735597543 5406499.013868266, 3515794.296372768 5406497.953731479, 3515801.029678021 5406494.14716696, 3515806.121127011 5406488.957029825, 3515810.952974027 5406476.804641963, 3515836.110992915 5406408.483543999, 3515840.805742027 5406398.098978782, 3515845.480826008 5406394.698127236, 3515854.121496545 5406394.589061611, 3515862.493427627 5406393.3783065, 3515869.63797112 5406389.706433361, 3515881.599187942 5406379.342437046, 3515909.479279585 5406318.013134123, 3515916.919738391 5406308.481579606);[440, 391, 507, 376, 379] +446,0;['DEBW522AA0003bd42', 'DEBW522AA0003bd3f', 'DEBW522AA0000bda4', 'DEBW522AA0000bda5', 'DEBW522AA0003ed7b', 'DEBW522AA0003ed7c', 'DEBW522AA0003ed7a', 'DEBW522AA00014039', 'DEBW522AA00014038', 'DEBW522AA00005c65', 'DEBW522AA00005c64', 'DEBW522AA00005c61', 'DEBW522AA00043f65', 'DEBW522AA0000d558', 'DEBW522AA0000d555', 'DEBW522AA00043f66', 'DEBW522AA000335e9', 'DEBW522AA0003bf87', 'DEBW522AA0003bf86', 'DEBW522AA000335ec', 'DEBW522AA000335ed', 'DEBW522AA000335ea', 'DEBW522AA0000cad7', 'DEBW522AA000001ed', 'DEBW522AA000001ec', 'DEBW522AA000001eb', 'DEBW522AA00041a93', 'DEBW522AA00016a20', 'DEBW522AA0000ea8a', 'DEBW522AA0001646f', 'DEBW522AA00016471', 'DEBW522AA0000ea85', 'DEBW522AA0000ea86', 'DEBW522AA0000ea88', 'DEBW522AA00029a43', 'DEBW522AA00029a42', 'DEBW522AA0003113c', 'DEBW522AA00000808', 'DEBW522AA00000809'];Counter({'residential': 22, 'non-heated': 15, 'office and administration': 1, 'education': 1});Counter({'1949-1971': 14, '1972-1990': 8, '1991-2010': 8, 'Before 1948': 7, 'After 2011': 2});39,0;742299,0;130366,0;92581,0;59454,0;14628,0;757,0;12,0;1,0;3,0;2076,0;29215,0;82862,0;127738,0;678,8;418,718;LINESTRING (3514455.802207332 5405470.952434553, 3514467.319829365 5405484.226719558, 3514483.655051005 5405510.046374356, 3514502.952637449 5405543.980650864, 3514515.76439078 5405562.529550162, 3514530.476704835 5405579.226249713, 3514546.357645154 5405595.792565777, 3514575.85498992 5405620.801411014, 3514601.984165096 5405638.250761936, 3514615.12903503 5405644.334545314, 3514629.420912778 5405650.143329789, 3514652.17702439 5405656.28558851, 3514674.761546578 5405660.581469095, 3514699.551353058 5405661.736072954, 3514722.189758916 5405659.459999389, 3514745.250555449 5405655.839530407, 3514767.78413355 5405648.725895958, 3514788.910048097 5405640.418741201);[222, 221, 447] +447,0;['DEBW522AA000061a1', 'DEBW522AA0001871c', 'DEBW522AA0001871d', 'DEBW522AA00020511', 'DEBW522AA0003914c', 'DEBW522AA0003914b', 'DEBW522AA00013abe', 'DEBW522AA0001b620', 'DEBW522AA00006af5', 'DEBW522AA0000766a', 'DEBW522AA0001f964', 'DEBW522AA00028313', 'DEBW522AA00028312', 'DEBW522AA0001eeb5', 'DEBW522AA0001eeb6', 'DEBW522AA0001eeb7', 'DEBW522AA00036717', 'DEBW522AA00036718', 'DEBW522AA00000dfc', 'DEBW522AA00000dfd', 'DEBW522AA00042d21', 'DEBW522AA00042d20'];Counter({'residential': 15, 'non-heated': 6, 'hall': 1});Counter({'1949-1971': 9, '1972-1990': 5, '1991-2010': 4, 'Before 1948': 4});22,0;534756,0;89221,0;63846,0;40234,0;8870,0;339,0;2,0;0,0;0,0;1069,0;19288,0;56405,0;87603,0;404,4;117,725;LINESTRING (3514893.361465982 5405586.281374415, 3514886.213810928 5405590.988701104, 3514878.824264446 5405595.472984062, 3514874.130062601 5405597.740285518, 3514788.910048097 5405640.418741201);[446, 303, 305, 83, 89, 222] +448,0;['DEBW522AA00034b24', 'DEBW522AA00034b26', 'DEBW522AA00019593', 'DEBW522AA00028ff2', 'DEBW522AA000173c3', 'DEBW522AA000173c4', 'DEBW522AA000173c5', 'DEBW522AA000173c1', 'DEBW522AA00004df3'];Counter({'residential': 5, 'retail': 1, 'hall': 1, 'industry': 1, 'office and administration': 1});Counter({'1949-1971': 5, '1991-2010': 4});9,0;199457,0;32986,0;22844,0;13818,0;2860,0;134,0;2,0;0,0;0,0;396,0;6646,0;20418,0;32313,0;169,6;59,397;LINESTRING (3515185.698907411 5405850.266713313, 3515141.445965654 5405810.646821492);[449, 450, 453, 460] +449,0;['DEBW522AA0003fbf6', 'DEBW522AA00043694', 'DEBW522AA00028ff1', 'DEBW522AA00039193', 'DEBW522AA00016158', 'DEBW522AA00000673', 'DEBW522AA00000672', 'DEBW522AA0001106f', 'DEBW522AA00043c7b', 'DEBW522AA0002604e', 'DEBW522AA0003fb67', 'DEBW522AA0003fb6c'];Counter({'residential': 9, 'industry': 1, 'health care': 1, 'office and administration': 1});Counter({'1949-1971': 8, '1991-2010': 2, '1972-1990': 2});12,0;6695387,0;558752,0;445783,0;363559,0;194140,0;60581,0;7496,0;1567,0;2421,0;71428,0;204544,0;383387,0;533887,0;288,9;109,393;LINESTRING (3515069.112760466 5405892.711660342, 3515073.534938952 5405887.696997384, 3515141.445965654 5405810.646821492);[448, 450, 485, 425] +450,0;['DEBW522AA0002415b', 'DEBW522AA00010aab', 'DEBW522AA0002e938', 'DEBW522AA0002092d'];Counter({'residential': 4});Counter({'1972-1990': 2, 'After 2011': 1, '1949-1971': 1});4,0;181355,0;31501,0;22140,0;13595,0;2729,0;82,0;0,0;0,0;0,0;281,0;6353,0;19711,0;30876,0;53,2;77,618;LINESTRING (3515185.471875038 5405749.290799064, 3515185.53056122 5405752.048873149, 3515184.936135898 5405757.207237724, 3515184.77066643 5405758.619110213, 3515181.66243474 5405766.784372608, 3515141.445965654 5405810.646821492);[448, 449, 170, 60] +451,0;['DEBW522AA00010242'];Counter({'non-heated': 1});Counter({'Before 1948': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;7,5;28,583;LINESTRING (3515738.087750313 5406336.368682922, 3515757.697259928 5406315.572452732);[464, 465, 452] +452,0;['DEBW522AA0001025c', 'DEBW522AA0001025b', 'DEBW522AA0001024f', 'DEBW522AA0001024a', 'DEBW522AA00010247'];Counter({'hall': 4, 'industry': 1});Counter({'Before 1948': 5});5,0;100966,0;18509,0;13435,0;9397,0;3337,0;389,0;14,0;1,0;4,0;1059,0;6215,0;12571,0;18217,0;37,4;116,257;LINESTRING (3515757.697259928 5406315.572452732, 3515783.342382105 5406288.376635983, 3515797.167907831 5406294.409526564, 3515783.659795179 5406327.110727422, 3515757.697259928 5406315.572452732);[451] +453,0;['DEBW522AA000061ff', 'DEBW522AA00019187', 'DEBW522AA000007ae', 'DEBW522AA0003208e'];Counter({'residential': 4});Counter({'1972-1990': 2, '1991-2010': 2});4,0;171665,0;30945,0;21506,0;12909,0;2357,0;65,0;0,0;0,0;0,0;288,0;6359,0;19754,0;30308,0;42,1;65,987;LINESTRING (3515185.698907411 5405850.266713313, 3515183.507521228 5405916.217243531);[448, 259, 424, 460] +454,0;['DEBW522AA0002ab87', 'DEBW522AA1490663', 'DEBW522AA0001ca2c'];Counter({'residential': 3});Counter({'After 2011': 1, 'Before 1948': 1, '1972-1990': 1});3,0;46988,0;8873,0;5901,0;3314,0;601,0;21,0;0,0;0,0;0,0;71,0;1578,0;5390,0;8803,0;25,6;61,015;LINESTRING (3515766.463383651 5405568.423729443, 3515826.856909357 5405577.11192791);[455, 410, 413, 254] +455,0;['DEBW522AA00023251', 'DEBW522AA0001b979', 'DEBW522AA1481cd3'];Counter({'residential': 3});Counter({'After 2011': 2, 'Before 1948': 1});3,0;59556,0;11380,0;7635,0;4349,0;818,0;32,0;0,0;0,0;0,0;102,0;2122,0;6993,0;11272,0;31,0;54,032;LINESTRING (3515713.123902108 5405559.800388932, 3515766.463383651 5405568.423729443);[454, 457, 458, 410] +456,0;['DEBW522AA0000e3ef', 'DEBW522AA000133b5', 'DEBW522AA00028ecb'];Counter({'residential': 2, 'industry': 1});Counter({'1972-1990': 3});3,0;149100,0;24970,0;18094,0;12144,0;3372,0;144,0;0,0;0,0;0,0;369,0;5673,0;15882,0;24362,0;96,0;35,565;LINESTRING (3514881.14152559 5405725.056610139, 3514882.612656015 5405760.590898708);[309, 45] +457,0;['DEBW522AA0001c8e3', 'DEBW522AA00c43024'];Counter({'residential': 2});Counter({'After 2011': 2});2,0;28684,0;5263,0;3548,0;2011,0;345,0;10,0;0,0;0,0;0,0;37,0;948,0;3230,0;5201,0;21,1;56,39;LINESTRING (3515713.123902108 5405559.800388932, 3515678.366764009 5405551.707564839, 3515675.679024006 5405551.077310605, 3515666.669263995 5405548.683488132, 3515658.335013743 5405546.480613328);[65, 455, 202, 458] +458,0;['DEBW522AA0002c438', 'DEBW522AA000019fe', 'DEBW522AA00022976', 'DEBW522AA0003dc96', 'DEBW522AA0002576c', 'DEBW522AA0001bb8c', 'DEBW522AA00007476', 'DEBW522AA00027084'];Counter({'residential': 8});Counter({'After 2011': 8});8,0;223290,0;39388,0;27625,0;16449,0;2902,0;84,0;0,0;0,0;0,0;355,0;7925,0;25068,0;38515,0;97,2;78,199;LINESTRING (3515713.123902108 5405559.800388932, 3515695.42961555 5405635.971729876);[66, 455, 457, 412] +459,0;['DEBW522AA0003085b', 'DEBW522AA0003085d'];Counter({'hall': 1, 'retail': 1});Counter({'1972-1990': 1, '1991-2010': 1});2,0;287797,0;24521,0;18388,0;13172,0;4593,0;423,0;10,0;1,0;2,0;847,0;6348,0;15760,0;23548,0;47,3;83,616;LINESTRING (3514795.694418974 5406198.347279594, 3514800.387096466 5406202.040567054, 3514809.816429609 5406209.460631747, 3514824.59742562 5406196.332782527, 3514858.792701987 5406226.915878023);[27, 502] +461,0;['DEBW522AA00031654', 'DEBW522AA00011b96', 'DEBW522AA00011b95', 'DEBW522AA0002fb31', 'DEBW522AA00036e04', 'DEBW522AA0003dd2c', 'DEBW522AA0000e152', 'DEBW522AA0001fe92', 'DEBW522AA0001fe93', 'DEBW522AA00020f49', 'DEBW522AA00020f4a', 'DEBW522AA00020f4b', 'DEBW522AA00020f4d', 'DEBW522AA000332e8', 'DEBW522AA000332eb'];Counter({'residential': 10, 'non-heated': 3, 'education': 2});Counter({'1949-1971': 7, '1991-2010': 4, '1972-1990': 3, 'Before 1948': 1});15,0;377634,0;69919,0;48729,0;29983,0;6704,0;370,0;6,0;1,0;1,0;1034,0;15000,0;44074,0;68833,0;234,3;107,698;LINESTRING (3514531.875589932 5405657.830394492, 3514489.581670253 5405622.691255017, 3514479.860727502 5405619.530189191, 3514471.735757708 5405621.533215827, 3514445.737323568 5405633.109622791, 3514440.543682368 5405635.364882839);[152, 261] +462,0;['DEBW522AA0000b287', 'DEBW522AA0000b288', 'DEBW522AA0000b286', 'DEBW522AA0000b289', 'DEBW522AA0000b28a', 'DEBW522AA00ee42a3', 'DEBW522AA00ee42b7', 'DEBW522AA000440f6', 'DEBW522AA0000bb2e', 'DEBW522AA0002fbd8', 'DEBW522AA00035c03', 'DEBW522AA00035c04', 'DEBW522AA00002d95', 'DEBW522AA0002787a', 'DEBW522AA0002787b', 'DEBW522AA00019369'];Counter({'residential': 15, 'non-heated': 1});Counter({'1949-1971': 7, 'Before 1948': 5, '1991-2010': 3, '1972-1990': 1});16,0;339100,0;64582,0;44642,0;26787,0;5528,0;215,0;0,0;0,0;0,0;687,0;13051,0;40319,0;63580,0;338,3;104,845;LINESTRING (3515319.83009553 5406470.00573475, 3515379.075005906 5406543.430407261, 3515386.895135459 5406550.435586321);[360, 463, 211, 188] +463,0;['DEBW522AA00ee4355'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;50237,0;9292,0;6425,0;3906,0;804,0;30,0;0,0;0,0;0,0;102,0;1908,0;5875,0;9156,0;16,9;22,437;LINESTRING (3515388.457673769 5406572.781238854, 3515387.521986431 5406565.683705176, 3515387.090237601 5406562.368570807, 3515387.002657198 5406556.785768033, 3515386.895135459 5406550.435586321);[360, 462, 478, 287] +465,0;['DEBW522AA00010249'];Counter({'industry': 1});Counter({'Before 1948': 1});1,0;17639,0;1212,0;606,0;145,0;5,0;0,0;0,0;0,0;0,0;0,0;11,0;348,0;1113,0;14,1;111,535;LINESTRING (3515721.979135434 5406397.976420492, 3515745.787308451 5406402.113264583, 3515767.065850825 5406351.996607206, 3515738.087750313 5406336.368682922);[451, 495, 464, 477] +469,0;['DEBW522AA00000254'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;1273,0;207,0;124,0;54,0;6,0;0,0;0,0;0,0;0,0;0,0;12,0;95,0;202,0;10,1;47,15;LINESTRING (3514585.837718039 5406058.579489457, 3514565.225145208 5406039.620962572, 3514550.576324972 5406027.29472316);[288, 289, 431, 444, 285] +470,0;['DEBW522AA00024d1a', 'DEBW522AA00003104', 'DEBW522AA00003101', 'DEBW522AA00031d4f'];Counter({'residential': 3, 'non-heated': 1});Counter({'1972-1990': 2, '1949-1971': 1, 'Before 1948': 1});4,0;66033,0;12162,0;8408,0;4987,0;897,0;27,0;0,0;0,0;0,0;114,0;2507,0;7740,0;11921,0;78,7;40,738;LINESTRING (3515708.98775191 5405940.88177821, 3515704.436730197 5405918.171837428, 3515697.236486564 5405902.13800032);[232, 17, 473, 474] +473,0;['DEBW522AA000008fd', 'DEBW522AA00032150', 'DEBW522AA0002cf31', 'DEBW522AA0004383c', 'DEBW522AA0002c5cb', 'DEBW522AA000072ef', 'DEBW522AA0000a62c', 'DEBW522AA00023019', 'DEBW522AA000134e4', 'DEBW522AA00013f46', 'DEBW522AA0002393f'];Counter({'residential': 10, 'retail': 1});Counter({'1972-1990': 9, 'After 2011': 1, '1949-1971': 1});11,0;368809,0;62154,0;43671,0;26620,0;5439,0;228,0;2,0;0,0;1,0;699,0;12881,0;39463,0;60967,0;160,1;105,286;LINESTRING (3515671.490837116 5406038.74986131, 3515705.143948907 5405962.24489388, 3515708.98775191 5405940.88177821);[111, 16, 470, 474] +474,0;['DEBW522AA00024d1e', 'DEBW522AA000420a2', 'DEBW522AA000029ee', 'DEBW522AA0003ec4b'];Counter({'residential': 4});Counter({'Before 1948': 3, '1949-1971': 1});4,0;122868,0;20038,0;14158,0;9259,0;2348,0;96,0;0,0;0,0;0,0;268,0;4217,0;12500,0;19728,0;50,4;56,284;LINESTRING (3515765.271995329 5405940.961597498, 3515708.98775191 5405940.88177821);[234, 112, 496, 470, 473] +475,0;['DEBW522AA00ee431b', 'DEBW522AA00ee4309', 'DEBW522AA00ee4369', 'DEBW522AA00ee432d', 'DEBW522AA00ee42f5'];Counter({'residential': 5});Counter({'Before 1948': 4, '1972-1990': 1});5,0;240070,0;43556,0;30805,0;19507,0;4516,0;204,0;1,0;0,0;0,0;607,0;9630,0;27709,0;42756,0;180,6;90,229;LINESTRING (3515230.505304283 5406594.124976994, 3515251.391596428 5406605.39125202, 3515256.79751914 5406608.630918171, 3515271.212051743 5406616.821517658, 3515300.217157851 5406635.961228138, 3515308.081922204 5406640.052811109);[354, 471, 472, 479] +478,0;['DEBW522AA00ee4341', 'DEBW522AA00ee438f', 'DEBW522AA00ee437d', 'DEBW522AA00006eb4', 'DEBW522AA00006eb1', 'DEBW522AA00026d9b'];Counter({'residential': 6});Counter({'1972-1990': 5, '1949-1971': 1});6,0;161027,0;30876,0;21069,0;12504,0;2555,0;109,0;0,0;0,0;0,0;344,0;6137,0;19296,0;30499,0;148,3;58,287;LINESTRING (3515383.978865559 5406630.807611369, 3515385.578528358 5406623.472367406, 3515387.25595414 5406601.146708833, 3515388.457673769 5406572.781238854);[483, 463, 242, 287] +479,0;['DEBW522AA00ee42dd', 'DEBW522AA00ee42cb'];Counter({'residential': 2});Counter({'1949-1971': 1, '1972-1990': 1});2,0;192835,0;33865,0;24170,0;15521,0;3538,0;123,0;1,0;0,0;0,0;422,0;7544,0;21570,0;33148,0;54,8;70,096;LINESTRING (3515308.081922204 5406640.052811109, 3515326.135387028 5406647.374940437, 3515348.789661398 5406656.767017289, 3515358.866219823 5406658.006710594, 3515363.965049811 5406657.976171967, 3515368.513596231 5406657.67723691, 3515374.637378042 5406656.281673072);[483, 466, 471, 475] +480,0;['DEBW522AA0000d948', 'DEBW522AA0002505c', 'DEBW522AA0001e4b8', 'DEBW522AA0000ccd9', 'DEBW522AA0002bde8', 'DEBW522AA0002f658', 'DEBW522AA00031690', 'DEBW522AA0000bac0', 'DEBW522AA0000bac1', 'DEBW522AA0001b309', 'DEBW522AA0001eb8b', 'DEBW522AA000135a4', 'DEBW522AA00007831', 'DEBW522AA00025e5d', 'DEBW522AA00024f06', 'DEBW522AA0003a563', 'DEBW522AA0003efb2', 'DEBW522AA0003685d'];Counter({'residential': 13, 'non-heated': 5});Counter({'1949-1971': 8, 'Before 1948': 4, '1972-1990': 4, '1991-2010': 2});18,0;113051,0;21564,0;14777,0;8878,0;1869,0;82,0;0,0;0,0;0,0;259,0;4416,0;13622,0;21273,0;246,1;73,34;LINESTRING (3515556.839210123 5405676.754869055, 3515589.490612512 5405680.826552763, 3515589.497955515 5405715.28940644, 3515589.371180661 5405721.260833351);[521, 522, 428, 396] +485,0;['DEBW522AA00043699'];Counter({'health care': 1});Counter({'1991-2010': 1});1,0;11411,0;1537,0;1131,0;762,0;256,0;30,0;0,0;0,0;0,0;61,0;409,0;1016,0;1488,0;16,3;32,398;LINESTRING (3515039.179746283 5405889.095107296, 3515047.050365392 5405885.969040181, 3515054.486691482 5405885.877751986, 3515060.038810776 5405886.960209988, 3515065.271217139 5405889.443015471, 3515069.112760466 5405892.711660342);[449, 425, 426, 308] +487,0;['DEBW522AA0003ee1f', 'DEBW522AA00015f17'];Counter({'residential': 2});Counter({'1991-2010': 1, 'After 2011': 1});2,0;116890,0;20724,0;14551,0;9020,0;1944,0;72,0;0,0;0,0;0,0;218,0;4323,0;13072,0;20325,0;28,8;66,892;LINESTRING (3515333.893481765 5405553.425924376, 3515331.87203636 5405567.143260155, 3515330.913725098 5405573.646211389, 3515324.439446667 5405619.645700944);[493, 383, 61] +489,0;['DEBW522AA00023e70', 'DEBW522AA00032325', 'DEBW522AA00029102', 'DEBW522AA0002910c'];Counter({'residential': 2, 'non-heated': 2});Counter({'1949-1971': 3, '1991-2010': 1});4,0;321815,0;61268,0;43572,0;28316,0;7563,0;457,0;5,0;0,0;0,0;1217,0;14613,0;39490,0;60206,0;67,5;80,716;LINESTRING (3515488.456776671 5406466.475831361, 3515547.176215438 5406479.393422415, 3515567.287758925 5406483.819535716);[488, 239, 241, 509] +490,0;['DEBW522AA0003aa54'];Counter({'residential': 1});Counter({'Before 1948': 1});1,0;369,0;83,0;51,0;28,0;6,0;0,0;0,0;0,0;0,0;1,0;13,0;47,0;83,0;8,3;18,346;LINESTRING (3514834.89065505 5405770.328712435, 3514834.732520819 5405774.565252643, 3514826.391888335 5405785.941880889);[43, 4, 301] +492,0;['DEBW522AA00033a4e'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;91160,0;17128,0;11835,0;7173,0;1490,0;58,0;1,0;0,0;0,0;199,0;3544,0;10826,0;16845,0;13,5;24,702;LINESTRING (3515312.289295467 5405712.692225428, 3515310.918522709 5405724.965663166, 3515310.227092147 5405730.624178768, 3515309.187822383 5405737.193638287);[491, 493, 174, 402] +493,0;['DEBW522AA0003bf0c', 'DEBW522AA00011ba5', 'DEBW522AA000335be', 'DEBW522AA00022a58', 'DEBW522AA0000e20b'];Counter({'residential': 5});Counter({'1991-2010': 5});5,0;221190,0;38304,0;26992,0;16489,0;3046,0;69,0;0,0;0,0;0,0;320,0;7889,0;24368,0;37365,0;64,0;93,836;LINESTRING (3515324.439446667 5405619.645700944, 3515318.780776209 5405663.000714981, 3515312.289295467 5405712.692225428);[492, 61, 487] +496,0;['DEBW522AA00023e8b', 'DEBW522AA0003c7ee', 'DEBW522AA00020ace', 'DEBW522AA00020acf'];Counter({'industry': 2, 'retail': 1, 'non-heated': 1});Counter({'1949-1971': 3, 'Before 1948': 1});4,0;14712,0;1735,0;1149,0;666,0;172,0;17,0;1,0;0,0;0,0;30,0;266,0;942,0;1688,0;35,7;57,095;LINESTRING (3515822.093859443 5405935.383092874, 3515765.271995329 5405940.961597498);[229, 234, 110, 112, 474] +497,0;['DEBW522AA0000e70b'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;8206,0;1591,0;1073,0;623,0;136,0;6,0;0,0;0,0;0,0;16,0;288,0;978,0;1585,0;26,0;47,614;LINESTRING (3515364.609890358 5405975.593303612, 3515374.267190742 5405982.81477088, 3515391.335374746 5405993.815325933, 3515399.739123091 5406005.314847745, 3515400.33206356 5406006.128279264);[494, 272, 179, 182] +498,0;['DEBW522AA00013ad2', 'DEBW522AA00027f53', 'DEBW522AA0001c96e', 'DEBW522AA00017911', 'DEBW522AA00017d39', 'DEBW522AA00c2466b', 'DEBW522AA00c2467c', 'DEBW522AA00025e54', 'DEBW522AA00016abc'];Counter({'residential': 8, 'hall': 1});Counter({'After 2011': 6, '1972-1990': 2, '1991-2010': 1});9,0;161657,0;29729,0;20715,0;12593,0;2618,0;110,0;1,0;0,0;0,0;348,0;6249,0;18885,0;29225,0;183,2;144,63;LINESTRING (3515296.075738596 5405708.600157613, 3515304.399185197 5405644.523527974, 3515315.451017881 5405571.624575219, 3515316.217529558 5405565.387993678);[140, 12, 516] +501,0;['DEBW522AA0001351d', 'DEBW522AA000351a0'];Counter({'hall': 1, 'industry': 1});Counter({'1972-1990': 1, '1949-1971': 1});2,0;4119,0;701,0;420,0;202,0;35,0;2,0;0,0;0,0;0,0;5,0;75,0;352,0;686,0;24,9;49,662;LINESTRING (3515294.61125974 5405720.217226977, 3515288.006158874 5405719.898995453, 3515275.652568663 5405720.41030908, 3515244.992795076 5405721.661519114);[516, 205, 175, 499, 500] +502,0;['DEBW522AA0003085a', 'DEBW522AA000258b6', 'DEBW522A00c9b481', 'DEBW522AA00c9b481'];Counter({'office and administration': 2, 'non-heated': 1, 'residential': 1});Counter({'1972-1990': 2, 'After 2011': 2});4,0;364452,0;62137,0;47536,0;35474,0;14451,0;2088,0;77,0;8,0;16,0;3279,0;18249,0;40798,0;59801,0;74,6;75,165;LINESTRING (3514795.694418974 5406198.347279594, 3514833.705630067 5406155.56634689, 3514845.614678308 5406142.152956539);[299, 459, 503, 27] +503,0;['DEBW522AA000243c1', 'DEBW522AA000258bc', 'DEBW522AA000258bb', 'DEBW522A00c9b46f', 'DEBW522A00c9b45d', 'DEBW522AA00c9b45d', 'DEBW522AA00c9b46f'];Counter({'office and administration': 2, 'non-heated': 2, 'residential': 2, 'hall': 1});Counter({'After 2011': 4, '1991-2010': 1, '1972-1990': 1, '1949-1971': 1});7,0;337965,0;61643,0;45725,0;32645,0;11704,0;1340,0;41,0;4,0;9,0;2633,0;17177,0;40233,0;59739,0;170,1;124,183;LINESTRING (3514845.614678308 5406142.152956539, 3514834.036676426 5406133.125789056, 3514781.63709384 5406087.115105759, 3514764.117105416 5406071.544648437, 3514761.611052336 5406068.935837539, 3514752.90632679 5406059.67173536);[299, 366, 246, 502, 122] +504,0;['DEBW522AA00005343', 'DEBW522AA00005342', 'DEBW522AA00024adc', 'DEBW522AA00024adb'];Counter({'health care': 2, 'non-heated': 1, 'hall': 1});Counter({'1972-1990': 2, '1949-1971': 1, '1991-2010': 1});4,0;1415316,0;123039,0;96334,0;76129,0;37160,0;9146,0;825,0;136,0;240,0;12566,0;42928,0;83836,0;118107,0;37,7;41,643;LINESTRING (3515571.592194966 5406470.909278598, 3515581.931212928 5406430.57001394);[488, 506] +508,0;['DEBW522AA00010255', 'DEBW522AA00010244', 'DEBW522AA00010241'];Counter({'industry': 3});Counter({'1949-1971': 1, '1972-1990': 1, 'Before 1948': 1});3,0;48776,0;3706,0;1840,0;515,0;29,0;0,0;0,0;0,0;0,0;0,0;64,0;1159,0;3533,0;38,6;145,8;LINESTRING (3515701.055056005 5406587.091192097, 3515715.490912083 5406490.192890764, 3515715.987180631 5406467.730575865, 3515718.416201975 5406442.482388151);[1, 523, 495, 507] +509,0;['DEBW522AA000354fb', 'DEBW522AA000354fa', 'DEBW522AA00009fe1', 'DEBW522AA00023ef2', 'DEBW522AA000146f3', 'DEBW522AA000272a8', 'DEBW522AA00041a12', 'DEBW522AA00041a11', 'DEBW522AA00004438'];Counter({'residential': 4, 'non-heated': 3, 'event location': 1, 'health care': 1});Counter({'1972-1990': 4, '1949-1971': 3, '1991-2010': 2});9,0;984354,0;93605,0;71997,0;55125,0;25571,0;6568,0;664,0;122,0;201,0;8459,0;30454,0;62947,0;90187,0;152,4;107,297;LINESTRING (3515488.456776671 5406466.475831361, 3515504.69928688 5406397.939639427, 3515509.982337387 5406376.491385651, 3515524.351466502 5406379.922873275);[489, 239] +510,0;['DEBW522AA0001f8b2', 'DEBW522AA00013b9e'];Counter({'residential': 2});Counter({'Before 1948': 1, '1972-1990': 1});2,0;21322,0;4497,0;2980,0;1742,0;402,0;24,0;0,0;0,0;0,0;61,0;873,0;2736,0;4457,0;548,1;158,46;LINESTRING (3514933.300519964 5406454.841765687, 3514919.030663804 5406447.163977158, 3514905.211153989 5406438.653372359, 3514879.738711893 5406421.90489898, 3514835.412649206 5406391.41722731, 3514802.380496057 5406365.897214849);[107, 437] +511,0;['DEBW522AA0001830b', 'DEBW522AA0001830d', 'DEBW522AA0001830c', 'DEBW522AA000266c9', 'DEBW522AA000266ca', 'DEBW522AA00021a2c', 'DEBW522AA00037ced', 'DEBW522AA0002092c', 'DEBW522AA00040bf0', 'DEBW522AA00040bed', 'DEBW522AA00040bef'];Counter({'residential': 4, 'non-heated': 3, 'office and administration': 2, 'industry': 1, 'retail': 1});Counter({'1949-1971': 7, '1972-1990': 3, '1991-2010': 1});11,0;406348,0;60993,0;43772,0;28541,0;7328,0;432,0;11,0;1,0;1,0;967,0;12978,0;38076,0;59373,0;195,0;58,754;LINESTRING (3515230.083873716 5405811.053178486, 3515226.900825137 5405811.556100771, 3515224.158142504 5405812.249268656, 3515221.853779304 5405813.88887869, 3515208.044691443 5405828.286062708, 3515192.197239049 5405843.812073343, 3515190.020865585 5405847.042292401, 3515188.16009401 5405850.40681292);[460, 5] +512,0;['DEBW522AA0000e78c', 'DEBW522AA00015ded', 'DEBW522AA000086ca'];Counter({'residential': 2, 'office and administration': 1});Counter({'1991-2010': 1, 'After 2011': 1, '1972-1990': 1});3,0;422226,0;75405,0;55865,0;38816,0;12891,0;1350,0;42,0;4,0;9,0;2666,0;19762,0;48756,0;73325,0;62,0;85,051;LINESTRING (3515506.727669236 5405923.472119496, 3515529.855193303 5405927.417100637, 3515530.993987629 5405919.480116153, 3515518.401270872 5405886.973071017, 3515501.092060358 5405894.075855519);[513, 514, 334] +513,0;['DEBW522AA00010194'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;53879,0;9274,0;6858,0;4748,0;1405,0;81,0;1,0;0,0;0,0;226,0;2438,0;6061,0;8990,0;12,0;29,94;LINESTRING (3515506.727669236 5405923.472119496, 3515505.630978193 5405916.151716032, 3515501.092060358 5405894.075855519);[512, 514, 334] +515,0;['DEBW522AA000270e8', 'DEBW522AA00040b6d', 'DEBW522AA0000c955', 'DEBW522AA000136ba'];Counter({'residential': 4});Counter({'1949-1971': 3, 'Before 1948': 1});4,0;36379,0;6519,0;4565,0;3001,0;826,0;44,0;0,0;0,0;0,0;101,0;1395,0;4055,0;6442,0;38,1;30,385;LINESTRING (3515498.119113964 5405674.357350654, 3515480.337764504 5405673.896870526, 3515468.770747404 5405668.905214368);[517, 520, 395, 62] +517,0;['DEBW522AA00001015', 'DEBW522AA0000896b', 'DEBW522AA0002c1b3', 'DEBW522AA00027a64', 'DEBW522AA000135d1', 'DEBW522AA00014655', 'DEBW522AA0004402f', 'DEBW522AA00018d70'];Counter({'residential': 6, 'non-heated': 2});Counter({'1972-1990': 4, '1949-1971': 4});8,0;38565,0;7526,0;5020,0;2808,0;476,0;17,0;0,0;0,0;0,0;65,0;1407,0;4705,0;7422,0;52,0;43,075;LINESTRING (3515498.119113964 5405674.357350654, 3515500.476912906 5405717.367328089);[520, 515] +518,0;['DEBW522AA00005afc', 'DEBW522AA0000896a', 'DEBW522AA00008c9e', 'DEBW522AA00003310', 'DEBW522AA00042946', 'DEBW522AA000135d0', 'DEBW522AA00c9b587', 'DEBW522AA0001d174'];Counter({'residential': 7, 'non-heated': 1});Counter({'1991-2010': 3, '1972-1990': 3, '1949-1971': 1, 'After 2011': 1});8,0;50676,0;9932,0;6614,0;3781,0;699,0;27,0;0,0;0,0;0,0;100,0;1895,0;6169,0;9806,0;55,8;41,408;LINESTRING (3515527.96845852 5405673.994936571, 3515529.654519408 5405715.368338508);[520, 521] +520,0;['DEBW522AA0000fc82', 'DEBW522AA0002d81e'];Counter({'residential': 2});Counter({'1991-2010': 1, '1949-1971': 1});2,0;22735,0;4411,0;3002,0;1858,0;457,0;27,0;0,0;0,0;0,0;66,0;902,0;2736,0;4377,0;18,2;29,852;LINESTRING (3515527.96845852 5405673.994936571, 3515498.119113964 5405674.357350654);[515, 517, 518, 521] +521,0;['DEBW522AA0002505d', 'DEBW522AA000292e3', 'DEBW522AA0003d405', 'DEBW522AA0003d404', 'DEBW522AA0002820b', 'DEBW522AA00036e7d', 'DEBW522AA00042caf', 'DEBW522AA0003152f'];Counter({'non-heated': 4, 'residential': 4});Counter({'1949-1971': 3, '1972-1990': 2, 'Before 1948': 2, '1991-2010': 1});8,0;41905,0;7904,0;5551,0;3520,0;846,0;40,0;0,0;0,0;0,0;123,0;1769,0;5057,0;7780,0;117,9;29,002;LINESTRING (3515527.96845852 5405673.994936571, 3515556.839210123 5405676.754869055);[480, 518, 520, 522] +522,0;['DEBW522AA00008fc4', 'DEBW522AA000292e2', 'DEBW522AA00031691', 'DEBW522AA0003312e', 'DEBW522AA00037537', 'DEBW522AA00024f08', 'DEBW522AA0000ea4e'];Counter({'residential': 5, 'non-heated': 2});Counter({'1972-1990': 3, '1949-1971': 1, 'Before 1948': 1, '1991-2010': 1, 'After 2011': 1});7,0;36715,0;7182,0;4782,0;2700,0;486,0;18,0;0,0;0,0;0,0;68,0;1348,0;4454,0;7084,0;53,7;36,393;LINESTRING (3515558.854960863 5405713.09154844, 3515556.839210123 5405676.754869055);[480, 521] +523,0;['DEBW522AA00010260'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;2736,0;337,0;202,0;80,0;7,0;0,0;0,0;0,0;0,0;0,0;13,0;142,0;321,0;17,9;39,862;LINESTRING (3515701.055056005 5406587.091192097, 3515685.073800491 5406585.011462835, 3515675.423488519 5406583.705648065, 3515662.345119382 5406578.687114656);[1, 100, 327, 508] +524,0;['DEBW522AA00c43eba', 'DEBW522AA0000912f', 'DEBW522AA00009133'];Counter({'residential': 1, 'office and administration': 1, 'non-heated': 1});Counter({'1972-1990': 2, 'After 2011': 1});3,0;305711,0;53865,0;40077,0;28704,0;10553,0;1342,0;45,0;5,0;9,0;2229,0;14616,0;34793,0;52156,0;27,0;56,764;LINESTRING (3514352.980114012 5405742.743694366, 3514335.200192085 5405727.362986611, 3514313.283288416 5405752.37300435);[525, 526] +526,0;['DEBW522AA0003c2ed'];Counter({'office and administration': 1});Counter({'1991-2010': 1});1,0;8669,0;1748,0;1195,0;777,0;254,0;32,0;1,0;0,0;0,0;50,0;393,0;1052,0;1732,0;17,4;49,734;LINESTRING (3514337.838394723 5405779.169556572, 3514328.563208992 5405771.283626062, 3514352.980114012 5405742.743694366);[524, 525, 527, 528] +1,0;;;;;;;;;;;;;;;;;;;3,977;LINESTRING (3515701.055056005 5406587.091192097, 3515704.931784209 5406587.980561495);[2, 3, 523, 508] +6,0;;;;;;;;;;;;;;;;;;;32,659;LINESTRING (3515286.281740218 5405543.276522732, 3515303.067559122 5405547.881665675, 3515310.822791263 5405549.582004875, 3515313.672325506 5405550.179162683, 3515317.975943206 5405551.102783599);[8, 12, 7] +7,0;;;;;;;;;;;;;;;;;;;115,513;LINESTRING (3515214.393842836 5405458.653662024, 3515221.672702768 5405465.367987646, 3515284.567555505 5405525.089639358, 3515286.635345331 5405529.432307395, 3515287.705547663 5405535.818457084, 3515286.281740218 5405543.276522732);[8, 139, 6] +8,0;;;;;;;;;;;;;;;;;;;161,108;LINESTRING (3515129.367609127 5405506.754336191, 3515273.723991063 5405540.351014267, 3515286.281740218 5405543.276522732);[6, 7, 139, 140] +9,0;;;;;;;;;;;;;;;;;;;11,01;LINESTRING (3514947.640825185 5406231.444105566, 3514939.128985028 5406224.459951276);[10, 11, 299, 48] +10,0;;;;;;;;;;;;;;;;;;;16,64;LINESTRING (3514947.640825185 5406231.444105566, 3514946.269207628 5406227.792889147, 3514945.691876949 5406223.854649403, 3514946.560626833 5406220.431805479, 3514949.78241438 5406216.314622181);[355, 9, 11, 427, 56] +12,0;;;;;;;;;;;;;;;;;;;14,393;LINESTRING (3515316.217529558 5405565.387993678, 3515317.014102271 5405558.906840482, 3515317.975943206 5405551.102783599);[140, 498, 6] +22,0;;;;;;;;;;;;;;;;;;;31,035;LINESTRING (3514532.187042753 5406080.537177456, 3514545.111093739 5406086.397821848, 3514555.18285534 5406087.113378423, 3514561.885900542 5406086.341179474);[23, 24, 30, 31] +23,0;;;;;;;;;;;;;;;;;;;43,604;LINESTRING (3514532.187042753 5406080.537177456, 3514547.661639339 5406094.566963766, 3514564.153351705 5406110.189679203);[32, 22, 24, 31] +30,0;;;;;;;;;;;;;;;;;;;13,827;LINESTRING (3514570.833241705 5406075.799776652, 3514561.885900542 5406086.341179474);[431, 340, 22, 31] +31,0;;;;;;;;;;;;;;;;;;;24,046;LINESTRING (3514561.885900542 5406086.341179474, 3514562.057827471 5406096.561480797, 3514562.439826922 5406102.267352195, 3514564.153351705 5406110.189679203);[32, 22, 23, 30] +36,0;;;;;;;;;;;;;;;;;;;24,655;LINESTRING (3514576.474580911 5405883.627769752, 3514592.915421868 5405865.254684937);[160, 37, 38, 414] +38,0;;;;;;;;;;;;;;;;;;;39,62;LINESTRING (3514546.930790977 5405857.228705967, 3514576.474580911 5405883.627769752);[36, 37, 153, 154] +40,0;;;;;;;;;;;;;;;;;;;4,434;LINESTRING (3514291.815741734 5405646.850444937, 3514288.700764039 5405643.695391214);[41, 42, 349] +42,0;;;;;;;;;;;;;;;;;;;6,848;LINESTRING (3514296.616412985 5405651.733483239, 3514291.815741734 5405646.850444937);[40, 41, 346] +43,0;;;;;;;;;;;;;;;;;;;2,098;LINESTRING (3514834.89065505 5405770.328712435, 3514834.61691521 5405768.248433192);[490, 44, 45, 46, 47] +51,0;;;;;;;;;;;;;;;;;;;33,137;LINESTRING (3514132.437264139 5405694.888872999, 3514111.007320372 5405669.613480274);[380, 381, 55] +52,0;;;;;;;;;;;;;;;;;;;26,597;LINESTRING (3514961.42144247 5406401.114943019, 3514952.522087863 5406401.814092514, 3514948.113042584 5406402.080375904, 3514944.49935459 5406401.648178278, 3514940.212089184 5406400.324540908, 3514935.56705453 5406398.154787432);[432, 49, 433, 53, 54] +55,0;;;;;;;;;;;;;;;;;;;25,537;LINESTRING (3514132.437264139 5405694.888872999, 3514125.845127862 5405698.152884533, 3514117.371329196 5405701.63459, 3514109.000721107 5405704.994240507);[51, 380, 381] +56,0;;;;;;;;;;;;;;;;;;;17,344;LINESTRING (3514949.78241438 5406216.314622181, 3514956.613879632 5406208.659566579, 3514959.274288612 5406205.664078303, 3514961.322999262 5406203.36756228);[355, 10, 427, 14, 57] +58,0;;;;;;;;;;;;;;;;;;;11,016;LINESTRING (3515052.548205913 5405745.341198841, 3515053.150702737 5405756.341111489);[59, 60] +61,0;;;;;;;;;;;;;;;;;;;25,792;LINESTRING (3515344.588483964 5405627.685296311, 3515337.285047912 5405619.336008076, 3515332.17192819 5405616.174917251, 3515328.694740298 5405616.710341427, 3515324.439446667 5405619.645700944);[487, 493, 62, 63] +70,0;;;;;;;;;;;;;;;;;;;42,669;LINESTRING (3515758.239997768 5406284.458417303, 3515774.441726208 5406265.865695114, 3515779.5074131 5406262.065542545, 3515784.434860226 5406260.400169393, 3515790.908169879 5406260.318277166);[69, 71, 74, 81] +71,0;;;;;;;;;;;;;;;;;;;50,429;LINESTRING (3515837.643534136 5406279.143652192, 3515801.521458857 5406264.262588669, 3515796.040072863 5406261.722786245, 3515790.908169879 5406260.318277166);[69, 70, 329, 208] +72,0;;;;;;;;;;;;;;;;;;;2,893;LINESTRING (3515693.344296803 5406290.993608597, 3515695.758689475 5406289.398981838);[73, 74] +75,0;;;;;;;;;;;;;;;;;;;13,595;LINESTRING (3515391.429179946 5406670.873462771, 3515404.850515882 5406668.708367087);[484, 76, 77, 467] +77,0;;;;;;;;;;;;;;;;;;;24,094;LINESTRING (3515412.619832601 5406691.49364133, 3515408.520644548 5406677.959689966, 3515404.850515882 5406668.708367087);[75, 76, 78, 79] +78,0;;;;;;;;;;;;;;;;;;;19,769;LINESTRING (3515419.31323103 5406710.094610904, 3515412.619832601 5406691.49364133);[77, 79, 80, 87] +79,0;;;;;;;;;;;;;;;;;;;10,604;LINESTRING (3515412.619832601 5406691.49364133, 3515423.179896818 5406690.532889801);[77, 78] +80,0;;;;;;;;;;;;;;;;;;;86,455;LINESTRING (3515419.31323103 5406710.094610904, 3515431.062317064 5406725.606815848, 3515475.36293439 5406720.501992095, 3515479.551935038 5406720.024226587, 3515484.949358264 5406718.259800507, 3515488.874833639 5406714.767620137, 3515489.38434038 5406711.165935561, 3515489.805655792 5406707.575128486);[78, 87] +81,0;;;;;;;;;;;;;;;;;;;40,98;LINESTRING (3515758.239997768 5406284.458417303, 3515731.291557201 5406315.331630948);[70, 73, 74, 82] +82,0;;;;;;;;;;;;;;;;;;;25,618;LINESTRING (3515714.44891296 5406334.634406105, 3515731.291557201 5406315.331630948);[73, 203, 81, 476] +84,0;;;;;;;;;;;;;;;;;;;163,84;LINESTRING (3515064.528483836 5405508.303849726, 3515059.343794081 5405507.077806352, 3515048.659380602 5405504.269030584, 3515021.41346526 5405498.024194473, 3514970.892665429 5405487.14686742, 3514914.073562237 5405473.68441738, 3514909.58625733 5405472.705017455, 3514904.849252686 5405471.669355827);[83, 85, 88, 89, 90] +85,0;;;;;;;;;;;;;;;;;;;60,757;LINESTRING (3515024.886883832 5405482.409007384, 3515051.956212886 5405488.764593131, 3515068.230382039 5405492.478009354, 3515066.562573429 5405500.602711993, 3515064.528483836 5405508.303849726);[442, 83, 84] +86,0;;;;;;;;;;;;;;;;;;;58,532;LINESTRING (3515505.784549462 5405444.670827654, 3515492.877657454 5405501.761879941);[345] +87,0;;;;;;;;;;;;;;;;;;;6,163;LINESTRING (3515425.406300014 5406709.166085596, 3515419.31323103 5406710.094610904);[80, 78] +88,0;;;;;;;;;;;;;;;;;;;83,935;LINESTRING (3514904.849252686 5405471.669355827, 3514894.62611362 5405469.440370577, 3514822.925437407 5405453.403928217);[89, 90, 84] +89,0;;;;;;;;;;;;;;;;;;;115,221;LINESTRING (3514893.361465982 5405586.281374415, 3514893.777611838 5405573.427039376, 3514894.112389314 5405569.102005082, 3514897.493400115 5405538.284606192, 3514904.849252686 5405471.669355827);[303, 305, 83, 84, 88, 90, 447] +90,0;;;;;;;;;;;;;;;;;;;16,218;LINESTRING (3514906.729051719 5405455.560564334, 3514905.707272349 5405464.009524777, 3514904.849252686 5405471.669355827);[442, 84, 88, 89] +93,0;;;;;;;;;;;;;;;;;;;19,774;LINESTRING (3514678.688524719 5405974.793805263, 3514693.717918797 5405987.64404433);[96, 94, 95] +98,0;;;;;;;;;;;;;;;;;;;25,94;LINESTRING (3514636.416704105 5405977.619393225, 3514636.469502594 5405971.447583717, 3514636.0355557 5405965.963985308, 3514634.616603643 5405960.633510516, 3514630.30856004 5405953.015785838);[99, 138, 374, 91] +99,0;;;;;;;;;;;;;;;;;;;22,821;LINESTRING (3514636.651234306 5406000.439527643, 3514636.416704105 5405977.619393225);[98, 394, 148, 91] +101,0;;;;;;;;;;;;;;;;;;;12,013;LINESTRING (3515695.203974566 5406374.937413829, 3515691.811307825 5406371.669586855, 3515691.058276399 5406367.697413712, 3515690.986549996 5406364.438864949);[100, 102, 204, 206] +105,0;;;;;;;;;;;;;;;;;;;40,871;LINESTRING (3514182.482906845 5405757.134684574, 3514167.829840215 5405737.113983139, 3514157.492611355 5405724.821897388);[106, 107, 381] +106,0;;;;;;;;;;;;;;;;;;;45,789;LINESTRING (3514214.107519728 5405789.709013404, 3514196.623709868 5405767.54591823, 3514182.482906845 5405757.134684574);[161, 105, 107, 436] +117,0;;;;;;;;;;;;;;;;;;;55,751;LINESTRING (3515803.256785599 5405487.246413969, 3515777.417560886 5405490.621193548, 3515747.790501076 5405492.59539637);[187, 118] +118,0;;;;;;;;;;;;;;;;;;;75,007;LINESTRING (3515672.973089957 5405488.416143491, 3515682.279050021 5405490.032358121, 3515747.790501076 5405492.59539637);[202, 117] +123,0;;;;;;;;;;;;;;;;;;;8,96;LINESTRING (3514486.653925898 5405740.907005315, 3514489.108404165 5405746.529245342, 3514490.755811263 5405748.824340257);[261, 119, 124, 125] +125,0;;;;;;;;;;;;;;;;;;;10,148;LINESTRING (3514497.783946033 5405756.070868142, 3514493.245661892 5405752.122463831, 3514490.755811263 5405748.824340257);[370, 123, 124] +127,0;;;;;;;;;;;;;;;;;;;50,37;LINESTRING (3514201.348558642 5405744.237919726, 3514206.512169563 5405739.246690596, 3514207.536047113 5405738.259543602, 3514219.959002718 5405724.77940873, 3514237.098497971 5405708.797986632);[131, 132, 116, 126] +128,0;;;;;;;;;;;;;;;;;;;9,78;LINESTRING (3514567.787602732 5405787.834446876, 3514566.466199229 5405784.517076711, 3514566.239995414 5405783.904856264, 3514564.969478926 5405780.798910172, 3514564.13707676 5405778.761679337);[129, 130, 291, 292, 275] +130,0;;;;;;;;;;;;;;;;;;;23,257;LINESTRING (3514591.010628369 5405786.582457589, 3514569.345547651 5405787.771761679, 3514567.787602732 5405787.834446876);[128, 129, 313, 159] +133,0;;;;;;;;;;;;;;;;;;;15,283;LINESTRING (3515782.388375025 5405748.678275315, 3515779.641677127 5405742.910072239, 3515777.777005259 5405739.66873119, 3515775.261879639 5405735.168932869);[134, 198, 200, 199, 135] +136,0;;;;;;;;;;;;;;;;;;;50,992;LINESTRING (3514534.475267558 5405894.49504777, 3514527.869538286 5405888.795329586, 3514520.788251725 5405882.293705751, 3514515.486165349 5405875.396343673, 3514513.140436681 5405867.528005673, 3514514.344218679 5405859.479784016, 3514516.452142692 5405856.994208979, 3514519.164949497 5405853.598306382);[137, 138] +138,0;;;;;;;;;;;;;;;;;;;149,244;LINESTRING (3514630.30856004 5405953.015785838, 3514620.360939727 5405944.026673579, 3514610.778470673 5405933.059057507, 3514576.760999169 5405903.534428285, 3514548.974849986 5405879.441880425, 3514519.164949497 5405853.598306382);[98, 136, 137, 374] +139,0;;;;;;;;;;;;;;;;;;;104,591;LINESTRING (3515214.393842836 5405458.653662024, 3515197.960596989 5405464.858985592, 3515130.116533235 5405493.322641062, 3515129.367609127 5405506.754336191);[8, 140, 7] +144,0;;;;;;;;;;;;;;;;;;;15,033;LINESTRING (3514283.040379922 5405601.166891429, 3514276.023423573 5405609.600733188, 3514273.516905318 5405612.797104975);[386, 142, 143, 145, 347] +146,0;;;;;;;;;;;;;;;;;;;35,534;LINESTRING (3514918.817912079 5406424.88877797, 3514948.868977267 5406443.851496942);[433, 53, 439] +147,0;;;;;;;;;;;;;;;;;;;86,265;LINESTRING (3514246.624331413 5405571.360193623, 3514250.541832957 5405568.122904452, 3514253.158384761 5405565.004645871, 3514256.346962214 5405556.538823805, 3514273.459344144 5405490.659251919);[145, 372, 387] +148,0;;;;;;;;;;;;;;;;;;;19,52;LINESTRING (3514636.651234306 5406000.439527643, 3514624.069818315 5406015.364014128);[99, 394, 149, 150] +149,0;;;;;;;;;;;;;;;;;;;10,533;LINESTRING (3514617.127667008 5406023.286079448, 3514624.069818315 5406015.364014128);[148, 150, 251, 252] +151,0;;;;;;;;;;;;;;;;;;;40,48;LINESTRING (3514411.701161606 5405572.537215658, 3514428.206203833 5405609.500005567);[142, 368, 152, 185] +152,0;;;;;;;;;;;;;;;;;;;28,657;LINESTRING (3514440.543682368 5405635.364882839, 3514428.206203833 5405609.500005567);[261, 461, 142, 151] +155,0;;;;;;;;;;;;;;;;;;;15,889;LINESTRING (3515037.136144073 5406312.630010982, 3515025.806910051 5406301.490186008);[11, 432, 54, 441, 156, 157] +157,0;;;;;;;;;;;;;;;;;;;16,461;LINESTRING (3515041.042699135 5406296.982613756, 3515041.318090569 5406301.15358916, 3515040.803095715 5406304.154781925, 3515039.361003109 5406307.653921564, 3515037.136144073 5406312.630010982);[427, 443, 54, 441, 155, 156] +161,0;;;;;;;;;;;;;;;;;;;31,49;LINESTRING (3514201.350540789 5405760.918850378, 3514214.107519728 5405789.709013404);[162, 163, 106, 436] +162,0;;;;;;;;;;;;;;;;;;;70,413;LINESTRING (3514201.350540789 5405760.918850378, 3514227.498336059 5405794.446914488, 3514244.379295503 5405816.653062719);[161, 163, 297, 298] +163,0;;;;;;;;;;;;;;;;;;;63,878;LINESTRING (3514161.650004175 5405710.875996925, 3514201.350540789 5405760.918850378);[161, 162, 132, 421] +164,0;;;;;;;;;;;;;;;;;;;37,607;LINESTRING (3514194.644784799 5405450.981507041, 3514158.041736695 5405442.348571142);[372, 369, 373] +166,0;;;;;;;;;;;;;;;;;;;26,393;LINESTRING (3515945.125648725 5406319.059466491, 3515931.212809546 5406315.394658522, 3515920.101791971 5406310.848174128);[168, 391, 167] +168,0;;;;;;;;;;;;;;;;;;;34,463;LINESTRING (3515926.572156345 5406348.09843582, 3515934.895754227 5406335.45562835, 3515945.125648725 5406319.059466491);[181, 166, 167] +169,0;;;;;;;;;;;;;;;;;;;22,771;LINESTRING (3515956.352450563 5406324.217965241, 3515944.365464009 5406343.578331115);[] +170,0;;;;;;;;;;;;;;;;;;;13,467;LINESTRING (3515185.471875038 5405749.290799064, 3515198.927717774 5405748.737785493);[450, 171, 172, 173, 60] +172,0;;;;;;;;;;;;;;;;;;;60,382;LINESTRING (3515198.927717774 5405748.737785493, 3515203.702303793 5405746.637782847, 3515221.170574989 5405745.951112376, 3515238.867393211 5405744.98710054, 3515250.413636108 5405744.106534052, 3515254.095999881 5405743.749548606, 3515258.755925227 5405743.295134439);[170, 171, 173, 176] +174,0;;;;;;;;;;;;;;;;;;;16,408;LINESTRING (3515292.927827537 5405739.395727912, 3515309.187822383 5405737.193638287);[491, 492, 175, 176, 177, 402] +175,0;;;;;;;;;;;;;;;;;;;19,254;LINESTRING (3515292.927827537 5405739.395727912, 3515293.369284786 5405733.781012345, 3515293.618453428 5405731.324031774, 3515293.894081446 5405727.243511592, 3515294.61125974 5405720.217226977);[516, 174, 176, 177, 501] +176,0;;;;;;;;;;;;;;;;;;;34,426;LINESTRING (3515258.755925227 5405743.295134439, 3515268.772906455 5405742.73295147, 3515281.90062009 5405741.256233575, 3515287.921479878 5405740.238393094, 3515292.927827537 5405739.395727912);[172, 174, 175, 177] +177,0;;;;;;;;;;;;;;;;;;;5,262;LINESTRING (3515292.413918784 5405744.632145028, 3515292.775393604 5405741.408146699, 3515292.927827537 5405739.395727912);[322, 420, 173, 174, 175, 176] +179,0;;;;;;;;;;;;;;;;;;;41,719;LINESTRING (3515364.609890358 5405975.593303612, 3515364.038073229 5405975.113552707, 3515358.298065914 5405970.238142809, 3515357.045764211 5405963.328806949, 3515356.177212423 5405958.500078538, 3515359.042363074 5405945.229875166, 3515360.724162043 5405937.472271624);[497, 178, 180, 182] +180,0;;;;;;;;;;;;;;;;;;;79,677;LINESTRING (3515282.488523881 5405922.412885381, 3515318.871506269 5405929.139859247, 3515339.604027838 5405932.977438445, 3515350.869077221 5405935.376899657, 3515360.724162043 5405937.472271624);[260, 422, 178, 179] +182,0;;;;;;;;;;;;;;;;;;;17,882;LINESTRING (3515364.609890358 5405975.593303612, 3515360.359509774 5405992.963231052);[497, 179] +183,0;;;;;;;;;;;;;;;;;;;44,86;LINESTRING (3516032.154966877 5406048.50840727, 3516035.243700771 5406024.374311888, 3516040.407058767 5406004.505347908);[208, 184] +185,0;;;;;;;;;;;;;;;;;;;18,107;LINESTRING (3514411.701161606 5405572.537215658, 3514428.443606128 5405565.640903681);[165, 368, 151, 186] +187,0;;;;;;;;;;;;;;;;;;;14,965;LINESTRING (3515817.881751383 5405484.073705216, 3515803.256785599 5405487.246413969);[256, 257, 117] +190,0;;;;;;;;;;;;;;;;;;;31,929;LINESTRING (3515177.747546234 5406316.144136235, 3515180.370341119 5406318.942502381, 3515173.987026974 5406331.992006287, 3515170.549810522 5406345.116196047);[188, 189, 191] +193,0;;;;;;;;;;;;;;;;;;;43,826;LINESTRING (3514196.103233215 5405606.885065685, 3514166.72381727 5405639.405466471);[192, 194, 195, 486] +194,0;;;;;;;;;;;;;;;;;;;14,793;LINESTRING (3514177.713847826 5405649.308281202, 3514166.72381727 5405639.405466471);[193, 195, 196, 197] +195,0;;;;;;;;;;;;;;;;;;;36,15;LINESTRING (3514142.202171681 5405665.966470831, 3514166.72381727 5405639.405466471);[193, 194] +196,0;;;;;;;;;;;;;;;;;;;52,681;LINESTRING (3514142.608387019 5405688.531221111, 3514147.16816446 5405684.049966753, 3514149.532363519 5405681.887397503, 3514152.20845832 5405678.424502511, 3514177.713847826 5405649.308281202);[194, 197, 421, 380] +199,0;;;;;;;;;;;;;;;;;;;153,481;LINESTRING (3515782.388375025 5405748.678275315, 3515768.485068556 5405751.55284258, 3515751.331926109 5405752.51670402, 3515736.804463804 5405752.620562475, 3515723.82790314 5405752.561989366, 3515711.953640237 5405752.473166944, 3515700.667871579 5405752.152480963, 3515691.853243604 5405751.049154036, 3515685.118447143 5405749.829319993, 3515678.413908023 5405748.298200806, 3515641.876090704 5405738.843909166, 3515638.352212384 5405737.688674798, 3515631.25218048 5405735.678324363);[356, 133, 230, 198, 200, 344] +201,0;;;;;;;;;;;;;;;;;;;126,192;LINESTRING (3515582.686355866 5406632.623103159, 3515581.488129853 5406638.168981716, 3515574.363176126 5406642.908857943, 3515566.49614041 5406647.668927867, 3515558.584944669 5406652.462248433, 3515542.414279794 5406663.137782677, 3515530.563367175 5406676.572105645, 3515519.09058512 5406691.442061885, 3515504.827910674 5406702.979266275, 3515500.482217389 5406712.319736121, 3515502.104069213 5406720.964954909);[328, 76] +202,0;;;;;;;;;;;;;;;;;;;59,918;LINESTRING (3515658.335013743 5405546.480613328, 3515670.469538984 5405495.51524191, 3515672.973089957 5405488.416143491);[65, 457, 118] +203,0;;;;;;;;;;;;;;;;;;;24,498;LINESTRING (3515714.44891296 5406334.634406105, 3515705.62500341 5406345.074252686, 3515702.047708188 5406355.295243268);[102, 204, 82, 476] +214,0;;;;;;;;;;;;;;;;;;;46,541;LINESTRING (3515353.902137517 5405744.866549201, 3515324.572776168 5405746.009751896, 3515317.451739344 5405746.27947165, 3515307.408605529 5405745.651589012);[420, 326, 491, 215, 216] +215,0;;;;;;;;;;;;;;;;;;;12,997;LINESTRING (3515354.579466866 5405757.846173813, 3515354.188409555 5405750.360922023, 3515353.902137517 5405744.866549201);[214, 216, 250, 253] +216,0;;;;;;;;;;;;;;;;;;;46,999;LINESTRING (3515400.798812654 5405741.769909744, 3515353.902137517 5405744.866549201);[390, 401, 342, 214, 215] +217,0;;;;;;;;;;;;;;;;;;;66,132;LINESTRING (3514383.631396584 5405733.180474515, 3514358.764446866 5405710.530916991, 3514344.442190167 5405696.415645005, 3514335.469820226 5405687.874361098);[64, 218, 346, 219] +218,0;;;;;;;;;;;;;;;;;;;28,054;LINESTRING (3514367.857080606 5405755.392486232, 3514374.091721767 5405748.280110787, 3514382.338250858 5405738.882042687, 3514383.829465203 5405736.183548413, 3514383.631396584 5405733.180474515);[224, 217, 219, 223] +219,0;;;;;;;;;;;;;;;;;;;15,097;LINESTRING (3514394.634446763 5405743.517456993, 3514383.631396584 5405733.180474515);[226, 335, 217, 218] +221,0;;;;;;;;;;;;;;;;;;;30,227;LINESTRING (3514455.802207332 5405470.952434553, 3514473.963591469 5405446.789592963);[446] +223,0;;;;;;;;;;;;;;;;;;;7,162;LINESTRING (3514373.312190766 5405760.032611331, 3514367.857080606 5405755.392486232);[224, 335, 341, 218] +224,0;;;;;;;;;;;;;;;;;;;7,353;LINESTRING (3514362.255313099 5405750.629664966, 3514367.857080606 5405755.392486232);[525, 527, 218, 223] +225,0;;;;;;;;;;;;;;;;;;;24,279;LINESTRING (3514396.091308859 5405777.216664347, 3514412.024709727 5405758.897355872);[226, 227, 248, 249] +226,0;;;;;;;;;;;;;;;;;;;23,217;LINESTRING (3514412.024709727 5405758.897355872, 3514402.478912761 5405750.543542843, 3514395.521652962 5405744.264810743, 3514394.634446763 5405743.517456993);[225, 227, 335, 219] +227,0;;;;;;;;;;;;;;;;;;;64,175;LINESTRING (3514460.457842839 5405800.990978721, 3514442.254615591 5405784.67470582, 3514421.761098796 5405767.41848378, 3514412.024709727 5405758.897355872);[225, 226, 137, 281] +228,0;;;;;;;;;;;;;;;;;;;63,697;LINESTRING (3515724.793040689 5405819.977969482, 3515785.730631321 5405801.432830905);[229, 198, 231, 233, 234] +233,0;;;;;;;;;;;;;;;;;;;46,632;LINESTRING (3515706.719456665 5405776.990647639, 3515724.793040689 5405819.977969482);[234, 228, 231] +246,0;;;;;;;;;;;;;;;;;;;13,877;LINESTRING (3514752.90632679 5406059.67173536, 3514756.215009271 5406056.021736395, 3514758.565702232 5406053.436803501, 3514762.433337968 5406049.588104979);[96, 503, 237, 366, 247, 122] +248,0;;;;;;;;;;;;;;;;;;;9,202;LINESTRING (3514390.055493898 5405784.162715342, 3514396.091308859 5405777.216664347);[249, 225, 109] +249,0;;;;;;;;;;;;;;;;;;;55,739;LINESTRING (3514390.055493898 5405784.162715342, 3514393.017451033 5405786.76140401, 3514407.511916473 5405799.487168032, 3514413.606435114 5405792.57464808, 3514399.089921472 5405779.848811943, 3514396.091308859 5405777.216664347);[248, 225, 109] +253,0;;;;;;;;;;;;;;;;;;;16,74;LINESTRING (3515337.867302498 5405758.812507304, 3515354.579466866 5405757.846173813);[250, 215] +254,0;;;;;;;;;;;;;;;;;;;10,938;LINESTRING (3515830.897703512 5405566.94793475, 3515826.856909357 5405577.11192791);[454, 235, 413, 255] +255,0;;;;;;;;;;;;;;;;;;;64,938;LINESTRING (3515854.89845957 5405506.60834677, 3515830.897703512 5405566.94793475);[256, 290, 235, 254] +256,0;;;;;;;;;;;;;;;;;;;43,336;LINESTRING (3515854.89845957 5405506.60834677, 3515817.881751383 5405484.073705216);[257, 290, 187, 255] +257,0;;;;;;;;;;;;;;;;;;;49,991;LINESTRING (3515865.920797048 5405470.24164007, 3515854.381404698 5405473.667583124, 3515817.881751383 5405484.073705216);[256, 187, 348] +260,0;;;;;;;;;;;;;;;;;;;14,837;LINESTRING (3515282.488523881 5405922.412885381, 3515267.798464726 5405920.326752629);[258, 259, 422, 180] +268,0;;;;;;;;;;;;;;;;;;;5,128;LINESTRING (3514594.300366588 5405767.596978096, 3514594.188750635 5405762.470081883);[482, 519, 267, 269] +270,0;;;;;;;;;;;;;;;;;;;81,656;LINESTRING (3515362.066711101 5406091.563438775, 3515378.728716932 5406087.082924361, 3515382.073023619 5406081.298228945, 3515387.735072856 5406077.021168794, 3515392.938158015 5406071.308294976, 3515396.671912552 5406065.524675328, 3515403.148390446 5406050.952155105, 3515408.724587291 5406037.800614535, 3515411.816664909 5406032.916016641);[271, 272, 277, 279] +272,0;;;;;;;;;;;;;;;;;;;29,155;LINESTRING (3515400.33206356 5406006.128279264, 3515404.693020116 5406015.492687684, 3515405.467274695 5406017.174026358, 3515411.816664909 5406032.916016641);[494, 270, 497, 271] +273,0;;;;;;;;;;;;;;;;;;;53,956;LINESTRING (3515379.429363208 5406220.454630063, 3515369.797060792 5406177.358043578, 3515368.096716307 5406170.414115049, 3515367.464505464 5406167.84351874);[271, 274, 283, 284] +274,0;;;;;;;;;;;;;;;;;;;45,114;LINESTRING (3515325.137026492 5406183.396874175, 3515330.433294731 5406181.176076015, 3515336.972745535 5406178.424885965, 3515359.84543339 5406170.413791288, 3515362.91953662 5406169.376856913, 3515367.464505464 5406167.84351874);[271, 273, 280, 282] +275,0;;;;;;;;;;;;;;;;;;;14,346;LINESTRING (3514549.806677297 5405779.425160783, 3514564.13707676 5405778.761679337);[128, 291, 292, 263, 276] +276,0;;;;;;;;;;;;;;;;;;;42,859;LINESTRING (3514507.091053123 5405782.839975984, 3514534.549974722 5405780.264213232, 3514549.806677297 5405779.425160783);[263, 370, 371, 275] +279,0;;;;;;;;;;;;;;;;;;;43,614;LINESTRING (3515362.066711101 5406091.563438775, 3515360.558171346 5406097.775749004, 3515356.854167873 5406106.13946136, 3515354.327059842 5406111.348132142, 3515351.169340822 5406113.396820618, 3515347.604045897 5406114.02095618, 3515338.018275995 5406112.97168004, 3515332.864757949 5406114.014073427);[270, 277, 278, 280] +280,0;;;;;;;;;;;;;;;;;;;69,815;LINESTRING (3515325.137026492 5406183.396874175, 3515330.582564531 5406131.811982106, 3515332.864757949 5406114.014073427);[274, 278, 279, 282] +281,0;;;;;;;;;;;;;;;;;;;34,432;LINESTRING (3514493.462116262 5405807.859571713, 3514483.760668031 5405808.668608481, 3514476.606307718 5405807.66044046, 3514460.457842839 5405800.990978721);[129, 227, 137, 398, 154] +286,0;;;;;;;;;;;;;;;;;;;103,17;LINESTRING (3514512.652395053 5405991.188075854, 3514483.783781737 5405965.213667007, 3514436.539300913 5405921.543748296);[288, 289, 114, 285] +288,0;;;;;;;;;;;;;;;;;;;52,782;LINESTRING (3514550.576324972 5406027.29472316, 3514544.758767213 5406018.060664986, 3514512.652395053 5405991.188075854);[289, 469, 285, 286] +290,0;;;;;;;;;;;;;;;;;;;12,962;LINESTRING (3515867.128800713 5405510.902073364, 3515854.89845957 5405506.60834677);[256, 353, 348, 255] +291,0;;;;;;;;;;;;;;;;;;;9,954;LINESTRING (3514564.13707676 5405778.761679337, 3514564.404535173 5405774.792310705, 3514565.529286161 5405768.923537663);[128, 292, 519, 269, 275] +292,0;;;;;;;;;;;;;;;;;;;34,135;LINESTRING (3514564.13707676 5405778.761679337, 3514589.90392309 5405779.818246588, 3514598.182397589 5405780.885082235);[128, 481, 291, 275, 313] +293,0;;;;;;;;;;;;;;;;;;;29,419;LINESTRING (3515809.64293435 5405688.392106684, 3515829.463369632 5405666.651475177);[294, 295] +294,0;;;;;;;;;;;;;;;;;;;13,211;LINESTRING (3515839.08608109 5405675.697427834, 3515836.184456753 5405672.764522062, 3515829.463369632 5405666.651475177);[293, 295, 392, 393, 407] +295,0;;;;;;;;;;;;;;;;;;;31,414;LINESTRING (3515806.265848874 5405645.468085664, 3515814.291426191 5405652.841407231, 3515829.463369632 5405666.651475177);[293, 294, 411, 413] +298,0;;;;;;;;;;;;;;;;;;;26,232;LINESTRING (3514238.638309937 5405791.394712596, 3514238.211906821 5405797.287560062, 3514244.379295503 5405816.653062719);[162, 297, 131] +302,0;;;;;;;;;;;;;;;;;;;21,56;LINESTRING (3514975.285683783 5405760.903817356, 3514974.283949401 5405759.044003577, 3514972.864886772 5405756.615926155, 3514967.930331676 5405747.072405085, 3514966.285486082 5405743.887525555, 3514965.225464276 5405741.838507627);[296, 47, 303, 308, 309, 59] +313,0;;;;;;;;;;;;;;;;;;;9,159;LINESTRING (3514598.182397589 5405780.885082235, 3514595.74516317 5405782.824860808, 3514591.010628369 5405786.582457589);[481, 130, 292, 159] +315,0;;;;;;;;;;;;;;;;;;;16,165;LINESTRING (3515075.594397409 5406166.530094707, 3515084.649821708 5406159.837536993, 3515088.786214976 5406157.201933219);[320, 26, 316, 319] +319,0;;;;;;;;;;;;;;;;;;;21,167;LINESTRING (3515090.108529581 5406181.937772914, 3515075.594397409 5406166.530094707);[320, 315] +321,0;;;;;;;;;;;;;;;;;;;14,811;LINESTRING (3515298.570367343 5405807.224680508, 3515283.849380651 5405805.594369132);[258, 322, 325, 326] +325,0;;;;;;;;;;;;;;;;;;;31,391;LINESTRING (3515298.570367343 5405807.224680508, 3515294.091764727 5405838.29464748);[321, 417, 422, 326] +326,0;;;;;;;;;;;;;;;;;;;62,204;LINESTRING (3515307.408605529 5405745.651589012, 3515305.70059852 5405757.646094161, 3515298.570367343 5405807.224680508);[321, 420, 325, 491, 214] +327,0;;;;;;;;;;;;;;;;;;;9,555;LINESTRING (3515662.345119382 5406578.687114656, 3515658.360895023 5406587.372351769);[100, 328, 523, 318] +329,0;;;;;;;;;;;;;;;;;;;57,123;LINESTRING (3515891.980739626 5406296.211619045, 3515875.33369467 5406292.86171432, 3515860.218575671 5406288.203948575, 3515837.643534136 5406279.143652192);[71, 208, 375, 376] +330,0;;;;;;;;;;;;;;;;;;;24,778;LINESTRING (3515443.569604036 5405836.334817416, 3515453.721180295 5405858.937611531);[390, 331, 332, 378] +332,0;;;;;;;;;;;;;;;;;;;18,134;LINESTRING (3515467.763521115 5405848.100274443, 3515466.065367975 5405851.053687741, 3515463.280767442 5405853.626009881, 3515453.721180295 5405858.937611531);[330, 331, 333, 334] +336,0;;;;;;;;;;;;;;;;;;;3,203;LINESTRING (3515491.257535909 5405943.190808632, 3515493.02099807 5405945.8646233);[514, 331] +339,0;;;;;;;;;;;;;;;;;;;61,389;LINESTRING (3514663.875035145 5406158.123152041, 3514617.896942046 5406117.446427171);[365, 340, 245, 29] +340,0;;;;;;;;;;;;;;;;;;;62,845;LINESTRING (3514570.833241705 5406075.799776652, 3514574.278749267 5406078.844642521, 3514617.896942046 5406117.446427171);[431, 339, 245, 30] +341,0;;;;;;;;;;;;;;;;;;;37,563;LINESTRING (3514348.902576098 5405788.583594451, 3514373.312190766 5405760.032611331);[335, 528, 405, 223] +344,0;;;;;;;;;;;;;;;;;;;189,56;LINESTRING (3515631.25218048 5405735.678324363, 3515625.002818629 5405734.281983314, 3515617.893144294 5405733.094549784, 3515610.370278009 5405732.517612009, 3515599.687467745 5405732.031995749, 3515589.385829969 5405731.881076408, 3515578.356271924 5405731.894967197, 3515567.142181477 5405732.208625482, 3515544.947513369 5405733.426048911, 3515519.614745263 5405734.81282168, 3515493.054436699 5405736.352012951, 3515442.168831953 5405739.014331596);[356, 230, 199, 342, 343] +345,0;;;;;;;;;;;;;;;;;;;100,609;LINESTRING (3515601.768297631 5405474.617458406, 3515575.956469848 5405465.471418751, 3515543.998018906 5405454.82944922, 3515505.784549462 5405444.670827654);[362, 86, 361] +346,0;;;;;;;;;;;;;;;;;;;53,064;LINESTRING (3514335.469820226 5405687.874361098, 3514296.616412985 5405651.733483239);[64, 217, 42] +348,0;;;;;;;;;;;;;;;;;;;40,678;LINESTRING (3515865.920797048 5405470.24164007, 3515867.128800713 5405510.902073364);[257, 290, 353] +351,0;;;;;;;;;;;;;;;;;;;62,11;LINESTRING (3515475.005460273 5405763.792471374, 3515512.366503832 5405746.558432544, 3515518.235976581 5405744.495082471, 3515525.873395661 5405746.162034746, 3515530.48106291 5405751.334741416);[352, 350] +356,0;;;;;;;;;;;;;;;;;;;4,962;LINESTRING (3515631.25218048 5405735.678324363, 3515629.442689273 5405731.058228491);[357, 230, 199, 344] +357,0;;;;;;;;;;;;;;;;;;;8,523;LINESTRING (3515629.442689273 5405731.058228491, 3515628.225267084 5405727.562963836, 3515626.915501251 5405722.922017627);[356, 68, 135, 428] +361,0;;;;;;;;;;;;;;;;;;;24,407;LINESTRING (3515594.986802211 5405498.063155527, 3515601.768297631 5405474.617458406);[416, 362, 345, 415] +362,0;;;;;;;;;;;;;;;;;;;18,532;LINESTRING (3515619.462766652 5405480.126843969, 3515601.768297631 5405474.617458406);[416, 345, 361] +367,0;;;;;;;;;;;;;;;;;;;17,151;LINESTRING (3515455.444275433 5405830.862756741, 3515462.434152791 5405824.810123914, 3515464.116038264 5405817.085914092);[352, 358, 333, 378] +369,0;;;;;;;;;;;;;;;;;;;182,464;LINESTRING (3514194.644784799 5405450.981507041, 3514240.360907535 5405462.084296209, 3514277.666213269 5405471.876099465, 3514340.966976515 5405488.67367621, 3514352.560639014 5405489.51507165, 3514363.142697285 5405486.506173673, 3514371.27086244 5405483.313091471);[164, 368, 372, 373] +371,0;;;;;;;;;;;;;;;;;;;41,194;LINESTRING (3514466.166590262 5405784.1023267, 3514475.237347237 5405785.682568233, 3514482.182165698 5405785.322358066, 3514496.565983167 5405783.880397885, 3514507.091053123 5405782.839975984);[398, 399, 370, 276] +372,0;;;;;;;;;;;;;;;;;;;131,478;LINESTRING (3514246.624331413 5405571.360193623, 3514241.452074442 5405556.467705188, 3514198.989798962 5405455.985635019, 3514194.644784799 5405450.981507041);[387, 164, 145, 369, 147, 373] +373,0;;;;;;;;;;;;;;;;;;;71,087;LINESTRING (3514147.121686662 5405503.806941249, 3514151.424060902 5405499.469611075, 3514181.045772329 5405467.283363509, 3514190.90690594 5405455.820656536, 3514194.644784799 5405450.981507041);[164, 388, 369, 372] +374,0;;;;;;;;;;;;;;;;;;;59,017;LINESTRING (3514676.453047046 5405989.545036934, 3514657.409492051 5405971.913624614, 3514641.451694794 5405960.006318224, 3514630.30856004 5405953.015785838);[98, 394, 138, 120] +375,0;;;;;;;;;;;;;;;;;;;32,538;LINESTRING (3515891.980739626 5406296.211619045, 3515909.112137139 5406297.160886093, 3515916.765082278 5406298.227907262, 3515923.810095958 5406301.217086923);[167, 329, 376, 379] +376,0;;;;;;;;;;;;;;;;;;;27,854;LINESTRING (3515916.919738391 5406308.481579606, 3515910.120810274 5406304.214231488, 3515891.980739626 5406296.211619045);[391, 329, 375, 379, 445] +379,0;;;;;;;;;;;;;;;;;;;10,012;LINESTRING (3515916.919738391 5406308.481579606, 3515923.810095958 5406301.217086923);[391, 167, 375, 376, 445] +380,0;;;;;;;;;;;;;;;;;;;11,995;LINESTRING (3514142.608387019 5405688.531221111, 3514132.437264139 5405694.888872999);[196, 421, 51, 55, 381] +381,0;;;;;;;;;;;;;;;;;;;39,071;LINESTRING (3514157.492611355 5405724.821897388, 3514151.077888601 5405715.987095812, 3514132.437264139 5405694.888872999);[105, 51, 55, 380] +384,0;;;;;;;;;;;;;;;;;;;9,607;LINESTRING (3514238.57151737 5405582.604972045, 3514232.952402223 5405590.397412704);[385, 386, 387, 388, 197, 349] +385,0;;;;;;;;;;;;;;;;;;;104,387;LINESTRING (3514232.952402223 5405590.397412704, 3514222.482307467 5405581.196404698, 3514213.603661281 5405573.222708024, 3514155.56748773 5405520.342312226);[384, 197, 389, 486, 349] +386,0;;;;;;;;;;;;;;;;;;;46,182;LINESTRING (3514238.57151737 5405582.604972045, 3514273.516905318 5405612.797104975);[384, 387, 388, 144, 347] +387,0;;;;;;;;;;;;;;;;;;;14,182;LINESTRING (3514238.57151737 5405582.604972045, 3514240.90124696 5405576.672465746, 3514246.624331413 5405571.360193623);[384, 386, 388, 145, 147, 372] +389,0;;;;;;;;;;;;;;;;;;;68,463;LINESTRING (3514155.56748773 5405520.342312226, 3514140.728365877 5405506.815661688, 3514127.904528304 5405495.46263491, 3514104.492967444 5405474.752870273);[385, 486] +391,0;;;;;;;;;;;;;;;;;;;3,966;LINESTRING (3515920.101791971 5406310.848174128, 3515916.919738391 5406308.481579606);[166, 376, 379, 445] +392,0;;;;;;;;;;;;;;;;;;;37,788;LINESTRING (3515814.609128112 5405704.486518217, 3515839.08608109 5405675.697427834);[294, 134, 393, 407, 314] +394,0;;;;;;;;;;;;;;;;;;;43,421;LINESTRING (3514676.453047046 5405989.545036934, 3514669.264069092 5405987.824810488, 3514663.666614322 5405987.231929185, 3514655.203767301 5405989.367254078, 3514647.442340066 5405993.02794567, 3514636.651234306 5406000.439527643);[99, 148, 374, 120] +398,0;;;;;;;;;;;;;;;;;;;36,19;LINESTRING (3514466.166590262 5405784.1023267, 3514473.079690816 5405790.358792714, 3514479.554015858 5405795.791211041, 3514493.462116262 5405807.859571713);[129, 399, 371, 281, 154] +401,0;;;;;;;;;;;;;;;;;;;11,141;LINESTRING (3515400.798812654 5405741.769909744, 3515399.097283986 5405737.906388006, 3515397.526465213 5405734.610377078, 3515396.219352714 5405731.615346164);[390, 397, 402, 342, 216, 63] +404,0;;;;;;;;;;;;;;;;;;;30,51;LINESTRING (3514318.793556168 5405845.066278456, 3514338.552672066 5405821.81895364);[403, 405, 406, 408] +407,0;;;;;;;;;;;;;;;;;;;13,726;LINESTRING (3515848.750875685 5405685.444115918, 3515844.684199796 5405681.340252822, 3515842.280812994 5405678.920298073, 3515839.08608109 5405675.697427834);[294, 200, 393, 392] +408,0;;;;;;;;;;;;;;;;;;;32,987;LINESTRING (3514296.738901568 5405869.553342881, 3514303.397750233 5405863.131445987, 3514310.163275165 5405855.219665538, 3514318.793556168 5405845.066278456);[297, 404, 406, 24] +415,0;;;;;;;;;;;;;;;;;;;54,821;LINESTRING (3515582.251225978 5405551.384593337, 3515594.986802211 5405498.063155527);[416, 361, 363, 434] +416,0;;;;;;;;;;;;;;;;;;;43,023;LINESTRING (3515619.462766652 5405480.126843969, 3515613.740848904 5405503.041674291, 3515611.508367961 5405502.523922423, 3515594.986802211 5405498.063155527);[361, 362, 415] +417,0;;;;;;;;;;;;;;;;;;;41,236;LINESTRING (3515294.091764727 5405838.29464748, 3515334.527657441 5405846.378348929);[418, 419, 325, 422] +420,0;;;;;;;;;;;;;;;;;;;15,029;LINESTRING (3515307.408605529 5405745.651589012, 3515292.413918784 5405744.632145028);[322, 326, 491, 173, 177, 214] +421,0;;;;;;;;;;;;;;;;;;;29,358;LINESTRING (3514142.608387019 5405688.531221111, 3514161.650004175 5405710.875996925);[163, 196, 132, 380] +425,0;;;;;;;;;;;;;;;;;;;21,983;LINESTRING (3515069.112760466 5405892.711660342, 3515072.089356945 5405897.93521836, 3515074.781037239 5405905.2820537, 3515075.288291754 5405913.412594087);[449, 485, 423, 424] +426,0;;;;;;;;;;;;;;;;;;;55,669;LINESTRING (3515046.867818346 5405932.230365084, 3515040.596371339 5405930.879099293, 3515035.110833288 5405926.894354415, 3515031.399942522 5405921.479800921, 3515029.398648633 5405916.981713874, 3515028.717692411 5405910.585531352, 3515029.5069841 5405903.937506824, 3515031.79098674 5405898.883730569, 3515035.251837591 5405893.388278941, 3515039.179746283 5405889.095107296);[485, 423, 308, 25] +430,0;;;;;;;;;;;;;;;;;;;27,484;LINESTRING (3514624.574112192 5405925.966621464, 3514637.858895836 5405937.31088405, 3514644.629083261 5405944.690376286);[37, 429, 438, 95] +433,0;;;;;;;;;;;;;;;;;;;31,693;LINESTRING (3514918.817912079 5406424.88877797, 3514921.175814859 5406419.557134384, 3514923.818254593 5406414.982450856, 3514926.579758633 5406409.840932485, 3514930.141194367 5406405.046280885, 3514935.56705453 5406398.154787432);[432, 49, 146, 52, 439] +434,0;;;;;;;;;;;;;;;;;;;33,203;LINESTRING (3515614.666931102 5405558.558420957, 3515599.098652209 5405554.878733799, 3515582.251225978 5405551.384593337);[363, 415] +435,0;;;;;;;;;;;;;;;;;;;74,404;LINESTRING (3514784.61438541 5406340.895736418, 3514813.032305866 5406363.767884554, 3514828.865704535 5406374.908043488, 3514846.232005219 5406381.470596642);[32, 436, 437, 439] +436,0;;;;;;;;;;;;;;;;;;;794,157;LINESTRING (3514214.107519728 5405789.709013404, 3514221.570540365 5405799.447311542, 3514242.007937649 5405824.553813361, 3514259.603251374 5405843.169859424, 3514282.900751774 5405864.558363308, 3514311.412693426 5405889.774613968, 3514357.914503322 5405931.261928576, 3514398.622495337 5405968.208695468, 3514448.759377839 5406012.853227625, 3514480.119952576 5406041.224812776, 3514512.858260786 5406070.879006355, 3514547.956272563 5406102.808110777, 3514601.327864294 5406154.334954738, 3514634.251734119 5406188.416362933, 3514663.831712285 5406219.83141085, 3514709.615934251 5406269.571332466, 3514730.940128733 5406291.234584009, 3514749.122434722 5406308.975207623, 3514771.242664221 5406329.562003908, 3514784.61438541 5406340.895736418);[161, 106, 435, 437] +437,0;;;;;;;;;;;;;;;;;;;30,671;LINESTRING (3514802.380496057 5406365.897214849, 3514784.61438541 5406340.895736418);[107, 435, 436, 510] +439,0;;;;;;;;;;;;;;;;;;;84,612;LINESTRING (3514846.232005219 5406381.470596642, 3514876.488622275 5406400.678120194, 3514905.802348556 5406417.959437409, 3514918.817912079 5406424.88877797);[32, 433, 146, 435] +440,0;;;;;;;;;;;;;;;;;;;161,22;LINESTRING (3515761.645173796 5406448.3862603, 3515766.232967985 5406418.440118264, 3515815.506628199 5406297.141205225);[507, 445] +441,0;;;;;;;;;;;;;;;;;;;16,022;LINESTRING (3515025.806910051 5406301.490186008, 3515030.772288139 5406299.279340671, 3515034.63349182 5406297.843989318, 3515041.042699135 5406296.982613756);[11, 427, 432, 443, 155, 157] +442,0;;;;;;;;;;;;;;;;;;;121,174;LINESTRING (3514906.729051719 5405455.560564334, 3514916.67273575 5405457.877794778, 3514974.148487446 5405470.407887546, 3515024.886883832 5405482.409007384);[90, 85] +443,0;;;;;;;;;;;;;;;;;;;11,887;LINESTRING (3515041.042699135 5406296.982613756, 3515046.243050931 5406297.574811205, 3515052.667366845 5406299.304597401);[97, 427, 441, 157, 191] +444,0;;;;;;;;;;;;;;;;;;;7,508;LINESTRING (3514585.837718039 5406058.579489457, 3514590.921946091 5406053.054616258);[324, 431, 469, 251] +460,0;;;;;;;;;;;;;;;;;;;2,465;LINESTRING (3515188.16009401 5405850.40681292, 3515185.698907411 5405850.266713313);[448, 453, 5, 511] +464,0;;;;;;;;;;;;;;;;;;;15,306;LINESTRING (3515727.586666149 5406347.504396823, 3515738.087750313 5406336.368682922);[451, 465, 476, 477] +466,0;;;;;;;;;;;;;;;;;;;13,243;LINESTRING (3515374.637378042 5406656.281673072, 3515381.232866489 5406667.76511434);[483, 467, 468, 479] +467,0;;;;;;;;;;;;;;;;;;;11,236;LINESTRING (3515391.429179946 5406670.873462771, 3515385.309274437 5406670.856696884, 3515381.232866489 5406667.76511434);[484, 75, 466, 468] +468,0;;;;;;;;;;;;;;;;;;;86,651;LINESTRING (3515381.232866489 5406667.76511434, 3515373.249108884 5406674.98279809, 3515363.207336382 5406677.157211806, 3515356.482025722 5406675.537448763, 3515341.513786451 5406671.126134207, 3515301.272787897 5406655.714366876);[466, 467, 471, 472] +471,0;;;;;;;;;;;;;;;;;;;17,078;LINESTRING (3515308.081922204 5406640.052811109, 3515301.272787897 5406655.714366876);[468, 472, 475, 479] +472,0;;;;;;;;;;;;;;;;;;;102,995;LINESTRING (3515301.272787897 5406655.714366876, 3515293.583336677 5406652.001372483, 3515271.483341643 5406638.663198326, 3515234.243104107 5406616.487603596, 3515227.31450325 5406608.506437808, 3515230.505304283 5406594.124976994);[354, 468, 471, 475] +476,0;;;;;;;;;;;;;;;;;;;18,391;LINESTRING (3515714.44891296 5406334.634406105, 3515727.586666149 5406347.504396823);[203, 464, 82, 477] +477,0;;;;;;;;;;;;;;;;;;;50,945;LINESTRING (3515721.979135434 5406397.976420492, 3515725.53412237 5406353.703969158, 3515727.586666149 5406347.504396823);[495, 464, 465, 476] +481,0;;;;;;;;;;;;;;;;;;;5,488;LINESTRING (3514598.182397589 5405780.885082235, 3514603.664662758 5405780.643550822);[482, 292, 46, 313] +482,0;;;;;;;;;;;;;;;;;;;16,582;LINESTRING (3514594.300366588 5405767.596978096, 3514600.129795413 5405772.327262422, 3514603.425585617 5405779.330696247, 3514603.664662758 5405780.643550822);[481, 519, 268, 46] +483,0;;;;;;;;;;;;;;;;;;;27,783;LINESTRING (3515383.978865559 5406630.807611369, 3515376.223083447 5406643.297100605, 3515374.637378042 5406656.281673072);[466, 242, 478, 479] +484,0;;;;;;;;;;;;;;;;;;;64,723;LINESTRING (3515389.212186496 5406731.964215666, 3515397.56704504 5406717.98621882, 3515397.59734784 5406706.921259176, 3515392.983330097 5406698.946230561, 3515391.137651483 5406678.067721412, 3515391.429179946 5406670.873462771);[75, 467] +486,0;;;;;;;;;;;;;;;;;;;126,961;LINESTRING (3514196.103233215 5405606.885065685, 3514190.210579666 5405600.798331485, 3514188.80266493 5405599.627112973, 3514179.501474022 5405590.195603265, 3514177.939773739 5405588.81270794, 3514173.924011476 5405587.323539052, 3514129.775662218 5405549.213257439, 3514150.747023614 5405526.157376557, 3514155.56748773 5405520.342312226);[192, 193, 385, 389] +488,0;;;;;;;;;;;;;;;;;;;13,609;LINESTRING (3515571.592194966 5406470.909278598, 3515567.287758925 5406483.819535716);[489, 241, 504, 506] +491,0;;;;;;;;;;;;;;;;;;;8,648;LINESTRING (3515309.187822383 5405737.193638287, 3515308.717358208 5405739.961392899, 3515308.010122657 5405743.329016428, 3515307.408605529 5405745.651589012);[420, 326, 492, 174, 402, 214] +494,0;;;;;;;;;;;;;;;;;;;14,439;LINESTRING (3515400.33206356 5406006.128279264, 3515388.406427498 5406014.269268635);[272, 497] +495,0;;;;;;;;;;;;;;;;;;;44,648;LINESTRING (3515718.416201975 5406442.482388151, 3515721.979135434 5406397.976420492);[465, 507, 508, 477] +499,0;;;;;;;;;;;;;;;;;;;9,328;LINESTRING (3515245.371678866 5405730.981632624, 3515244.992795076 5405721.661519114);[205, 500, 501, 505] +500,0;;;;;;;;;;;;;;;;;;;54,298;LINESTRING (3515245.371678866 5405730.981632624, 3515223.499553765 5405732.512583369, 3515222.268928544 5405728.372376235, 3515223.108435792 5405722.269426333, 3515244.992795076 5405721.661519114);[205, 499, 501, 505] +505,0;;;;;;;;;;;;;;;;;;;27,398;LINESTRING (3515245.371678866 5405730.981632624, 3515268.765076106 5405729.377056463, 3515272.311652668 5405730.320827403, 3515272.583349667 5405730.388289629);[499, 500] +506,0;;;;;;;;;;;;;;;;;;;13,936;LINESTRING (3515585.324776531 5406473.282699118, 3515571.592194966 5406470.909278598);[488, 504] +507,0;;;;;;;;;;;;;;;;;;;43,63;LINESTRING (3515761.645173796 5406448.3862603, 3515718.416201975 5406442.482388151);[495, 440, 508, 445] +514,0;;;;;;;;;;;;;;;;;;;27,622;LINESTRING (3515491.257535909 5405943.190808632, 3515501.710165825 5405939.071642726, 3515506.727669236 5405923.472119496);[512, 513, 331, 336] +516,0;;;;;;;;;;;;;;;;;;;11,709;LINESTRING (3515294.61125974 5405720.217226977, 3515295.152599201 5405715.703725696, 3515295.467841618 5405713.269166374, 3515296.075738596 5405708.600157613);[498, 501, 175] +519,0;;;;;;;;;;;;;;;;;;;28,802;LINESTRING (3514565.529286161 5405768.923537663, 3514594.300366588 5405767.596978096);[482, 291, 268, 269] +525,0;;;;;;;;;;;;;;;;;;;12,174;LINESTRING (3514362.255313099 5405750.629664966, 3514352.980114012 5405742.743694366);[224, 524, 526, 527] +527,0;;;;;;;;;;;;;;;;;;;37,559;LINESTRING (3514337.838394723 5405779.169556572, 3514362.255313099 5405750.629664966);[224, 525, 526, 528] +528,0;;;;;;;;;;;;;;;;;;;14,527;LINESTRING (3514348.902576098 5405788.583594451, 3514337.838394723 5405779.169556572);[526, 527, 341, 405] -- GitLab