浏览代码

status-server ausgelagert

Global Cube 2 年之前
父节点
当前提交
044cd4dbac

+ 0 - 0
status_server/__init__.py


+ 0 - 44
status_server/access.log

@@ -1,44 +0,0 @@
-2020-12-16T10:45:22.374907;Robert
-2020-12-16T10:47:10.744761;Basti
-2020-12-16T10:47:27.181155;Dennis
-2020-12-16T10:48:11.801571;Basti
-2020-12-16T10:48:21.260087;Dennis
-1608112252.890278;Dennis
-1608112924.519815;Basti
-1608113349.383998;Basti
-1608113884.193236;Basti
-1608117486.244714;Basti
-1608121088.366183;Basti
-1608124690.484283;Basti
-1608128292.58985;Basti
-1608131894.70726;Basti
-1608135496.851588;Basti
-1608139099.04188;Basti
-1608142701.225344;Basti
-1608146303.416499;Basti
-1608149905.56184;Basti
-1608153507.667342;Basti
-1608198723.585797;Basti
-1608202326.132674;Basti
-1608205928.27089;Basti
-1608209530.45085;Basti
-1608213132.621657;Basti
-1608216734.770638;Basti
-1608220336.921926;Basti
-1608235111.722318;Basti
-1608238713.974752;Basti
-1608276646.78253;Basti
-1608544485.9965;Dennis
-1608544506.857801;Dennis
-1608544540.190491;Dennis
-1608544571.448453;Dennis
-1608544817.863678;Dennis
-1608547661.744347;Dennis
-1608547745.832012;Dennis
-1608547823.275303;Dennis
-1608548108.517888;Dennis
-1608548161.634253;Dennis
-1608548191.90346;Dennis
-1608548692.924396;Basti
-1608549169.89626;Peter Nordhausen
-1608549266.157392;Peter Nordhausen

+ 0 - 192
status_server/inspect_files.py

@@ -1,192 +0,0 @@
-# from itertools import chain
-import json
-from pathlib import Path
-import pandas as pd
-from bs4 import BeautifulSoup
-from collections import defaultdict
-import re
-import sys
-sys.path.append(sys.path[0] + '\\..')
-from tools.config.config import Config
-
-
-def get_path_info(base_dir):
-    path_info_df = pd.read_csv(base_dir + '/logs/status/path_info.csv', sep=';',
-                               encoding='latin-1', converters={'process': str})
-    path_info_df.rename(columns={'name': 'filename'}, inplace=True)
-    path_info_df['filename'] = path_info_df['filename'].str.lower()
-    path_info_df.set_index('filename', inplace=True, drop=False)
-    return path_info_df.to_dict(orient='index')
-
-
-def get_cubes(base_dir, cfg: Config, path_info, cubes_models):
-    ver_files = [k for k in path_info.keys() if re.search(r'\\cubes\\.*\.ver', k)]
-    cubes = {}
-    for file in ver_files:
-        match = re.search(r'\\cubes\\(.*)__\d+\.ver$', file)
-        cube_name = match[1]
-        cube_subdir = f"{file[:-4]}\\{cube_name}.mdc"
-        cube_out = f"{cfg.system_dir}\\cube_out\\{cube_name}.mdc"
-
-        cubes[cube_name] = {
-            'deployed_mdc': path_info[cube_subdir],
-            'cube_out_mdc': path_info[cube_out],
-            'model': cubes_models[cube_name],
-            'errors': []
-        }
-    return cubes
-
-
-def get_models(base_dir, cfg: Config, path_info, fm_sources):
-    models = {}
-    for file in Path(base_dir + '\\config\\models').glob('*.log'):
-        with open(file, 'r') as frh:
-            model_infos = frh.read().lower().replace('"', '').replace(',', '').split('--')
-        datasources = model_infos[1].split('\n')
-        datasources = [d for d in datasources if d != '']
-        fm_src = []
-        fm_package = None
-        if '[' in datasources[0]:
-            fm_package = datasources.pop(0).upper()
-            fm_src = datasources
-            datasources = []
-            for src in fm_src:
-                if src in fm_sources:
-                    datasources.extend(fm_sources[src])
-            datasources = sorted(set(datasources))
-
-        cube = re.search(r'\\cube_out\\(.*)\.mdc', model_infos[0])[1]
-        models[file.name[:-8].lower()] = {
-            'framework_manager': 'J' if fm_package else 'N',
-            'fm_package': fm_package,
-            'fm_sources': fm_src,
-            'datasources': datasources,
-            'cube': cube,
-            'logfile_tasks': path_info.get(cfg.portal_dir + '\\tasks\\logs\\' + file.name[:-8] + '.log', {'mtime': '0'}),
-            'logfile_system': path_info.get(cfg.system_dir + '\\logs\\' + file.name[:-8] + '.log', {'mtime': '0'}),
-            'model_file': path_info.get(cfg.system_dir + '\\models\\' + file.name[:-4], {'mtime': '0'}),
-            'model_file_filled': path_info.get(cfg.system_dir + '\\models\\gefuellt\\' + file.name[:-4], {'mtime': '0'}),
-        }
-    return models
-
-
-def get_database_info(base_dir, cfg: Config):
-    db_info_df = pd.read_csv(base_dir + '/logs/status/db_info.csv', sep=';',
-                             encoding='latin-1')
-    db_info_df = db_info_df[db_info_df['DatabaseName'] == 'GC']
-    db_info_df['table'] = db_info_df['TableName'].str.lower()
-    db_info_df.set_index('table', inplace=True)
-    return db_info_df.to_dict(orient='index')
-
-
-def get_fm_sources(base_dir, cfg):
-    bs = BeautifulSoup(open(base_dir + '\\config\\fm\\model.xml', 'r'), 'xml')
-    sources = defaultdict(list)
-    for item in bs.find_all('queryItem'):
-        p = item.parent.parent.find('name').string
-        if item.parent.parent.name == 'folder':
-            p = item.parent.parent.parent.find('name').string
-        parent = "[{0}].[{1}]".format(
-            p,
-            item.parent.find('name').string
-        )
-        src = ''
-        exp = ''
-        if item.expression:
-            if item.expression.refobj:
-                src = item.expression.refobj.string
-            else:
-                exp = item.expression.string
-        elif item.externalName:
-            exp = item.externalName.string
-        sources[parent].append((item.find('name').string, src, exp))
-    interface = {}
-    for k, fields in sources.items():
-        if '[Schnittstelle]' not in k:
-            continue
-        key = k.split('.')[-1][1:-1].lower()
-        links = []
-        for field in fields:
-            links.append(follow_links(sources, field, ''))
-        interface[key] = sorted(list(set([re.search(r'\.\[(.*)\]$', e)[1].lower() for e in links if '[Import]' in e])))
-
-    return interface
-
-
-def follow_links(sources, field, value):
-    if field[1] == '':
-        if field[2] == field[0]:
-            return value
-        return field[2]
-    match = re.search(r'(\[.*\]\.\[.*\])\.\[(.*)\]', field[1])
-    key1 = match[1]
-    val1 = match[2]
-    if key1 in sources:
-        for field2 in sources[key1]:
-            if field2[0] != val1:
-                continue
-            return follow_links(sources, field2, key1)
-    return key1
-
-
-def get_datasources(base_dir, cfg, path_info):
-    all_datasources = set([re.search(r'\\iqd\\.*\\(.*)\.imr', k)[1]
-                           for k in path_info.keys()
-                           if re.search(r'\\iqd\\.*\\.*\.imr', k)])
-    datasources = {}
-    for ds in all_datasources:
-        ds_search = f'\\{ds}.imr'
-        imr_files = [k for k in path_info.keys()
-                     if re.search(r'\\iqd\\.*\.imr', k) and ds_search in k
-                     and 'austausch' not in k]
-        if len(imr_files) == 0:
-            imr_file = '0.imr'
-        else:
-            imr_file = imr_files.pop(0)
-        datasources[ds] = {
-            'imr_file': path_info.get(imr_file, {'mtime': '0'}),
-            'iqd_file': path_info.get(imr_file[:-4] + '.iqd', {'mtime': '0'}),
-            'csv_file': path_info.get(cfg.system_dir + '\\export\\' + ds + '.csv', {'mtime': '0'}),
-            'csv_file_iqd_folder': path_info.get(imr_file[:-4] + '.csv', {'mtime': '0'}),
-            'duplicates': imr_files
-        }
-    return datasources
-
-
-def cubes_to_models(models):
-    models_sort = sorted([(v.get('logfile_tasks')['mtime'],
-                           v.get('logfile_system')['mtime'],
-                           v.get('model_file_filled')['mtime'],
-                           v.get('model_file')['mtime'],
-                           k, v['cube']) for k, v in models.items()])
-    result = {}
-    for m in models_sort:
-        result[m[5]] = m[4]
-    return result
-
-
-def main():
-    base_dir = 'status_server\\unzipped'
-    cfg = Config(str(Path(base_dir + '\\gaps.ini').absolute()))
-    # Dateiliste
-    path_info = get_path_info(base_dir)
-    # random_bat_file = [k for k in path_info.keys() if re.search(r'\\Tasks\\.*\.bat', k)][0]
-    # portal_dir = re.search(r'(.*)\\Tasks\\.*\.bat', random_bat_file)[1]
-    # print(path_info)
-    # Liste aller Cubes
-    result = {}
-
-    # Modelle und Datenquellen
-    result['fm_sources'] = get_fm_sources(base_dir, cfg)
-    result['models'] = get_models(base_dir, cfg, path_info, result['fm_sources'])
-    result['database'] = get_database_info(base_dir, cfg)
-    result['datasources'] = get_datasources(base_dir, cfg, path_info)
-    cubes_models = cubes_to_models(result['models'])
-    result['cubes'] = get_cubes(base_dir, cfg, path_info, cubes_models)
-    # Cubes aktuell?
-    # Rest aktuell?
-    json.dump(result, open('status_server/logs/export.json', 'w'), indent=2)
-
-
-if __name__ == '__main__':
-    main()

+ 0 - 4548
status_server/logs/export.json

@@ -1,4548 +0,0 @@
-{
-  "fm_sources": {
-    "current_date_prognose": [
-      "current_date_prognose"
-    ],
-    "current_date_prognose_operativ": [
-      "current_date_prognose_operativ"
-    ],
-    "current_date_prognose_operativ_vj": [
-      "current_date_prognose_operativ_vj"
-    ],
-    "aftersales_rechnungen_ben_aw_final": [
-      "aftersales_rechnungen_ben_aw_final",
-      "gc_department",
-      "gc_marken",
-      "gc_produktbuchungsgruppen"
-    ],
-    "aftersales_rechnungen_neu": [
-      "aftersales_rechnungen_neu",
-      "gc_department",
-      "gc_marken",
-      "gc_produktbuchungsgruppen",
-      "kontenrahmen_gc_struct_skr"
-    ],
-    "aftersales_rechnungen_verk_aw_final": [
-      "aftersales_rechnungen_verk_aw_final",
-      "gc_department",
-      "gc_marken",
-      "gc_produktbuchungsgruppen"
-    ],
-    "offene_auftraege_dg_anz_tage": [
-      "gc_department",
-      "gc_marken",
-      "offene_auftraege_dg_anz_tage"
-    ],
-    "offene_auftraege_teile": [
-      "gc_department",
-      "gc_marken",
-      "offene_auftraege_teile"
-    ],
-    "offene_auftraege_ums_ben_aw": [
-      "gc_department",
-      "gc_marken",
-      "offene_auftraege_ums_ben_aw"
-    ],
-    "op_aus_loc_belege_8520": [
-      "gc_department"
-    ],
-    "op_aus_loc_belege_deb_saldo": [
-      "gc_department",
-      "op_aus_loc_belege_deb_saldo"
-    ],
-    "op_aus_loc_belege_nur_8520": [
-      "gc_department",
-      "op_aus_loc_belege_nur_8520"
-    ],
-    "op_aus_loc_belege_ohne_8520": [
-      "gc_department",
-      "op_aus_loc_belege_ohne_8520"
-    ],
-    "belege_skr": [
-      "gc_department",
-      "gc_marken",
-      "kontenrahmen_gc_struct_skr",
-      "loc_belege"
-    ],
-    "belege_skr_bilanz": [
-      "gc_department",
-      "gc_marken",
-      "kontenrahmen_gc_struct_skr",
-      "loc_belege_bilanz"
-    ],
-    "belege_skr_stk": [
-      "gc_department",
-      "gc_marken",
-      "loc_belege_nw_gw_vk_stk_fibu",
-      "skr_konten_stk_manuell"
-    ],
-    "umsatz_belege_skr": [
-      "gc_department",
-      "gc_marken",
-      "kontenrahmen_gc_struct_skr",
-      "loc_belege"
-    ],
-    "nw_gw_vk": [
-      "gc_department",
-      "gc_marken",
-      "kontenrahmen_gc_struct_skr",
-      "loc_belege_nw_gw_vk"
-    ],
-    "nw_gw_vk_journal_accountings": [
-      "gc_department",
-      "gc_marken",
-      "kontenrahmen_gc_struct_skr",
-      "loc_belege_nw_gw_vk"
-    ],
-    "nw_gw_bestand": [
-      "gc_department",
-      "gc_marken",
-      "nw_gw_be_auf_nw_gw_bestand_cat"
-    ],
-    "zeit_abwesenheit_neu": [
-      "gc_department",
-      "gc_mitarbeiter",
-      "zeit_abwesenheit_neu"
-    ],
-    "zeit_stempelungen_pausen": [
-      "gc_department",
-      "gc_mitarbeiter",
-      "zeit_stempelungen_pausen"
-    ],
-    "zeit_stempelungen_pausen_produktiv": [
-      "gc_department",
-      "gc_mitarbeiter",
-      "zeit_stempelungen_pausen_produktiv"
-    ],
-    "zeit_stempelungen_neu": [
-      "gc_department",
-      "gc_mitarbeiter",
-      "zeit_stempelungen_neu"
-    ],
-    "zeit_ben_std_lg": [
-      "gc_department",
-      "gc_mitarbeiter",
-      "zeit_ben_std_lg"
-    ],
-    "zeit_verk_std": [
-      "gc_department",
-      "gc_mitarbeiter",
-      "zeit_verk_std"
-    ]
-  },
-  "models": {
-    "dashboard_gesamt - kopie": {
-      "framework_manager": "J",
-      "fm_package": "[GC_FM]",
-      "fm_sources": [
-        "current_date_prognose_operativ_vj",
-        "current_date_prognose",
-        "aftersales_rechnungen_ben_aw_final",
-        "aftersales_rechnungen_neu",
-        "aftersales_rechnungen_verk_aw_final",
-        "offene_auftraege_dg_anz_tage",
-        "offene_auftraege_teile",
-        "offene_auftraege_ums_ben_aw",
-        "op_aus_loc_belege_deb_saldo",
-        "op_aus_loc_belege_nur_8520",
-        "op_aus_loc_belege_ohne_8520",
-        "belege_skr",
-        "belege_skr_bilanz",
-        "belege_skr_stk",
-        "nw_gw_vk",
-        "nw_gw_bestand"
-      ],
-      "datasources": [
-        "aftersales_rechnungen_ben_aw_final",
-        "aftersales_rechnungen_neu",
-        "aftersales_rechnungen_verk_aw_final",
-        "current_date_prognose",
-        "current_date_prognose_operativ_vj",
-        "gc_department",
-        "gc_marken",
-        "gc_produktbuchungsgruppen",
-        "kontenrahmen_gc_struct_skr",
-        "loc_belege",
-        "loc_belege_bilanz",
-        "loc_belege_nw_gw_vk",
-        "loc_belege_nw_gw_vk_stk_fibu",
-        "nw_gw_be_auf_nw_gw_bestand_cat",
-        "offene_auftraege_dg_anz_tage",
-        "offene_auftraege_teile",
-        "offene_auftraege_ums_ben_aw",
-        "op_aus_loc_belege_deb_saldo",
-        "op_aus_loc_belege_nur_8520",
-        "op_aus_loc_belege_ohne_8520",
-        "skr_konten_stk_manuell"
-      ],
-      "cube": "dashboard_gesamt",
-      "logfile_tasks": {
-        "mtime": "0"
-      },
-      "logfile_system": {
-        "mtime": "0"
-      },
-      "model_file": {
-        "mtime": "0"
-      },
-      "model_file_filled": {
-        "mtime": "0"
-      }
-    },
-    "dashboard_gesamt": {
-      "framework_manager": "J",
-      "fm_package": "[GC_FM]",
-      "fm_sources": [
-        "current_date_prognose_operativ_vj",
-        "current_date_prognose",
-        "aftersales_rechnungen_ben_aw_final",
-        "aftersales_rechnungen_neu",
-        "aftersales_rechnungen_verk_aw_final",
-        "offene_auftraege_dg_anz_tage",
-        "offene_auftraege_teile",
-        "offene_auftraege_ums_ben_aw",
-        "op_aus_loc_belege_deb_saldo",
-        "op_aus_loc_belege_nur_8520",
-        "op_aus_loc_belege_ohne_8520",
-        "belege_skr",
-        "belege_skr_bilanz",
-        "belege_skr_stk",
-        "umsatz_belege_skr",
-        "nw_gw_vk",
-        "nw_gw_bestand",
-        "zeit_abwesenheit_neu",
-        "zeit_stempelungen_neu",
-        "zeit_ben_std_lg",
-        "zeit_verk_std"
-      ],
-      "datasources": [
-        "aftersales_rechnungen_ben_aw_final",
-        "aftersales_rechnungen_neu",
-        "aftersales_rechnungen_verk_aw_final",
-        "current_date_prognose",
-        "current_date_prognose_operativ_vj",
-        "gc_department",
-        "gc_marken",
-        "gc_mitarbeiter",
-        "gc_produktbuchungsgruppen",
-        "kontenrahmen_gc_struct_skr",
-        "loc_belege",
-        "loc_belege_bilanz",
-        "loc_belege_nw_gw_vk",
-        "loc_belege_nw_gw_vk_stk_fibu",
-        "nw_gw_be_auf_nw_gw_bestand_cat",
-        "offene_auftraege_dg_anz_tage",
-        "offene_auftraege_teile",
-        "offene_auftraege_ums_ben_aw",
-        "op_aus_loc_belege_deb_saldo",
-        "op_aus_loc_belege_nur_8520",
-        "op_aus_loc_belege_ohne_8520",
-        "skr_konten_stk_manuell",
-        "zeit_abwesenheit_neu",
-        "zeit_ben_std_lg",
-        "zeit_stempelungen_neu",
-        "zeit_verk_std"
-      ],
-      "cube": "dashboard_gesamt",
-      "logfile_tasks": {
-        "mtime": "0"
-      },
-      "logfile_system": {
-        "mtime": "0"
-      },
-      "model_file": {
-        "mtime": "0"
-      },
-      "model_file_filled": {
-        "mtime": "0"
-      }
-    },
-    "f_belege_skr": {
-      "framework_manager": "J",
-      "fm_package": "[GC_FM]",
-      "fm_sources": [
-        "current_date_prognose",
-        "current_date_prognose_operativ_vj",
-        "belege_skr",
-        "belege_skr_stk"
-      ],
-      "datasources": [
-        "current_date_prognose",
-        "current_date_prognose_operativ_vj",
-        "gc_department",
-        "gc_marken",
-        "kontenrahmen_gc_struct_skr",
-        "loc_belege",
-        "loc_belege_nw_gw_vk_stk_fibu",
-        "skr_konten_stk_manuell"
-      ],
-      "cube": "f_belege",
-      "logfile_tasks": {
-        "mtime": "0"
-      },
-      "logfile_system": {
-        "mtime": "0"
-      },
-      "model_file": {
-        "mtime": "0"
-      },
-      "model_file_filled": {
-        "mtime": "0"
-      }
-    },
-    "f_forderungen": {
-      "framework_manager": "J",
-      "fm_package": "[GC_FM]",
-      "fm_sources": [
-        "current_date_prognose",
-        "op_aus_loc_belege_deb_saldo",
-        "op_aus_loc_belege_nur_8520",
-        "op_aus_loc_belege_ohne_8520"
-      ],
-      "datasources": [
-        "current_date_prognose",
-        "gc_department",
-        "op_aus_loc_belege_deb_saldo",
-        "op_aus_loc_belege_nur_8520",
-        "op_aus_loc_belege_ohne_8520"
-      ],
-      "cube": "f_forderungen",
-      "logfile_tasks": {
-        "mtime": "0"
-      },
-      "logfile_system": {
-        "mtime": "0"
-      },
-      "model_file": {
-        "mtime": "0"
-      },
-      "model_file_filled": {
-        "mtime": "0"
-      }
-    },
-    "s_aftersales": {
-      "framework_manager": "J",
-      "fm_package": "[GC_FM]",
-      "fm_sources": [
-        "current_date_prognose_operativ",
-        "current_date_prognose_operativ_vj",
-        "aftersales_rechnungen_ben_aw_final",
-        "aftersales_rechnungen_neu",
-        "aftersales_rechnungen_verk_aw_final"
-      ],
-      "datasources": [
-        "aftersales_rechnungen_ben_aw_final",
-        "aftersales_rechnungen_neu",
-        "aftersales_rechnungen_verk_aw_final",
-        "current_date_prognose_operativ",
-        "current_date_prognose_operativ_vj",
-        "gc_department",
-        "gc_marken",
-        "gc_produktbuchungsgruppen",
-        "kontenrahmen_gc_struct_skr"
-      ],
-      "cube": "s_aftersales",
-      "logfile_tasks": {
-        "mtime": "0"
-      },
-      "logfile_system": {
-        "mtime": "0"
-      },
-      "model_file": {
-        "mtime": "0"
-      },
-      "model_file_filled": {
-        "mtime": "0"
-      }
-    },
-    "s_offene_auftraege": {
-      "framework_manager": "J",
-      "fm_package": "[GC_FM]",
-      "fm_sources": [
-        "current_date_prognose",
-        "offene_auftraege_dg_anz_tage",
-        "offene_auftraege_teile",
-        "offene_auftraege_ums_ben_aw"
-      ],
-      "datasources": [
-        "current_date_prognose",
-        "gc_department",
-        "gc_marken",
-        "offene_auftraege_dg_anz_tage",
-        "offene_auftraege_teile",
-        "offene_auftraege_ums_ben_aw"
-      ],
-      "cube": "s_offene_auftraege",
-      "logfile_tasks": {
-        "mtime": "0"
-      },
-      "logfile_system": {
-        "mtime": "0"
-      },
-      "model_file": {
-        "mtime": "0"
-      },
-      "model_file_filled": {
-        "mtime": "0"
-      }
-    },
-    "v_bestand": {
-      "framework_manager": "J",
-      "fm_package": "[GC_FM]",
-      "fm_sources": [
-        "current_date_prognose",
-        "nw_gw_bestand"
-      ],
-      "datasources": [
-        "current_date_prognose",
-        "gc_department",
-        "gc_marken",
-        "nw_gw_be_auf_nw_gw_bestand_cat"
-      ],
-      "cube": "v_bestand",
-      "logfile_tasks": {
-        "mtime": "0"
-      },
-      "logfile_system": {
-        "mtime": "0"
-      },
-      "model_file": {
-        "mtime": "0"
-      },
-      "model_file_filled": {
-        "mtime": "0"
-      }
-    },
-    "v_verkauf": {
-      "framework_manager": "J",
-      "fm_package": "[GC_FM]",
-      "fm_sources": [
-        "current_date_prognose_operativ_vj",
-        "current_date_prognose",
-        "nw_gw_vk_journal_accountings"
-      ],
-      "datasources": [
-        "current_date_prognose",
-        "current_date_prognose_operativ_vj",
-        "gc_department",
-        "gc_marken",
-        "kontenrahmen_gc_struct_skr",
-        "loc_belege_nw_gw_vk"
-      ],
-      "cube": "v_verkauf",
-      "logfile_tasks": {
-        "mtime": "0"
-      },
-      "logfile_system": {
-        "mtime": "0"
-      },
-      "model_file": {
-        "mtime": "0"
-      },
-      "model_file_filled": {
-        "mtime": "0"
-      }
-    },
-    "v_verkauf_dealer_vehicles": {
-      "framework_manager": "J",
-      "fm_package": "[GC_FM]",
-      "fm_sources": [
-        "current_date_prognose_operativ_vj",
-        "current_date_prognose",
-        "nw_gw_vk"
-      ],
-      "datasources": [
-        "current_date_prognose",
-        "current_date_prognose_operativ_vj",
-        "gc_department",
-        "gc_marken",
-        "kontenrahmen_gc_struct_skr",
-        "loc_belege_nw_gw_vk"
-      ],
-      "cube": "v_verkauf",
-      "logfile_tasks": {
-        "mtime": "0"
-      },
-      "logfile_system": {
-        "mtime": "0"
-      },
-      "model_file": {
-        "mtime": "0"
-      },
-      "model_file_filled": {
-        "mtime": "0"
-      }
-    },
-    "z_monteure": {
-      "framework_manager": "J",
-      "fm_package": "[GC_FM]",
-      "fm_sources": [
-        "current_date_prognose_operativ",
-        "current_date_prognose_operativ_vj",
-        "zeit_abwesenheit_neu",
-        "zeit_stempelungen_neu",
-        "zeit_ben_std_lg",
-        "zeit_verk_std"
-      ],
-      "datasources": [
-        "current_date_prognose_operativ",
-        "current_date_prognose_operativ_vj",
-        "gc_department",
-        "gc_mitarbeiter",
-        "zeit_abwesenheit_neu",
-        "zeit_ben_std_lg",
-        "zeit_stempelungen_neu",
-        "zeit_verk_std"
-      ],
-      "cube": "z_monteure",
-      "logfile_tasks": {
-        "mtime": "0"
-      },
-      "logfile_system": {
-        "mtime": "0"
-      },
-      "model_file": {
-        "mtime": "0"
-      },
-      "model_file_filled": {
-        "mtime": "0"
-      }
-    },
-    "z_monteure_mit_pause": {
-      "framework_manager": "J",
-      "fm_package": "[GC_FM]",
-      "fm_sources": [
-        "current_date_prognose_operativ",
-        "current_date_prognose_operativ_vj",
-        "zeit_abwesenheit_neu",
-        "zeit_stempelungen_pausen",
-        "zeit_stempelungen_neu",
-        "zeit_ben_std_lg",
-        "zeit_verk_std"
-      ],
-      "datasources": [
-        "current_date_prognose_operativ",
-        "current_date_prognose_operativ_vj",
-        "gc_department",
-        "gc_mitarbeiter",
-        "zeit_abwesenheit_neu",
-        "zeit_ben_std_lg",
-        "zeit_stempelungen_neu",
-        "zeit_stempelungen_pausen",
-        "zeit_verk_std"
-      ],
-      "cube": "z_monteure",
-      "logfile_tasks": {
-        "mtime": "0"
-      },
-      "logfile_system": {
-        "mtime": "0"
-      },
-      "model_file": {
-        "mtime": "0"
-      },
-      "model_file_filled": {
-        "mtime": "0"
-      }
-    }
-  },
-  "database": {
-    "arbeitstage": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "Arbeitstage",
-      "RowCounts": 128576,
-      "TotalSpaceKB": 7624,
-      "TotalSpaceMB": 7.45,
-      "UsedSpaceKB": 7592,
-      "UsedSpaceMB": 7.41,
-      "UnusedSpaceKB": 32,
-      "UnusedSpaceMB": 0.03
-    },
-    "gc_activity_codes": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Activity_Codes",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_auftragsart": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Auftragsart",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_config": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Config",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_department": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Department",
-      "RowCounts": 4,
-      "TotalSpaceKB": 72,
-      "TotalSpaceMB": 0.07,
-      "UsedSpaceKB": 16,
-      "UsedSpaceMB": 0.02,
-      "UnusedSpaceKB": 56,
-      "UnusedSpaceMB": 0.05
-    },
-    "gc_fokus_produktgruppen": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Fokus_Produktgruppen",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_geschaeftsbuchungsgruppen": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Geschaeftsbuchungsgruppen",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_kalender": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Kalender",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_kundengruppen": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Kundengruppen",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_marken": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Marken",
-      "RowCounts": 9,
-      "TotalSpaceKB": 72,
-      "TotalSpaceMB": 0.07,
-      "UsedSpaceKB": 16,
-      "UsedSpaceMB": 0.02,
-      "UnusedSpaceKB": 56,
-      "UnusedSpaceMB": 0.05
-    },
-    "gc_mitarbeiter": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Mitarbeiter",
-      "RowCounts": 260,
-      "TotalSpaceKB": 200,
-      "TotalSpaceMB": 0.2,
-      "UsedSpaceKB": 40,
-      "UsedSpaceMB": 0.04,
-      "UnusedSpaceKB": 160,
-      "UnusedSpaceMB": 0.16
-    },
-    "gc_produktbuchungsgruppen": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Produktbuchungsgruppen",
-      "RowCounts": 19,
-      "TotalSpaceKB": 72,
-      "TotalSpaceMB": 0.07,
-      "UsedSpaceKB": 16,
-      "UsedSpaceMB": 0.02,
-      "UnusedSpaceKB": 56,
-      "UnusedSpaceMB": 0.05
-    },
-    "gc_task_type": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Task_Type",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_teams": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Teams",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_time_account": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Time_Account",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_tree": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Tree",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_umsatzart": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Umsatzart",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "gc_users": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "GC_Users",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "kontenrahmen_skr_vorlage": {
-      "DatabaseName": "GC",
-      "SchemaName": "data",
-      "TableName": "Kontenrahmen_SKR_Vorlage",
-      "RowCounts": 12086,
-      "TotalSpaceKB": 712,
-      "TotalSpaceMB": 0.7,
-      "UsedSpaceKB": 680,
-      "UsedSpaceMB": 0.66,
-      "UnusedSpaceKB": 32,
-      "UnusedSpaceMB": 0.03
-    },
-    "aftersales_rechnungen_ben_aw_final": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "Aftersales_Rechnungen_ben_AW_final",
-      "RowCounts": 112167,
-      "TotalSpaceKB": 47432,
-      "TotalSpaceMB": 46.32,
-      "UsedSpaceKB": 46128,
-      "UsedSpaceMB": 45.05,
-      "UnusedSpaceKB": 1304,
-      "UnusedSpaceMB": 1.27
-    },
-    "aftersales_rechnungen_neu": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "Aftersales_Rechnungen_neu",
-      "RowCounts": 250113,
-      "TotalSpaceKB": 293192,
-      "TotalSpaceMB": 286.32,
-      "UsedSpaceKB": 287176,
-      "UsedSpaceMB": 280.45,
-      "UnusedSpaceKB": 6016,
-      "UnusedSpaceMB": 5.88
-    },
-    "aftersales_rechnungen_verk_aw_final": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "Aftersales_Rechnungen_verk_AW_final",
-      "RowCounts": 114529,
-      "TotalSpaceKB": 44104,
-      "TotalSpaceMB": 43.07,
-      "UsedSpaceKB": 43168,
-      "UsedSpaceMB": 42.16,
-      "UnusedSpaceKB": 936,
-      "UnusedSpaceMB": 0.91
-    },
-    "kontenrahmen_gc_struct_skr": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "Kontenrahmen_GC_Struct_SKR",
-      "RowCounts": 12625,
-      "TotalSpaceKB": 5512,
-      "TotalSpaceMB": 5.38,
-      "UsedSpaceKB": 5160,
-      "UsedSpaceMB": 5.04,
-      "UnusedSpaceKB": 352,
-      "UnusedSpaceMB": 0.34
-    },
-    "loc_belege": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "LOC_Belege",
-      "RowCounts": 364762,
-      "TotalSpaceKB": 203464,
-      "TotalSpaceMB": 198.7,
-      "UsedSpaceKB": 197080,
-      "UsedSpaceMB": 192.46,
-      "UnusedSpaceKB": 6384,
-      "UnusedSpaceMB": 6.23
-    },
-    "loc_belege_bilanz": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "LOC_Belege_Bilanz",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "loc_belege_nw_gw_vk": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "LOC_Belege_NW_GW_VK",
-      "RowCounts": 55694,
-      "TotalSpaceKB": 85704,
-      "TotalSpaceMB": 83.7,
-      "UsedSpaceKB": 83704,
-      "UsedSpaceMB": 81.74,
-      "UnusedSpaceKB": 2000,
-      "UnusedSpaceMB": 1.95
-    },
-    "loc_belege_nw_gw_vk_stk_fibu": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "LOC_Belege_NW_GW_VK_Stk_FIBU",
-      "RowCounts": 6601,
-      "TotalSpaceKB": 11848,
-      "TotalSpaceMB": 11.57,
-      "UsedSpaceKB": 11592,
-      "UsedSpaceMB": 11.32,
-      "UnusedSpaceKB": 256,
-      "UnusedSpaceMB": 0.25
-    },
-    "loc_belege_statistische_werte": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "LOC_Belege_statistische_Werte",
-      "RowCounts": 10764,
-      "TotalSpaceKB": 11464,
-      "TotalSpaceMB": 11.2,
-      "UsedSpaceKB": 11208,
-      "UsedSpaceMB": 10.95,
-      "UnusedSpaceKB": 256,
-      "UnusedSpaceMB": 0.25
-    },
-    "nw_gw_be_auf_nw_gw_bestand_cat": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "NW_GW_BE_auf_NW_GW_Bestand_Cat",
-      "RowCounts": 908,
-      "TotalSpaceKB": 904,
-      "TotalSpaceMB": 0.88,
-      "UsedSpaceKB": 896,
-      "UsedSpaceMB": 0.88,
-      "UnusedSpaceKB": 8,
-      "UnusedSpaceMB": 0.01
-    },
-    "offene_auftraege_dg_anz_tage": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "offene_Auftraege_DG_Anz_Tage",
-      "RowCounts": 6819,
-      "TotalSpaceKB": 3400,
-      "TotalSpaceMB": 3.32,
-      "UsedSpaceKB": 3336,
-      "UsedSpaceMB": 3.26,
-      "UnusedSpaceKB": 64,
-      "UnusedSpaceMB": 0.06
-    },
-    "offene_auftraege_teile": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "offene_Auftraege_Teile",
-      "RowCounts": 3938,
-      "TotalSpaceKB": 2056,
-      "TotalSpaceMB": 2.01,
-      "UsedSpaceKB": 1984,
-      "UsedSpaceMB": 1.94,
-      "UnusedSpaceKB": 72,
-      "UnusedSpaceMB": 0.07
-    },
-    "offene_auftraege_ums_ben_aw": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "offene_Auftraege_Ums_ben_AW",
-      "RowCounts": 6819,
-      "TotalSpaceKB": 3848,
-      "TotalSpaceMB": 3.76,
-      "UsedSpaceKB": 3648,
-      "UsedSpaceMB": 3.56,
-      "UnusedSpaceKB": 200,
-      "UnusedSpaceMB": 0.2
-    },
-    "op_aus_loc_belege_8520": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "OP_aus_LOC_Belege_8520",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "op_aus_loc_belege_deb_saldo": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "OP_aus_LOC_Belege_Deb_Saldo",
-      "RowCounts": 1968,
-      "TotalSpaceKB": 1288,
-      "TotalSpaceMB": 1.26,
-      "UsedSpaceKB": 1248,
-      "UsedSpaceMB": 1.22,
-      "UnusedSpaceKB": 40,
-      "UnusedSpaceMB": 0.04
-    },
-    "op_aus_loc_belege_nur_8520": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "OP_aus_LOC_Belege_nur_8520",
-      "RowCounts": 1,
-      "TotalSpaceKB": 72,
-      "TotalSpaceMB": 0.07,
-      "UsedSpaceKB": 16,
-      "UsedSpaceMB": 0.02,
-      "UnusedSpaceKB": 56,
-      "UnusedSpaceMB": 0.05
-    },
-    "op_aus_loc_belege_ohne_8520": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "OP_aus_LOC_Belege_ohne_8520",
-      "RowCounts": 1968,
-      "TotalSpaceKB": 1288,
-      "TotalSpaceMB": 1.26,
-      "UsedSpaceKB": 1248,
-      "UsedSpaceMB": 1.22,
-      "UnusedSpaceKB": 40,
-      "UnusedSpaceMB": 0.04
-    },
-    "skr_absatzkanal": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "SKR_Absatzkanal",
-      "RowCounts": 44,
-      "TotalSpaceKB": 72,
-      "TotalSpaceMB": 0.07,
-      "UsedSpaceKB": 16,
-      "UsedSpaceMB": 0.02,
-      "UnusedSpaceKB": 56,
-      "UnusedSpaceMB": 0.05
-    },
-    "skr_herkunft_kst": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "SKR_Herkunft_KST",
-      "RowCounts": 41,
-      "TotalSpaceKB": 72,
-      "TotalSpaceMB": 0.07,
-      "UsedSpaceKB": 16,
-      "UsedSpaceMB": 0.02,
-      "UnusedSpaceKB": 56,
-      "UnusedSpaceMB": 0.05
-    },
-    "skr_konten_stk_manuell": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "SKR_Konten_Stk_manuell",
-      "RowCounts": 7,
-      "TotalSpaceKB": 72,
-      "TotalSpaceMB": 0.07,
-      "UsedSpaceKB": 16,
-      "UsedSpaceMB": 0.02,
-      "UnusedSpaceKB": 56,
-      "UnusedSpaceMB": 0.05
-    },
-    "skr_kostentr\u00ef\u00bf\u00bdger": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "SKR_Kostentr\u00ef\u00bf\u00bdger",
-      "RowCounts": 58,
-      "TotalSpaceKB": 72,
-      "TotalSpaceMB": 0.07,
-      "UsedSpaceKB": 16,
-      "UsedSpaceMB": 0.02,
-      "UnusedSpaceKB": 56,
-      "UnusedSpaceMB": 0.05
-    },
-    "skr_marke": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "SKR_Marke",
-      "RowCounts": 5,
-      "TotalSpaceKB": 72,
-      "TotalSpaceMB": 0.07,
-      "UsedSpaceKB": 16,
-      "UsedSpaceMB": 0.02,
-      "UnusedSpaceKB": 56,
-      "UnusedSpaceMB": 0.05
-    },
-    "skr_statistik_stk_manuell": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "SKR_Statistik_Stk_manuell",
-      "RowCounts": 22,
-      "TotalSpaceKB": 72,
-      "TotalSpaceMB": 0.07,
-      "UsedSpaceKB": 16,
-      "UsedSpaceMB": 0.02,
-      "UnusedSpaceKB": 56,
-      "UnusedSpaceMB": 0.05
-    },
-    "teamliste": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "Teamliste",
-      "RowCounts": 0,
-      "TotalSpaceKB": 0,
-      "TotalSpaceMB": 0.0,
-      "UsedSpaceKB": 0,
-      "UsedSpaceMB": 0.0,
-      "UnusedSpaceKB": 0,
-      "UnusedSpaceMB": 0.0
-    },
-    "zeit_abwesenheit_neu": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "Zeit_Abwesenheit_neu",
-      "RowCounts": 18288,
-      "TotalSpaceKB": 5832,
-      "TotalSpaceMB": 5.7,
-      "UsedSpaceKB": 5704,
-      "UsedSpaceMB": 5.57,
-      "UnusedSpaceKB": 128,
-      "UnusedSpaceMB": 0.13
-    },
-    "zeit_ben_std_lg": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "Zeit_ben_Std_LG",
-      "RowCounts": 56049,
-      "TotalSpaceKB": 10248,
-      "TotalSpaceMB": 10.01,
-      "UsedSpaceKB": 10200,
-      "UsedSpaceMB": 9.96,
-      "UnusedSpaceKB": 48,
-      "UnusedSpaceMB": 0.05
-    },
-    "zeit_stempelungen_neu": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "Zeit_Stempelungen_neu",
-      "RowCounts": 138767,
-      "TotalSpaceKB": 37128,
-      "TotalSpaceMB": 36.26,
-      "UsedSpaceKB": 36152,
-      "UsedSpaceMB": 35.3,
-      "UnusedSpaceKB": 976,
-      "UnusedSpaceMB": 0.95
-    },
-    "zeit_stempelungen_pausen": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "Zeit_Stempelungen_Pausen",
-      "RowCounts": 85079,
-      "TotalSpaceKB": 36424,
-      "TotalSpaceMB": 35.57,
-      "UsedSpaceKB": 35920,
-      "UsedSpaceMB": 35.08,
-      "UnusedSpaceKB": 504,
-      "UnusedSpaceMB": 0.49
-    },
-    "zeit_stempelungen_pausen_produktiv": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "Zeit_Stempelungen_Pausen_produktiv",
-      "RowCounts": 100895,
-      "TotalSpaceKB": 45512,
-      "TotalSpaceMB": 44.45,
-      "UsedSpaceKB": 45160,
-      "UsedSpaceMB": 44.1,
-      "UnusedSpaceKB": 352,
-      "UnusedSpaceMB": 0.34
-    },
-    "zeit_verk_std": {
-      "DatabaseName": "GC",
-      "SchemaName": "locosoft",
-      "TableName": "Zeit_verk_Std",
-      "RowCounts": 122894,
-      "TotalSpaceKB": 34056,
-      "TotalSpaceMB": 33.26,
-      "UsedSpaceKB": 33168,
-      "UsedSpaceMB": 32.39,
-      "UnusedSpaceKB": 888,
-      "UnusedSpaceMB": 0.87
-    }
-  },
-  "datasources": {
-    "skr_marke": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_marke.imr",
-        "size": 62976,
-        "ctime": "2020-04-08T11:27:36",
-        "mtime": "2020-04-08T11:27:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_marke.iqd",
-        "size": 736,
-        "ctime": "2016-06-01T10:54:58",
-        "mtime": "2016-06-01T10:54:58",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_marke.csv",
-        "size": 354,
-        "ctime": "2018-06-19T13:22:18",
-        "mtime": "2018-06-19T13:22:18",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "op_aus_loc_belege_nur_8520": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_nur_8520.imr",
-        "size": 111616,
-        "ctime": "2020-05-07T16:44:10",
-        "mtime": "2020-05-07T16:44:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_nur_8520.iqd",
-        "size": 11281,
-        "ctime": "2019-11-29T14:46:10",
-        "mtime": "2019-11-29T14:46:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_nur_8520.csv",
-        "size": 1699,
-        "ctime": "2022-07-08T11:18:53",
-        "mtime": "2022-07-08T11:18:53",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "skr_kostentr\u00e4ger": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_kostentr\u00e4ger.imr",
-        "size": 51712,
-        "ctime": "2020-04-14T15:04:52",
-        "mtime": "2020-04-14T15:04:52",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_kostentr\u00e4ger.iqd",
-        "size": 1172,
-        "ctime": "2016-06-01T11:00:56",
-        "mtime": "2016-06-01T11:00:56",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_kostentr\u00e4ger.csv",
-        "size": 5350,
-        "ctime": "2018-06-19T13:21:58",
-        "mtime": "2018-06-19T13:21:58",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_sollzeit": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_sollzeit.imr",
-        "size": 55808,
-        "ctime": "2021-03-31T21:46:12",
-        "mtime": "2021-03-31T21:46:12",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_sollzeit.csv",
-        "size": 1871284,
-        "ctime": "2021-05-08T05:08:16",
-        "mtime": "2021-05-08T05:08:16",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_stempelungen_neu - kopie (2)": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu - kopie (2).imr",
-        "size": 68608,
-        "ctime": "2021-07-08T13:16:21",
-        "mtime": "2021-03-17T11:03:46",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_inv_date_neu": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_inv_date_neu.imr",
-        "size": 272896,
-        "ctime": "2018-06-05T16:46:32",
-        "mtime": "2018-06-05T16:46:32",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "skr_absatzkanal": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_absatzkanal.imr",
-        "size": 65536,
-        "ctime": "2020-04-14T15:04:00",
-        "mtime": "2020-04-14T15:04:00",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_absatzkanal.iqd",
-        "size": 918,
-        "ctime": "2018-05-25T10:18:16",
-        "mtime": "2018-05-25T10:18:16",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_absatzkanal.csv",
-        "size": 3316,
-        "ctime": "2018-06-19T13:21:12",
-        "mtime": "2018-06-19T13:21:12",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_liegert - kopie": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_liegert - kopie.imr",
-        "size": 160256,
-        "ctime": "2021-09-21T17:00:49",
-        "mtime": "2021-09-21T16:59:56",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "nw_gw_be_ohne_fibu": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_ohne_fibu.imr",
-        "size": 144384,
-        "ctime": "2021-05-06T21:29:42",
-        "mtime": "2021-05-06T21:29:42",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\nw_gw_be_ohne_fibu.csv",
-        "size": 90239,
-        "ctime": "2021-05-06T20:25:30",
-        "mtime": "2021-05-06T20:25:30",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "vehicles_postgres_direkt": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\vehicles_postgres_direkt.imr",
-        "size": 90112,
-        "ctime": "2020-11-12T09:10:10",
-        "mtime": "2020-11-12T09:10:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\vehicles_postgres_direkt.csv",
-        "size": 3700023,
-        "ctime": "2020-11-12T09:10:30",
-        "mtime": "2020-11-12T09:10:30",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_abwesenheit_neu_serviceberater": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit_neu_serviceberater.imr",
-        "size": 74240,
-        "ctime": "2021-11-23T11:03:47",
-        "mtime": "2021-11-23T11:03:48",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "op_aus_loc_belege_nur_8520_mit_betriebesteuerung_invoices": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_nur_8520_mit_betriebesteuerung_invoices.imr",
-        "size": 121856,
-        "ctime": "2018-05-24T15:49:26",
-        "mtime": "2018-05-24T15:49:26",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_1": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_1.imr",
-        "size": 91136,
-        "ctime": "2017-05-23T14:57:58",
-        "mtime": "2017-05-23T14:57:58",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "current_date_fuer_ims": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_fuer_ims.imr",
-        "size": 52224,
-        "ctime": "2021-03-30T17:15:08",
-        "mtime": "2021-03-30T17:15:08",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "nw_gw_be_auf_nw_gw_bestand_cat": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat.imr",
-        "size": 176128,
-        "ctime": "2021-06-02T09:27:40",
-        "mtime": "2021-09-22T11:54:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat.iqd",
-        "size": 21821,
-        "ctime": "2018-06-05T18:11:10",
-        "mtime": "2018-06-05T18:11:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\nw_gw_be_auf_nw_gw_bestand_cat.csv",
-        "size": 795420,
-        "ctime": "2022-07-08T11:15:17",
-        "mtime": "2022-07-08T11:15:17",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "imvoice_no_order_no": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\imvoice_no_order_no.imr",
-        "size": 52736,
-        "ctime": "2020-11-11T10:24:00",
-        "mtime": "2021-07-08T10:17:09",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\imvoice_no_order_no.iqd",
-        "size": 887,
-        "ctime": "2018-05-24T17:17:42",
-        "mtime": "2018-05-24T17:17:42",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_abwesenheit_neu": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit_neu.imr",
-        "size": 79872,
-        "ctime": "2020-11-17T16:49:36",
-        "mtime": "2022-01-13T11:46:58",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit_neu.iqd",
-        "size": 4176,
-        "ctime": "2019-11-29T14:14:38",
-        "mtime": "2019-11-29T14:14:38",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_abwesenheit_neu.csv",
-        "size": 5500836,
-        "ctime": "2022-07-08T11:19:33",
-        "mtime": "2022-07-08T11:19:34",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "offene_auftraege_dg_anz_tage - kopie": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_dg_anz_tage - kopie.imr",
-        "size": 111616,
-        "ctime": "2020-12-17T11:53:32",
-        "mtime": "2020-12-17T11:53:32",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_aus_fibu": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_aus_fibu.imr",
-        "size": 151552,
-        "ctime": "2021-03-11T15:29:32",
-        "mtime": "2021-09-21T15:12:32",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_vor_20200821_kost2_5_stellen": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_vor_20200821_kost2_5_stellen.imr",
-        "size": 153088,
-        "ctime": "2021-03-17T11:47:46",
-        "mtime": "2021-03-17T11:47:46",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk_vor_20200821_kost2_5_stellen.csv",
-        "size": 2620,
-        "ctime": "2021-03-17T11:55:58",
-        "mtime": "2021-03-17T11:55:58",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_verk_std_mit_subsidiary_aus_labours_und_nicht_aus_employee": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_verk_std_mit_subsidiary_aus_labours_und_nicht_aus_employee.imr",
-        "size": 71680,
-        "ctime": "2020-04-22T09:25:48",
-        "mtime": "2020-04-22T09:25:48",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "skr_statistik_stk_manuell": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_statistik_stk_manuell.imr",
-        "size": 64000,
-        "ctime": "2018-06-19T13:46:54",
-        "mtime": "2018-06-19T13:46:54",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_statistik_stk_manuell.csv",
-        "size": 3492,
-        "ctime": "2018-06-19T13:47:02",
-        "mtime": "2018-06-19T13:47:02",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "kontenrahmen_gc_struct_skr": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen_gc_struct_skr.imr",
-        "size": 125440,
-        "ctime": "2021-02-02T11:01:12",
-        "mtime": "2021-02-02T11:01:12",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen_gc_struct_skr.iqd",
-        "size": 5158,
-        "ctime": "2018-06-12T11:33:32",
-        "mtime": "2018-06-12T11:33:32",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\kontenrahmen_gc_struct_skr.csv",
-        "size": 6052679,
-        "ctime": "2022-07-08T11:12:14",
-        "mtime": "2022-07-08T11:12:15",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_sich_30112020_vor_anpassungen": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_sich_30112020_vor_anpassungen.imr",
-        "size": 262144,
-        "ctime": "2020-11-26T13:27:14",
-        "mtime": "2020-11-26T13:27:14",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "nw_gw_be_auf_nw_gw_bestand_cat_sich_mit_fibu": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat_sich_mit_fibu.imr",
-        "size": 177664,
-        "ctime": "2020-12-17T11:25:14",
-        "mtime": "2020-12-17T11:25:14",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "offene_auftraege_teile - kopie": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile - kopie.imr",
-        "size": 78336,
-        "ctime": "2020-11-17T16:44:12",
-        "mtime": "2020-11-17T16:44:12",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "op_aus_ims": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_ims.imr",
-        "size": 154624,
-        "ctime": "2018-02-12T15:24:52",
-        "mtime": "2018-02-12T15:24:52",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk - kopie (3)": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie (3).imr",
-        "size": 154112,
-        "ctime": "2021-07-21T10:02:27",
-        "mtime": "2021-07-08T16:52:44",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "op_aus_loc_belege_deb_saldo_forderungsart_aus_rechnungsnummer": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo_forderungsart_aus_rechnungsnummer.imr",
-        "size": 110592,
-        "ctime": "2021-09-20T11:42:22",
-        "mtime": "2020-05-07T17:09:02",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_bilanz_mit_doc_no_im_text": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz_mit_doc_no_im_text.imr",
-        "size": 93184,
-        "ctime": "2020-04-15T10:13:04",
-        "mtime": "2020-04-15T10:13:04",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_stk_fibu - kopie": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu - kopie.imr",
-        "size": 155136,
-        "ctime": "2021-07-08T13:15:25",
-        "mtime": "2021-01-06T10:17:06",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "offene_auftraege_ums_ben_aw - kopie": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_ums_ben_aw - kopie.imr",
-        "size": 79360,
-        "ctime": "2020-11-17T16:45:28",
-        "mtime": "2020-11-17T16:45:28",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_stempelungen_neu": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu.imr",
-        "size": 97792,
-        "ctime": "2021-03-17T11:03:46",
-        "mtime": "2022-01-13T11:49:51",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu.iqd",
-        "size": 2528,
-        "ctime": "2018-06-06T11:40:02",
-        "mtime": "2018-06-06T11:40:02",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_stempelungen_neu.csv",
-        "size": 37372703,
-        "ctime": "2022-07-08T11:18:58",
-        "mtime": "2022-07-08T11:19:05",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_teile": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_teile.imr",
-        "size": 96768,
-        "ctime": "2017-06-08T16:28:46",
-        "mtime": "2017-06-08T16:28:46",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "op_aus_loc_belege_deb_saldo": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo.imr",
-        "size": 115712,
-        "ctime": "2020-05-07T17:09:02",
-        "mtime": "2021-11-11T10:59:41",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo.iqd",
-        "size": 13010,
-        "ctime": "2019-11-29T14:45:36",
-        "mtime": "2019-11-29T14:45:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_deb_saldo.csv",
-        "size": 1180388,
-        "ctime": "2022-07-08T11:18:51",
-        "mtime": "2022-07-08T11:18:51",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_stempelungen_pausen": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen.imr",
-        "size": 94208,
-        "ctime": "2020-11-17T16:50:44",
-        "mtime": "2022-01-13T13:02:19",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen.iqd",
-        "size": 6433,
-        "ctime": "2019-11-29T14:13:22",
-        "mtime": "2019-11-29T14:13:22",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_stempelungen_pausen.csv",
-        "size": 37362888,
-        "ctime": "2022-07-08T11:19:10",
-        "mtime": "2022-07-08T11:19:17",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_liegert": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_liegert.imr",
-        "size": 266240,
-        "ctime": "2021-09-21T16:59:56",
-        "mtime": "2021-09-21T17:08:01",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege.imr",
-        "size": 103936,
-        "ctime": "2021-07-08T11:39:29",
-        "mtime": "2021-11-22T17:16:21",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege.iqd",
-        "size": 6835,
-        "ctime": "2018-06-29T11:32:04",
-        "mtime": "2018-06-29T11:32:04",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege.csv",
-        "size": 189287347,
-        "ctime": "2022-07-08T11:13:54",
-        "mtime": "2022-07-08T11:14:35",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "op_aus_loc_belege_ohne_8520": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520.imr",
-        "size": 115712,
-        "ctime": "2020-05-07T16:43:30",
-        "mtime": "2021-11-11T10:58:53",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520.iqd",
-        "size": 13074,
-        "ctime": "2019-11-29T14:46:48",
-        "mtime": "2019-11-29T14:46:48",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_ohne_8520.csv",
-        "size": 1180388,
-        "ctime": "2022-07-08T11:18:55",
-        "mtime": "2022-07-08T11:18:55",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_stempelungen": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen.imr",
-        "size": 78848,
-        "ctime": "2018-01-29T11:04:04",
-        "mtime": "2018-01-29T11:04:04",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen.iqd",
-        "size": 2281,
-        "ctime": "2018-01-29T11:04:02",
-        "mtime": "2018-01-29T11:04:02",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_bilanz": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz.imr",
-        "size": 99840,
-        "ctime": "2020-04-28T12:00:28",
-        "mtime": "2020-04-28T12:00:28",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz.iqd",
-        "size": 9375,
-        "ctime": "2018-05-25T10:22:18",
-        "mtime": "2018-05-25T10:22:18",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_bilanz.csv",
-        "size": 1188,
-        "ctime": "2020-11-11T08:56:10",
-        "mtime": "2020-11-11T08:56:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk.imr",
-        "size": 160256,
-        "ctime": "2021-09-21T17:08:10",
-        "mtime": "2021-11-11T11:03:51",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk.iqd",
-        "size": 28371,
-        "ctime": "2019-02-19T08:28:58",
-        "mtime": "2019-02-19T08:28:58",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk.csv",
-        "size": 68558946,
-        "ctime": "2022-07-08T11:15:01",
-        "mtime": "2022-07-08T11:15:16",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "kontenrahmen_1": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen\\kontenrahmen_1.imr",
-        "size": 91136,
-        "ctime": "2010-08-10T13:21:36",
-        "mtime": "2010-08-10T13:21:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_stk_fibu_datev": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_datev.imr",
-        "size": 83456,
-        "ctime": "2020-11-17T15:30:54",
-        "mtime": "2020-11-17T15:30:54",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_statistische_werte_": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_statistische_werte_.imr",
-        "size": 145408,
-        "ctime": "2016-05-18T10:47:06",
-        "mtime": "2016-05-18T10:47:06",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "offene_auftraege_teile": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile.imr",
-        "size": 84480,
-        "ctime": "2022-01-06T09:21:05",
-        "mtime": "2022-01-06T09:21:05",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile.iqd",
-        "size": 6085,
-        "ctime": "2019-11-21T16:59:02",
-        "mtime": "2019-11-21T16:59:02",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\offene_auftraege_teile.csv",
-        "size": 1943008,
-        "ctime": "2022-07-08T11:18:28",
-        "mtime": "2022-07-08T11:18:28",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": [
-        "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\sich\\offene_auftraege_teile.imr"
-      ]
-    },
-    "employee_list": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\employee_list.imr",
-        "size": 62976,
-        "ctime": "2021-11-30T16:41:16",
-        "mtime": "2021-11-30T16:48:23",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\employee_list.iqd",
-        "size": 1902,
-        "ctime": "2021-11-30T16:41:22",
-        "mtime": "2021-11-30T16:48:11",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\employee_list.csv",
-        "size": 41599,
-        "ctime": "2021-11-30T16:40:16",
-        "mtime": "2021-11-30T16:48:22",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_statistische_werte": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_statistische_werte.imr",
-        "size": 116736,
-        "ctime": "2018-05-25T10:24:10",
-        "mtime": "2018-05-25T10:24:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_statistische_werte.iqd",
-        "size": 7325,
-        "ctime": "2018-05-25T10:24:10",
-        "mtime": "2018-05-25T10:24:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_statistische_werte.csv",
-        "size": 10612921,
-        "ctime": "2018-06-12T16:15:14",
-        "mtime": "2018-06-12T16:15:14",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "op_datev": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_datev.imr",
-        "size": 105472,
-        "ctime": "2021-05-06T21:43:00",
-        "mtime": "2021-05-06T21:43:00",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_verk\u00e4ufer_vehicles": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_verk\u00e4ufer_vehicles.imr",
-        "size": 253440,
-        "ctime": "2021-03-11T15:02:50",
-        "mtime": "2021-03-11T15:02:50",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_account_characteristics": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_account_characteristics.imr",
-        "size": 64000,
-        "ctime": "2016-05-18T09:19:56",
-        "mtime": "2016-05-18T09:19:56",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "nw_vk_test": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_vk_test.imr",
-        "size": 44032,
-        "ctime": "2020-11-25T16:21:36",
-        "mtime": "2020-11-25T16:21:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "aftersales_rechnungen_neu": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu.imr",
-        "size": 159744,
-        "ctime": "2021-02-02T11:01:20",
-        "mtime": "2021-09-23T21:25:48",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu.iqd",
-        "size": 17836,
-        "ctime": "2019-11-21T16:51:06",
-        "mtime": "2019-11-21T16:51:06",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\aftersales_rechnungen_neu.csv",
-        "size": 240542884,
-        "ctime": "2022-07-08T11:16:39",
-        "mtime": "2022-07-08T11:17:28",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_stempelungen_neu_auftrag_161387_nicht abgestempelt": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_auftrag_161387_nicht abgestempelt.imr",
-        "size": 109568,
-        "ctime": "2018-02-02T17:07:24",
-        "mtime": "2018-02-02T17:07:24",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "nw_gw_be_auf_nw_gw_bestand_cat - kopie": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat - kopie.imr",
-        "size": 169472,
-        "ctime": "2021-07-08T13:16:06",
-        "mtime": "2021-05-07T09:46:34",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_mit_doc_no_im_text": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_mit_doc_no_im_text.imr",
-        "size": 98816,
-        "ctime": "2020-04-15T10:28:50",
-        "mtime": "2020-04-15T10:28:50",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "current_date_prognose": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose.imr",
-        "size": 42496,
-        "ctime": "2015-07-07T09:27:18",
-        "mtime": "2015-07-07T09:27:18",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose.iqd",
-        "size": 2483,
-        "ctime": "2015-07-07T09:27:16",
-        "mtime": "2015-07-07T09:27:16",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\current_date_prognose.csv",
-        "size": 7352,
-        "ctime": "2018-06-19T13:51:36",
-        "mtime": "2018-06-19T13:51:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "nw_gw_be_auf_nw_gw_bestand_cat_liegert": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat_liegert.imr",
-        "size": 175104,
-        "ctime": "2021-06-02T09:27:40",
-        "mtime": "2021-06-02T09:27:40",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "teamliste": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\teamliste.imr",
-        "size": 74752,
-        "ctime": "2018-06-06T11:26:02",
-        "mtime": "2018-06-06T11:26:02",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\teamliste.iqd",
-        "size": 1455,
-        "ctime": "2018-06-06T11:25:54",
-        "mtime": "2018-06-06T11:25:54",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\teamliste.csv",
-        "size": 290,
-        "ctime": "2020-04-08T14:22:36",
-        "mtime": "2020-04-08T14:22:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_kontenrahmen": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_kontenrahmen.imr",
-        "size": 61440,
-        "ctime": "2016-05-18T09:21:30",
-        "mtime": "2016-05-18T09:21:30",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_ben_std_lg": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_ben_std_lg.imr",
-        "size": 69120,
-        "ctime": "2020-11-17T16:54:22",
-        "mtime": "2021-10-20T17:33:46",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_ben_std_lg.iqd",
-        "size": 3105,
-        "ctime": "2019-11-29T14:16:10",
-        "mtime": "2019-11-29T14:16:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_ben_std_lg.csv",
-        "size": 11389291,
-        "ctime": "2022-07-08T11:19:57",
-        "mtime": "2022-07-08T11:19:59",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_lutz": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_lutz.imr",
-        "size": 102400,
-        "ctime": "2021-01-06T10:15:42",
-        "mtime": "2021-01-06T10:15:42",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_stempelungen_neu - kopie": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu - kopie.imr",
-        "size": 68608,
-        "ctime": "2021-03-17T11:03:46",
-        "mtime": "2021-03-17T11:03:46",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "nw_be_ohne_fibu": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_be_ohne_fibu.imr",
-        "size": 130048,
-        "ctime": "2020-12-01T10:48:52",
-        "mtime": "2020-12-01T10:48:52",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk - kopie (2)": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie (2).imr",
-        "size": 156672,
-        "ctime": "2021-07-08T13:15:34",
-        "mtime": "2020-12-16T17:35:40",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_abwesenheit": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit.imr",
-        "size": 79360,
-        "ctime": "2018-05-11T11:27:24",
-        "mtime": "2018-05-11T11:27:24",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit.iqd",
-        "size": 2305,
-        "ctime": "2018-05-11T11:27:24",
-        "mtime": "2018-05-11T11:27:24",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "skr_konten_stk_manuell": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_konten_stk_manuell.imr",
-        "size": 64000,
-        "ctime": "2018-06-19T13:45:38",
-        "mtime": "2018-06-19T13:45:38",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_konten_stk_manuell.csv",
-        "size": 1207,
-        "ctime": "2020-04-15T10:33:24",
-        "mtime": "2020-04-15T10:33:24",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_abstimmung": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_abstimmung.imr",
-        "size": 156160,
-        "ctime": "2021-09-21T15:10:21",
-        "mtime": "2021-09-21T15:10:21",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "offene_auftraege_dg_anz_tage": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_dg_anz_tage.imr",
-        "size": 80896,
-        "ctime": "2022-01-06T09:21:05",
-        "mtime": "2022-01-06T09:21:05",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_dg_anz_tage.iqd",
-        "size": 5689,
-        "ctime": "2019-11-21T16:53:38",
-        "mtime": "2019-11-21T16:53:38",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\offene_auftraege_dg_anz_tage.csv",
-        "size": 3294973,
-        "ctime": "2022-07-08T11:18:49",
-        "mtime": "2022-07-08T11:18:50",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": [
-        "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\sich\\offene_auftraege_dg_anz_tage.imr"
-      ]
-    },
-    "zeit_verk_std": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_verk_std.imr",
-        "size": 64000,
-        "ctime": "2020-11-17T16:55:12",
-        "mtime": "2020-11-17T16:55:12",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_verk_std.iqd",
-        "size": 2756,
-        "ctime": "2018-06-06T11:43:06",
-        "mtime": "2018-06-06T11:43:06",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_verk_std.csv",
-        "size": 29312675,
-        "ctime": "2022-07-08T11:19:38",
-        "mtime": "2022-07-08T11:19:44",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "offene_auftraege": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege.imr",
-        "size": 94208,
-        "ctime": "2018-06-05T18:14:58",
-        "mtime": "2018-06-05T18:14:58",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege.iqd",
-        "size": 5443,
-        "ctime": "2018-06-05T18:14:56",
-        "mtime": "2018-06-05T18:14:56",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_stempelungen_neu_f\u00fcr_ben_zeit": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_f\u00fcr_ben_zeit.imr",
-        "size": 78848,
-        "ctime": "2018-03-15T15:41:48",
-        "mtime": "2018-03-15T15:41:48",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "nw_gw_stk_auf_nw_gw_vk_cat": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\nw_gw_stk_auf_nw_gw_vk_cat.imr",
-        "size": 139776,
-        "ctime": "2017-07-14T11:01:38",
-        "mtime": "2017-07-14T11:01:38",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\nw_gw_stk_auf_nw_gw_vk_cat.iqd",
-        "size": 13951,
-        "ctime": "2017-07-14T11:00:56",
-        "mtime": "2017-07-14T11:00:56",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_liegert_\u00fcberspeichert": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_liegert_\u00fcberspeichert.imr",
-        "size": 164864,
-        "ctime": "2020-04-27T10:14:42",
-        "mtime": "2021-09-21T16:56:12",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_sich_vor_kost2_aus_datev": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_sich_vor_kost2_aus_datev.imr",
-        "size": 162816,
-        "ctime": "2020-11-30T17:22:58",
-        "mtime": "2020-11-30T17:22:58",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "serviceberater_rechnung": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\serviceberater_rechnung.imr",
-        "size": 64512,
-        "ctime": "2022-01-05T11:17:05",
-        "mtime": "2022-01-05T11:17:06",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\serviceberater_rechnung.iqd",
-        "size": 1133,
-        "ctime": "2018-05-24T17:18:24",
-        "mtime": "2018-05-24T17:18:24",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "offene_auftraege_ums_ben_aw": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_ums_ben_aw.imr",
-        "size": 85504,
-        "ctime": "2022-01-06T09:21:05",
-        "mtime": "2022-01-06T09:21:06",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_ums_ben_aw.iqd",
-        "size": 6378,
-        "ctime": "2019-11-21T16:58:22",
-        "mtime": "2019-11-21T16:58:22",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\offene_auftraege_ums_ben_aw.csv",
-        "size": 3544548,
-        "ctime": "2022-07-08T11:18:47",
-        "mtime": "2022-07-08T11:18:47",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": [
-        "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\sich\\offene_auftraege_ums_ben_aw.imr"
-      ]
-    },
-    "op_aus_loc_belege_ohne_8520_mit_betriebesteuerung_invoices": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520_mit_betriebesteuerung_invoices.imr",
-        "size": 121344,
-        "ctime": "2019-11-29T14:46:52",
-        "mtime": "2019-11-29T14:46:52",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "aftersales_rechnungen_verk_aw_final": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_verk_aw_final.imr",
-        "size": 74752,
-        "ctime": "2021-05-07T14:36:10",
-        "mtime": "2021-09-23T21:25:35",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_verk_aw_final.iqd",
-        "size": 4878,
-        "ctime": "2018-06-13T11:52:02",
-        "mtime": "2018-06-13T11:52:02",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\aftersales_rechnungen_verk_aw_final.csv",
-        "size": 42083690,
-        "ctime": "2022-07-08T11:17:49",
-        "mtime": "2022-07-08T11:17:55",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "op_aus_loc_belege_8520": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_8520.imr",
-        "size": 52224,
-        "ctime": "2020-04-21T08:22:30",
-        "mtime": "2020-04-21T08:22:30",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_8520.iqd",
-        "size": 1001,
-        "ctime": "2018-05-24T17:19:12",
-        "mtime": "2018-05-24T17:19:12",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_8520.csv",
-        "size": 187,
-        "ctime": "2022-07-08T11:18:53",
-        "mtime": "2022-07-08T11:18:53",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "aftersales_rechnungen_neu_mit_steuerung_kennzahlen": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu_mit_steuerung_kennzahlen.imr",
-        "size": 157184,
-        "ctime": "2020-04-21T08:02:36",
-        "mtime": "2020-04-21T08:02:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "kontenrahmen": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen.imr",
-        "size": 133120,
-        "ctime": "2020-11-11T10:32:10",
-        "mtime": "2021-07-08T11:26:24",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen.iqd",
-        "size": 3782,
-        "ctime": "2015-07-08T09:32:32",
-        "mtime": "2015-07-08T09:32:32",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\kontenrahmen.csv",
-        "size": 104537,
-        "ctime": "2016-08-09T10:03:22",
-        "mtime": "2016-08-09T10:03:22",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_bilanz_alt": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz_alt.imr",
-        "size": 100352,
-        "ctime": "2016-05-18T11:09:36",
-        "mtime": "2016-05-18T11:09:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "current_date_prognose_vj": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_vj.imr",
-        "size": 41984,
-        "ctime": "2016-06-01T12:51:10",
-        "mtime": "2016-06-01T12:51:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_vj.iqd",
-        "size": 2428,
-        "ctime": "2016-06-01T12:19:38",
-        "mtime": "2016-06-01T12:19:38",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "kontenrahmen_2": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen\\kontenrahmen_2.imr",
-        "size": 63488,
-        "ctime": "2008-09-15T15:58:04",
-        "mtime": "2008-09-15T15:58:04",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_stk": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_stk.imr",
-        "size": 140800,
-        "ctime": "2018-05-25T10:21:36",
-        "mtime": "2018-05-25T10:21:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_stk.iqd",
-        "size": 6771,
-        "ctime": "2018-05-25T10:21:42",
-        "mtime": "2018-05-25T10:21:42",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk - kopie (4)": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie (4).imr",
-        "size": 262144,
-        "ctime": "2021-09-23T21:06:45",
-        "mtime": "2021-09-23T18:15:00",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "current_date_prognose_operativ_vj": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ_vj.imr",
-        "size": 64512,
-        "ctime": "2017-06-30T09:08:36",
-        "mtime": "2017-06-30T09:08:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ_vj.iqd",
-        "size": 2523,
-        "ctime": "2017-06-30T09:08:32",
-        "mtime": "2017-06-30T09:08:32",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_stempelungen_pausen_produktiv": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen_produktiv.imr",
-        "size": 94720,
-        "ctime": "2020-11-17T16:52:08",
-        "mtime": "2022-01-13T13:16:31",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen_produktiv.iqd",
-        "size": 6764,
-        "ctime": "2019-11-29T14:13:46",
-        "mtime": "2019-11-29T14:13:46",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_stempelungen_pausen_produktiv.csv",
-        "size": 45683320,
-        "ctime": "2022-07-08T11:19:23",
-        "mtime": "2022-07-08T11:19:32",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "current_date_prognose_gefiltert": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_gefiltert.imr",
-        "size": 41984,
-        "ctime": "2015-07-07T09:26:46",
-        "mtime": "2015-07-07T09:26:46",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_gefiltert.iqd",
-        "size": 2022,
-        "ctime": "2015-07-07T09:26:44",
-        "mtime": "2015-07-07T09:26:44",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "current_date_prognose_operativ": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ.imr",
-        "size": 46592,
-        "ctime": "2015-07-07T09:27:48",
-        "mtime": "2015-07-07T09:27:48",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ.iqd",
-        "size": 2331,
-        "ctime": "2015-07-07T09:27:42",
-        "mtime": "2015-07-07T09:27:42",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_ben_std_lg_mit_subsidiary_aus_labours_und_nicht_aus_employee": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_ben_std_lg_mit_subsidiary_aus_labours_und_nicht_aus_employee.imr",
-        "size": 63488,
-        "ctime": "2020-04-22T09:26:24",
-        "mtime": "2020-04-22T09:26:24",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_kontenrahmen_gc_struct_import": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_kontenrahmen_gc_struct_import.imr",
-        "size": 37376,
-        "ctime": "2016-06-01T14:48:18",
-        "mtime": "2016-06-01T14:48:18",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "kontenrahmen_fuer_gc_struct": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen_fuer_gc_struct.imr",
-        "size": 32256,
-        "ctime": "2021-01-18T17:14:56",
-        "mtime": "2021-01-18T17:14:56",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "aftersales_rechnungen_neu - kopie": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu - kopie.imr",
-        "size": 156672,
-        "ctime": "2020-12-17T16:23:10",
-        "mtime": "2020-12-17T16:23:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_stempelungen_neu_abstimmung": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_abstimmung.imr",
-        "size": 54784,
-        "ctime": "2021-03-17T10:03:04",
-        "mtime": "2021-03-17T10:03:04",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "nw_gw_be_auf_nw_gw_bestand_cat - kopie (2)": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat - kopie (2).imr",
-        "size": 169472,
-        "ctime": "2021-07-21T10:02:22",
-        "mtime": "2021-05-07T09:46:34",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk - kopie": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie.imr",
-        "size": 144384,
-        "ctime": "2020-12-16T17:35:40",
-        "mtime": "2021-03-16T17:26:44",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "serviceberater_rechnung - kopie": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\serviceberater_rechnung - kopie.imr",
-        "size": 56832,
-        "ctime": "2022-01-05T11:17:11",
-        "mtime": "2021-10-13T14:47:13",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_op_belege": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\loc_op_belege.imr",
-        "size": 111104,
-        "ctime": "2018-01-23T14:51:42",
-        "mtime": "2018-01-23T14:51:42",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_sich_vor_invoice_date_zeichen": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_sich_vor_invoice_date_zeichen.imr",
-        "size": 171520,
-        "ctime": "2018-05-24T15:40:56",
-        "mtime": "2018-05-24T15:40:56",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "op_aus_loc_belege_deb_saldo_mit_betriebesteuerung_\u00fcber_invoice": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo_mit_betriebesteuerung_\u00fcber_invoice.imr",
-        "size": 196608,
-        "ctime": "2020-04-21T08:06:28",
-        "mtime": "2020-04-21T08:06:28",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_stk_fibu_ori": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_ori.imr",
-        "size": 161280,
-        "ctime": "2020-11-25T16:21:38",
-        "mtime": "2020-11-25T16:21:38",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_stk_fibu_lutz": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_lutz.imr",
-        "size": 155136,
-        "ctime": "2021-01-06T10:17:06",
-        "mtime": "2021-01-06T10:17:06",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "zeit_stempelungen_neu_inkl_pausen": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_inkl_pausen.imr",
-        "size": 83456,
-        "ctime": "2018-03-15T10:45:02",
-        "mtime": "2018-03-15T10:45:02",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_stk_fibu_reference_vehicle_0_fehlt": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_reference_vehicle_0_fehlt.imr",
-        "size": 172032,
-        "ctime": "2018-06-06T09:34:10",
-        "mtime": "2018-06-06T09:34:10",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_stk_fibu_ohne_kundenart_und_standort": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_ohne_kundenart_und_standort.imr",
-        "size": 137216,
-        "ctime": "2020-11-24T15:52:24",
-        "mtime": "2020-11-24T15:52:24",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_datev": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_datev.imr",
-        "size": 255488,
-        "ctime": "2020-12-16T17:34:48",
-        "mtime": "2020-12-16T17:34:48",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "skr_herkunft_kst": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_herkunft_kst.imr",
-        "size": 63488,
-        "ctime": "2020-04-08T11:25:48",
-        "mtime": "2020-04-08T11:25:48",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_herkunft_kst.iqd",
-        "size": 1006,
-        "ctime": "2016-05-31T15:06:46",
-        "mtime": "2016-05-31T15:06:46",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_herkunft_kst.csv",
-        "size": 2804,
-        "ctime": "2018-06-19T13:21:36",
-        "mtime": "2018-06-19T13:21:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "offene_auftraege_teile - kopie (2)": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile - kopie (2).imr",
-        "size": 90624,
-        "ctime": "2021-11-29T16:40:04",
-        "mtime": "2021-10-20T14:33:03",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege - kopie": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege - kopie.imr",
-        "size": 98816,
-        "ctime": "2021-11-22T17:11:02",
-        "mtime": "2021-07-08T11:39:30",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "aftersales_rechnungen_ben_aw_final": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_ben_aw_final.imr",
-        "size": 78336,
-        "ctime": "2021-02-02T11:01:10",
-        "mtime": "2021-09-23T21:25:30",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_ben_aw_final.iqd",
-        "size": 5778,
-        "ctime": "2018-06-13T11:53:04",
-        "mtime": "2018-06-13T11:53:04",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\aftersales_rechnungen_ben_aw_final.csv",
-        "size": 44584770,
-        "ctime": "2022-07-08T11:18:20",
-        "mtime": "2022-07-08T11:18:26",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_stk_fibu": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu.imr",
-        "size": 166400,
-        "ctime": "2020-04-15T18:12:58",
-        "mtime": "2021-07-08T16:57:43",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk_stk_fibu.csv",
-        "size": 9382737,
-        "ctime": "2022-07-08T11:14:41",
-        "mtime": "2022-07-08T11:14:43",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_aus_dealer_vehicles": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_aus_dealer_vehicles.imr",
-        "size": 154112,
-        "ctime": "2020-04-27T10:14:42",
-        "mtime": "2021-09-21T16:24:57",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk_aus_dealer_vehicles.csv",
-        "size": 4562619,
-        "ctime": "2021-09-21T08:19:19",
-        "mtime": "2021-09-21T16:24:52",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "auftraege": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\auftraege.imr",
-        "size": 120832,
-        "ctime": "2017-05-22T15:13:00",
-        "mtime": "2017-05-22T15:13:00",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "ben_aw_order_number": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\ben_aw_order_number.imr",
-        "size": 45568,
-        "ctime": "2020-11-11T10:23:38",
-        "mtime": "2020-11-11T10:23:38",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\ben_aw_order_number.iqd",
-        "size": 425,
-        "ctime": "2018-05-24T17:17:08",
-        "mtime": "2018-05-24T17:17:08",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_sich": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_sich.imr",
-        "size": 98304,
-        "ctime": "2021-01-06T10:15:42",
-        "mtime": "2020-04-08T10:18:18",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "op_aus_loc_belege": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege.imr",
-        "size": 121344,
-        "ctime": "2019-11-29T14:45:00",
-        "mtime": "2019-11-29T14:45:00",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege.iqd",
-        "size": 11614,
-        "ctime": "2019-11-29T14:44:56",
-        "mtime": "2019-11-29T14:44:56",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "loc_belege_nw_gw_vk_fzg_mit_reference_vehicles": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_fzg_mit_reference_vehicles.imr",
-        "size": 175104,
-        "ctime": "2018-02-21T09:12:36",
-        "mtime": "2018-02-21T09:12:36",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    },
-    "op_aus_loc_belege_ohne_8520_forderungsart_aus_rechnungsnummer": {
-      "imr_file": {
-        "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520_forderungsart_aus_rechnungsnummer.imr",
-        "size": 110592,
-        "ctime": "2021-09-20T13:44:25",
-        "mtime": "2020-05-07T16:43:30",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "iqd_file": {
-        "mtime": "0"
-      },
-      "csv_file": {
-        "mtime": "0"
-      },
-      "csv_file_iqd_folder": {
-        "mtime": "0"
-      },
-      "duplicates": []
-    }
-  },
-  "cubes": {
-    "dashboard_gesamt": {
-      "deployed_mdc": {
-        "filename": "c:\\globalcube\\cubes\\dashboard_gesamt__20220708092521\\dashboard_gesamt.mdc",
-        "size": 36540630,
-        "ctime": "2022-07-08T11:25:20",
-        "mtime": "2022-07-08T11:25:20",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "cube_out_mdc": {
-        "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\dashboard_gesamt.mdc",
-        "size": 36540630,
-        "ctime": "2021-08-04T17:11:43",
-        "mtime": "2022-07-08T11:25:20",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "model": "dashboard_gesamt - kopie",
-      "errors": []
-    },
-    "f_belege": {
-      "deployed_mdc": {
-        "filename": "c:\\globalcube\\cubes\\f_belege__20220708092054\\f_belege.mdc",
-        "size": 97186298,
-        "ctime": "2022-07-08T11:20:53",
-        "mtime": "2022-07-08T11:20:52",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "cube_out_mdc": {
-        "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\f_belege.mdc",
-        "size": 97186298,
-        "ctime": "2021-05-08T05:09:28",
-        "mtime": "2022-07-08T11:20:52",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "model": "f_belege_skr",
-      "errors": []
-    },
-    "f_forderungen": {
-      "deployed_mdc": {
-        "filename": "c:\\globalcube\\cubes\\f_forderungen__20220708092103\\f_forderungen.mdc",
-        "size": 8963694,
-        "ctime": "2022-07-08T11:21:03",
-        "mtime": "2022-07-08T11:21:02",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "cube_out_mdc": {
-        "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\f_forderungen.mdc",
-        "size": 8963694,
-        "ctime": "2021-07-09T10:29:49",
-        "mtime": "2022-07-08T11:21:02",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "model": "f_forderungen",
-      "errors": []
-    },
-    "s_aftersales": {
-      "deployed_mdc": {
-        "filename": "c:\\globalcube\\cubes\\s_aftersales__20220708092310\\s_aftersales.mdc",
-        "size": 265800718,
-        "ctime": "2022-07-08T11:23:09",
-        "mtime": "2022-07-08T11:23:08",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "cube_out_mdc": {
-        "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\s_aftersales.mdc",
-        "size": 265800718,
-        "ctime": "2021-05-08T05:10:44",
-        "mtime": "2022-07-08T11:23:08",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "model": "s_aftersales",
-      "errors": []
-    },
-    "s_offene_auftraege": {
-      "deployed_mdc": {
-        "filename": "c:\\globalcube\\cubes\\s_offene_auftraege__20220708092323\\s_offene_auftraege.mdc",
-        "size": 2694658,
-        "ctime": "2022-07-08T11:23:23",
-        "mtime": "2022-07-08T11:23:22",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "cube_out_mdc": {
-        "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\s_offene_auftraege.mdc",
-        "size": 2694658,
-        "ctime": "2021-05-08T05:11:04",
-        "mtime": "2022-07-08T11:23:22",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "model": "s_offene_auftraege",
-      "errors": []
-    },
-    "v_bestand": {
-      "deployed_mdc": {
-        "filename": "c:\\globalcube\\cubes\\v_bestand__20220708092330\\v_bestand.mdc",
-        "size": 4596442,
-        "ctime": "2022-07-08T11:23:30",
-        "mtime": "2022-07-08T11:23:29",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "cube_out_mdc": {
-        "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\v_bestand.mdc",
-        "size": 4596442,
-        "ctime": "2021-05-08T05:11:14",
-        "mtime": "2022-07-08T11:23:29",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "model": "v_bestand",
-      "errors": []
-    },
-    "v_verkauf": {
-      "deployed_mdc": {
-        "filename": "c:\\globalcube\\cubes\\v_verkauf__20220708092405\\v_verkauf.mdc",
-        "size": 98971738,
-        "ctime": "2022-07-08T11:24:05",
-        "mtime": "2022-07-08T11:24:04",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "cube_out_mdc": {
-        "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\v_verkauf.mdc",
-        "size": 98971738,
-        "ctime": "2021-05-08T05:11:32",
-        "mtime": "2022-07-08T11:24:04",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "model": "v_verkauf_dealer_vehicles",
-      "errors": []
-    },
-    "z_monteure": {
-      "deployed_mdc": {
-        "filename": "c:\\globalcube\\cubes\\z_monteure__20220708092433\\z_monteure.mdc",
-        "size": 60618582,
-        "ctime": "2022-07-08T11:24:32",
-        "mtime": "2022-07-08T11:24:31",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "cube_out_mdc": {
-        "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\z_monteure.mdc",
-        "size": 60618582,
-        "ctime": "2021-05-08T05:12:02",
-        "mtime": "2022-07-08T11:24:31",
-        "read": "J",
-        "write": "J",
-        "blocked": "N",
-        "process": ""
-      },
-      "model": "z_monteure_mit_pause",
-      "errors": []
-    }
-  }
-}

+ 0 - 20
status_server/status_server.py

@@ -1,20 +0,0 @@
-from flask import Flask, request
-from sqlalchemy import create_engine
-from datetime import datetime
-
-app = Flask(__name__)
-filename = 'access.log'
-engine = create_engine('mysql+pymysql://gaps:Gcbs12ma@192.168.2.41/status')
-
-
-@app.route("/ping/<kunde>")
-def ping(kunde):
-    uptime = int(request.args.get('uptime', '0'))
-    current_date = datetime.now().timestamp()
-    print(kunde + ' hat sich um ' + str(current_date) + ' gemeldet')
-    with open(filename, 'a') as f:
-        f.write(str(current_date) + ';' + kunde + '\n')
-    with engine.connect() as con:
-        query = f"INSERT INTO ping (kunde, pingtime, uptime) VALUES ('{kunde}', '{int(current_date)}', '{uptime}')"
-        con.execute(query)
-    return 'Hallo ' + kunde + '!'

+ 0 - 10
status_server/unzip.py

@@ -1,10 +0,0 @@
-import zipfile
-
-
-def unzip_file(filename, target):
-    with zipfile.ZipFile(filename, 'r', compression=zipfile.ZIP_DEFLATED, compresslevel=9) as zip:
-        zip.extractall(target)
-
-
-if __name__ == '__main__':
-    unzip_file('status_server/zip_files/loeffler-c11_2022-07-08_112547.zip', 'status_server/unzipped')

二进制
status_server/zip_files/loeffler-c11_2022-06-02_041419.zip


二进制
status_server/zip_files/loeffler-c11_2022-06-03_095525.zip


二进制
status_server/zip_files/loeffler-c11_2022-07-08_112547.zip