diff --git a/office-alexander-logistics-app/src/main/java/com/alexanderlogistics/datev/DatevCargosoftImportAdapter.java b/office-alexander-logistics-app/src/main/java/com/alexanderlogistics/datev/DatevCargosoftImportAdapter.java index 3f7d40a..e16d935 100644 --- a/office-alexander-logistics-app/src/main/java/com/alexanderlogistics/datev/DatevCargosoftImportAdapter.java +++ b/office-alexander-logistics-app/src/main/java/com/alexanderlogistics/datev/DatevCargosoftImportAdapter.java @@ -8,12 +8,16 @@ import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; +import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.logging.Logger; +import java.util.regex.Matcher; +import java.util.regex.Pattern; import javax.inject.Inject; +import org.imixs.marty.team.TeamService; import org.imixs.workflow.FileData; import org.imixs.workflow.ItemCollection; import org.imixs.workflow.SignalAdapter; @@ -32,387 +36,437 @@ import com.alexanderlogistics.KreditorDebitorService; /** * Der DatevCargosoftImportAdapter liest eine von Cargosoft bereitgestellte * DATEV Datei ein und erzeugt Ausgangsrechnungs Workitems. Die Cargosoft DATEV - * Datei enthlät auch Eingangsrechnugen, welche von diesem Adapter ignoriert + * Datei enthält auch Eingangsrechnugen, welche von diesem Adapter ignoriert * werden. *

* In der Spalte Belegart-4 steht das Fäligkeitsdatum. *

* Beim Import wird auch der Kreditor geprüft und aus diesem das * Länderkennzeichen übernommen. + *

+ * Zusätzlich wird anhand der 1. Positionsnummer eine Zuordnung zu einem Bereich + * gemacht. Dazu werden aus den Bereichen die Konfigurations Items 'pos.mapping' + * ausgelesen, welche Regular Expressions enthalten können. Gibt es einen match, + * wird der Space der Rechnung zugeordnet. * * @version 1.0 * @author rsoika */ public class DatevCargosoftImportAdapter implements SignalAdapter { - private static Logger logger = Logger.getLogger(DatevCargosoftImportAdapter.class.getName()); + private static Logger logger = Logger.getLogger(DatevCargosoftImportAdapter.class.getName()); - public static final String ENCODING = "ISO-8859-1"; - public static final String CHILD_ITEM_PROPERTY = "_ChildItems"; - public static final String REGEX_IMPORTTEXTPATTERN = "^R[1-8] .*$"; + public static final String ENCODING = "ISO-8859-1"; + public static final String CHILD_ITEM_PROPERTY = "_ChildItems"; + public static final String REGEX_IMPORTTEXTPATTERN = "^R[1-8] .*$"; - @Inject - WorkflowService workflowService; + @Inject + WorkflowService workflowService; - @Inject - DocumentService documentService; + @Inject + DocumentService documentService; - @Inject - KreditorDebitorService kreditorDebitorService; + @Inject + KreditorDebitorService kreditorDebitorService; - /** - * This method finds or create the Datev Export and adds a reference - * ($workitemref) to the current invoice. - * - * @throws PluginException - */ - @Override - public ItemCollection execute(ItemCollection workitem, ItemCollection event) - throws AdapterException, PluginException { + @Inject + TeamService teamService; - logger.info("...parse datev file import..."); - try { - List log = readData(workitem); - workitem.setItemValue("import.log", log); - } catch (ModelException e) { - throw new AdapterException(PluginException.class.getSimpleName(), DatevImportAdapter.DATEV_IMPORT_ERROR, - "Failed to import datev data!", e); + /** + * This method finds or create the Datev Export and adds a reference + * ($workitemref) to the current invoice. + * + * @throws PluginException + */ + @Override + public ItemCollection execute(ItemCollection workitem, ItemCollection event) + throws AdapterException, PluginException { - } - return workitem; - } + logger.info("...parse datev file import..."); + try { - /** - * Liest die datenzeilen ab Zeile 3 aus und bildet worktiems gruppiert nach - * belegnummer - * - *

- * Belegfeld-1 ist hier ein eindeutiger Schlüssel für die Erzeugung von - * Splitbuchungen - * - * @param document - * @throws PluginException - * @throws ModelException - * @throws ProcessingErrorException - * @throws AccessDeniedException - */ - private List readData(ItemCollection workitem) - throws PluginException, AccessDeniedException, ProcessingErrorException, ModelException { - List logBuffer = new ArrayList(); - int line = 0; - int positions = 0; - int invoices = 0; - int dupplicates = 0; - int rueckstellungen=0; - int eingangsrechnungen=0; + // Datei einlesen + List log = readData(workitem); + workitem.setItemValue("import.log", log); + } catch (ModelException e) { + throw new AdapterException(PluginException.class.getSimpleName(), DatevImportAdapter.DATEV_IMPORT_ERROR, + "Failed to import datev data!", e); - String dataLine; - // Start Datum Wirtschaftsjahr berechnen (JJJJMMTT) - String wjBeginn = workitem.getItemValueString("datev.WJ-Beginn"); - String wjBeginnMonat = wjBeginn.substring(4, 6); - SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyyMMdd"); + } + return workitem; + } - ItemCollection invoiceWorkitem = null; - List splitBuchungen = new ArrayList(); + /** + * Liest die datenzeilen ab Zeile 3 aus und bildet worktiems gruppiert nach + * belegnummer + * + *

+ * Belegfeld-1 ist hier ein eindeutiger Schlüssel für die Erzeugung von + * Splitbuchungen + * + * @param document + * @throws PluginException + * @throws ModelException + * @throws ProcessingErrorException + * @throws AccessDeniedException + */ + private List readData(ItemCollection workitem) + throws PluginException, AccessDeniedException, ProcessingErrorException, ModelException { + List logBuffer = new ArrayList(); + int line = 0; + int positions = 0; + int invoices = 0; + int dupplicates = 0; + int rueckstellungen = 0; + int eingangsrechnungen = 0; - FileData fileData = workitem.getFileData().get(0); - ByteArrayInputStream imputStream = new ByteArrayInputStream(fileData.getContent()); + String dataLine; + // Start Datum Wirtschaftsjahr berechnen (JJJJMMTT) + String wjBeginn = workitem.getItemValueString("datev.WJ-Beginn"); + String wjBeginnMonat = wjBeginn.substring(4, 6); + SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyyMMdd"); - log(logBuffer, "Importdatei: " + fileData.getName()); - try { - BufferedReader in = new BufferedReader(new InputStreamReader(imputStream, ENCODING)); + // load spaces Pos Expressions + Map> spaces = loadSpacesConfig(); + - // skip header - in.readLine(); - in.readLine(); + ItemCollection invoiceWorkitem = null; + List splitBuchungen = new ArrayList(); - // read content.... - line = 0; - int blockSize = 0; - while ((dataLine = in.readLine()) != null) { - line++; - if (blockSize >= 100) { - blockSize = 0; - logger.info(line + " entries read...."); - } + FileData fileData = workitem.getFileData().get(0); + ByteArrayInputStream imputStream = new ByteArrayInputStream(fileData.getContent()); - // alle werte parsen - String[] header1List = dataLine.split(";(?=([^\"]*\"[^\"]*\")*[^\"]*$)", 99); - if (header1List.length < 6) { - throw new PluginException(DatevCargosoftImportAdapter.class.getName(), - DatevImportAdapter.DATEV_IMPORT_ERROR, "Invalid data in line " + line); - } + log(logBuffer, "Importdatei: " + fileData.getName()); + try { + BufferedReader in = new BufferedReader(new InputStreamReader(imputStream, ENCODING)); - String belegNummer = DatevImportAdapter.csvVal(header1List[10]); - String gegenKonto = DatevImportAdapter.csvVal(header1List[7]); - String text = DatevImportAdapter.csvVal(header1List[13]); - String buchungsTag = DatevImportAdapter.csvVal(header1List[9]); - // cargosoft laesst gerne die führende 0 weg.... - if (buchungsTag.length() == 3) { - buchungsTag = "0" + buchungsTag; - } - // berechne Buchungsdatum DDMM - String tag = buchungsTag.substring(0, 2); - String monat = buchungsTag.substring(2, 4); - String jahr = wjBeginn.substring(0, 4); - // compute next year if start of WJ is not January - if (Integer.parseInt(wjBeginnMonat) > Integer.parseInt(monat)) { - jahr = Integer.parseInt(jahr + 1) + ""; - } - Date dateBuchung = dateFormatter.parse(jahr + monat + tag); - // Fälligkeit - Date dueDate = new Date(); - try { - dateFormatter.parse(DatevImportAdapter.csvVal(header1List[23])); - } catch (Exception e) { - dueDate = new Date(); - } - - String paymentTerm = DatevImportAdapter.csvVal(header1List[31]); - String waehrung = DatevImportAdapter.csvVal(header1List[2]); + // skip header + in.readLine(); + in.readLine(); - // kurse - double kurs = parseBetrag(DatevImportAdapter.csvVal(header1List[3])); - double basisumsatz = parseBetrag(DatevImportAdapter.csvVal(header1List[4])); + // read content.... + line = 0; + int blockSize = 0; + while ((dataLine = in.readLine()) != null) { + line++; + if (blockSize >= 100) { + blockSize = 0; + logger.info(line + " entries read...."); + } - // Skip Eingangsrechnungen - if (!gegenKonto.startsWith("1")) { - eingangsrechnungen++; - // skip - continue; - } + // alle werte parsen + String[] header1List = dataLine.split(";(?=([^\"]*\"[^\"]*\")*[^\"]*$)", 99); + if (header1List.length < 6) { + throw new PluginException(DatevCargosoftImportAdapter.class.getName(), + DatevImportAdapter.DATEV_IMPORT_ERROR, "Invalid data in line " + line); + } - // Skip Rückstellung - // text darf nicht mit R1 bis R8 beginnen - // ^R[1-8] . - if (text.matches(REGEX_IMPORTTEXTPATTERN)) { - rueckstellungen++; - // skip - continue; - } + String belegNummer = DatevImportAdapter.csvVal(header1List[10]); + String gegenKonto = DatevImportAdapter.csvVal(header1List[7]); + String text = DatevImportAdapter.csvVal(header1List[13]); + String buchungsTag = DatevImportAdapter.csvVal(header1List[9]); + // cargosoft laesst gerne die führende 0 weg.... + if (buchungsTag.length() == 3) { + buchungsTag = "0" + buchungsTag; + } + // berechne Buchungsdatum DDMM + String tag = buchungsTag.substring(0, 2); + String monat = buchungsTag.substring(2, 4); + String jahr = wjBeginn.substring(0, 4); + // compute next year if start of WJ is not January + if (Integer.parseInt(wjBeginnMonat) > Integer.parseInt(monat)) { + jahr = Integer.parseInt(jahr + 1) + ""; + } + Date dateBuchung = dateFormatter.parse(jahr + monat + tag); + // Fälligkeit + Date dueDate = new Date(); + try { + dateFormatter.parse(DatevImportAdapter.csvVal(header1List[23])); + } catch (Exception e) { + dueDate = new Date(); + } - - - positions++; - logger.info("...read dbtr: " + gegenKonto + " beleg-nr: " + belegNummer); + String paymentTerm = DatevImportAdapter.csvVal(header1List[31]); + String waehrung = DatevImportAdapter.csvVal(header1List[2]); - // Erzeuge einen Buchungssatz - ItemCollection dataItemCol = new ItemCollection(); - dataItemCol.setItemValue("datev.text", text); - dataItemCol.setItemValue("datev.umsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[0]))); - dataItemCol.setItemValue("datev.shzeichen", DatevImportAdapter.csvVal(header1List[1])); - dataItemCol.setItemValue("datev.wkz", waehrung); - dataItemCol.setItemValue("datev.kurs", parseBetrag(DatevImportAdapter.csvVal(header1List[3]))); - dataItemCol.setItemValue("datev.basisumsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[4]))); - dataItemCol.setItemValue("datev.konto", DatevImportAdapter.csvVal(header1List[6])); + // kurse + double kurs = parseBetrag(DatevImportAdapter.csvVal(header1List[3])); + double basisumsatz = parseBetrag(DatevImportAdapter.csvVal(header1List[4])); - // Haben wir schon eine Invoice Workitem angelegt? - if (invoiceWorkitem == null) { - logger.info("...create new workitem...."); - // erzeuge ein neues - try { - invoiceWorkitem = createEmptyInvoice(belegNummer, text, gegenKonto, dateBuchung, dueDate, - paymentTerm, waehrung, kurs, basisumsatz); - invoices++; - } catch (AdapterException e) { - dupplicates++; - continue; - } - } + // Skip Eingangsrechnungen + if (!gegenKonto.startsWith("1")) { + eingangsrechnungen++; + // skip + continue; + } - // ist es noch die selbe Belegnummer? - if (belegNummer.equals(invoiceWorkitem.getItemValueString("invoice.number"))) { - // adde die Splitbuchung - splitBuchungen.add(dataItemCol); - logger.info("...add splitbuchung.2..."); - } else { - logger.info("...close workitem...."); + // Skip Rückstellung + // text darf nicht mit R1 bis R8 beginnen + // ^R[1-8] . + if (text.matches(REGEX_IMPORTTEXTPATTERN)) { + rueckstellungen++; + // skip + continue; + } - // nein - also invoice schließen - closeInvoiceWorkitem(invoiceWorkitem, splitBuchungen); - invoiceWorkitem = null; - // neue Splitbuchungstabelle anlegen - splitBuchungen = new ArrayList(); - // invoice zurücksetzten - // erzeuge ein neues - try { - invoiceWorkitem = createEmptyInvoice(belegNummer, text, gegenKonto, dateBuchung, dueDate, - paymentTerm, waehrung, kurs, basisumsatz); - invoices++; - } catch (AdapterException e) { - dupplicates++; - continue; - } - splitBuchungen.add(dataItemCol); - } + positions++; + logger.info("...read dbtr: " + gegenKonto + " beleg-nr: " + belegNummer); - } // wile end - closeInvoiceWorkitem(invoiceWorkitem, splitBuchungen); + // Erzeuge einen Buchungssatz + ItemCollection dataItemCol = new ItemCollection(); + dataItemCol.setItemValue("datev.text", text); + dataItemCol.setItemValue("datev.umsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[0]))); + dataItemCol.setItemValue("datev.shzeichen", DatevImportAdapter.csvVal(header1List[1])); + dataItemCol.setItemValue("datev.wkz", waehrung); + dataItemCol.setItemValue("datev.kurs", parseBetrag(DatevImportAdapter.csvVal(header1List[3]))); + dataItemCol.setItemValue("datev.basisumsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[4]))); + dataItemCol.setItemValue("datev.konto", DatevImportAdapter.csvVal(header1List[6])); - } catch (IOException | ParseException e) { - throw new PluginException(DatevCargosoftImportAdapter.class.getName(), - DatevImportAdapter.DATEV_IMPORT_ERROR, "Unable to read file", e); - } + // Haben wir schon eine Invoice Workitem angelegt? + if (invoiceWorkitem == null) { + logger.info("...create new workitem...."); + // erzeuge ein neues + try { + invoiceWorkitem = createEmptyInvoice(belegNummer, text, gegenKonto, dateBuchung, dueDate, + paymentTerm, waehrung, kurs, basisumsatz); + invoices++; + } catch (AdapterException e) { + dupplicates++; + continue; + } + } - log(logBuffer, line + " Zeilen eingelesen "); - log(logBuffer, positions + " Rechnungspositionen eingelesen "); - log(logBuffer, invoices + " Rechnungen importiert "); - - if (rueckstellungen>0) { - log(logBuffer, rueckstellungen + " Rückstellungen wurden übersprungen."); - } - if (eingangsrechnungen>0) { - log(logBuffer, eingangsrechnungen + " Eingangsrechnungen wurden übersprungen."); - } - - if (dupplicates > 0) { - log(logBuffer, dupplicates + " Rechnungen wurden übersprungen da diese bereits importiert wurden!"); - } + // ist es noch die selbe Belegnummer? + if (belegNummer.equals(invoiceWorkitem.getItemValueString("invoice.number"))) { + // adde die Splitbuchung + splitBuchungen.add(dataItemCol); + logger.info("...add splitbuchung.2..."); + } else { + logger.info("...close workitem...."); - // return log - return logBuffer; + // nein - also invoice schließen + closeInvoiceWorkitem(invoiceWorkitem, splitBuchungen,spaces); + invoiceWorkitem = null; + // neue Splitbuchungstabelle anlegen + splitBuchungen = new ArrayList(); + // invoice zurücksetzten + // erzeuge ein neues + try { + invoiceWorkitem = createEmptyInvoice(belegNummer, text, gegenKonto, dateBuchung, dueDate, + paymentTerm, waehrung, kurs, basisumsatz); + invoices++; + } catch (AdapterException e) { + dupplicates++; + continue; + } + splitBuchungen.add(dataItemCol); + } - } + } // wile end + closeInvoiceWorkitem(invoiceWorkitem, splitBuchungen,spaces); - /** - * This method returns a new empty invoice ItemCollection. - *

- * The method tests if an invoice with this number already exits. If so, the - * method throws a AdapterException - * - * @param belegNummer - * @param text - * @param gegenKonto - * @param dateBuchung - * @param dueDate - * @param paymentTerm - * @param currency - * @param kurs - * @param basisUmsatz - * @return - * @throws AdapterException - */ - private ItemCollection createEmptyInvoice(String belegNummer, String text, String gegenKonto, Date dateBuchung, - Date dueDate, String paymentTerm, String currency, double kurs, double basisUmsatz) - throws AdapterException { + } catch (IOException | ParseException e) { + throw new PluginException(DatevCargosoftImportAdapter.class.getName(), + DatevImportAdapter.DATEV_IMPORT_ERROR, "Unable to read file", e); + } - // test if invoice was already imported before - String sQuery = "((type:workitem OR type:workitemarchive) AND $modelversion:rechnungsausgang* AND invoice.number:\"" - + belegNummer + "\")"; - try { - // find the textblock... - List result = documentService.find(sQuery, 1, 0); - if (result.size() > 0) { - throw new AdapterException(DatevCargosoftImportAdapter.class.getName(), "DUPPLICATE", - "Invoice already imported"); - } - } catch (QueryException e) { - logger.warning("failed to search invoices by query: " + e.getMessage()); - } + log(logBuffer, line + " Zeilen eingelesen "); + log(logBuffer, positions + " Rechnungspositionen eingelesen "); + log(logBuffer, invoices + " Rechnungen importiert "); - ItemCollection invoiceWorkitem = new ItemCollection(); - invoiceWorkitem.setItemValue("invoice.number", belegNummer); - invoiceWorkitem.setItemValue("invoice.currency", currency); - invoiceWorkitem.setItemValue("invoice.text", text); - invoiceWorkitem.setItemValue("invoice.date", dateBuchung); - invoiceWorkitem.setItemValue("dbtr.number", gegenKonto); - invoiceWorkitem.setItemValue("invoice.duedate", dueDate); - invoiceWorkitem.setItemValue("invoice.reminder", dueDate); - invoiceWorkitem.setItemValue("payment.term", paymentTerm); + if (rueckstellungen > 0) { + log(logBuffer, rueckstellungen + " Rückstellungen wurden übersprungen."); + } + if (eingangsrechnungen > 0) { + log(logBuffer, eingangsrechnungen + " Eingangsrechnungen wurden übersprungen."); + } - invoiceWorkitem.setItemValue("invoice.rate", kurs); - invoiceWorkitem.setItemValue("invoice.base.amount", basisUmsatz); + if (dupplicates > 0) { + log(logBuffer, dupplicates + " Rechnungen wurden übersprungen da diese bereits importiert wurden!"); + } - return invoiceWorkitem; - } + // return log + return logBuffer; - private void log(List log, String message) { - log.add(new Date() + ": " + message + "\n"); - } + } - /** - * . entfernen , mit punkt ersetzten - * - * @param value - * @return - */ - public Double parseBetrag(String value) { + /** + * Helper method that loads all expressions from the spaces + * @return List of list of expressions + */ + private Map> loadSpacesConfig() { + Map> result =new HashMap<>(); + // als erstes lesen wir die pos.mappings aus den Spaces ein, auf die dann eine + // Rechnung emapped werden kann. + List spaces_subs = teamService.getSpaces(); + for (ItemCollection stub: spaces_subs) { + // load full workitem + ItemCollection space = documentService.load(stub.getUniqueID()); + if (space!=null) { + result.put(space.getUniqueID(),space.getItemValueList("pos.mapping", String.class)); + } + } + + return result; + } - value = value.replace(".", ""); - value = value.replace(",", "."); + /** + * This method returns a new empty invoice ItemCollection. + *

+ * The method tests if an invoice with this number already exits. If so, the + * method throws a AdapterException + * + * @param belegNummer + * @param text + * @param gegenKonto + * @param dateBuchung + * @param dueDate + * @param paymentTerm + * @param currency + * @param kurs + * @param basisUmsatz + * @return + * @throws AdapterException + */ + private ItemCollection createEmptyInvoice(String belegNummer, String text, String gegenKonto, Date dateBuchung, + Date dueDate, String paymentTerm, String currency, double kurs, double basisUmsatz) + throws AdapterException { - return new Double(value); - } + // test if invoice was already imported before + String sQuery = "((type:workitem OR type:workitemarchive) AND $modelversion:rechnungsausgang* AND invoice.number:\"" + + belegNummer + "\")"; + try { + // find the textblock... + List result = documentService.find(sQuery, 1, 0); + if (result.size() > 0) { + throw new AdapterException(DatevCargosoftImportAdapter.class.getName(), "DUPPLICATE", + "Invoice already imported"); + } + } catch (QueryException e) { + logger.warning("failed to search invoices by query: " + e.getMessage()); + } - /** - * Diese Hilfsmethod schließt das Invoice Workitem ab - * - * @throws ModelException - * @throws PluginException - * @throws ProcessingErrorException - * @throws AccessDeniedException - */ - private void closeInvoiceWorkitem(ItemCollection invoiceWorkitem, List splitBuchungen) - throws AccessDeniedException, ProcessingErrorException, PluginException, ModelException { - if (invoiceWorkitem == null) { - return; // no op - } + ItemCollection invoiceWorkitem = new ItemCollection(); + invoiceWorkitem.setItemValue("invoice.number", belegNummer); + invoiceWorkitem.setItemValue("invoice.currency", currency); + invoiceWorkitem.setItemValue("invoice.text", text); + invoiceWorkitem.setItemValue("invoice.date", dateBuchung); + invoiceWorkitem.setItemValue("dbtr.number", gegenKonto); + invoiceWorkitem.setItemValue("invoice.duedate", dueDate); + invoiceWorkitem.setItemValue("invoice.reminder", dueDate); + invoiceWorkitem.setItemValue("payment.term", paymentTerm); - // berechne Total: - double total = 0; - for (ItemCollection zeile : splitBuchungen) { - if ("H".equals(zeile.getItemValueString("datev.shzeichen"))) { - total = total + zeile.getItemValueDouble("datev.umsatz"); - } else { - total = total - zeile.getItemValueDouble("datev.umsatz"); - } - } + invoiceWorkitem.setItemValue("invoice.rate", kurs); + invoiceWorkitem.setItemValue("invoice.base.amount", basisUmsatz); - invoiceWorkitem.setItemValue("invoice.total", total); - invoiceWorkitem.setItemValue("invoice.saldo", total); - // implode die Splitbuchungen - implodeChildList(invoiceWorkitem, splitBuchungen); + return invoiceWorkitem; + } - // set dbtr.name - ItemCollection dbtrItemCol = kreditorDebitorService - .findDebitor(invoiceWorkitem.getItemValueString("dbtr.number")); - if (dbtrItemCol != null) { - invoiceWorkitem.setItemValue("dbtr.name", dbtrItemCol.getItemValueString("_VENDOR_Name")); - // Anhand der Creditoren Stammdaten errrechnen wir die Sprache für diese - // Rechnung - String country = dbtrItemCol.getItemValueString("_VENDOR_COUNTRY"); - invoiceWorkitem.setItemValue("dbtr.country", country); - if (country.equalsIgnoreCase("de") || country.equalsIgnoreCase("ch") - || country.equalsIgnoreCase("at")) { - invoiceWorkitem.setItemValue("invoice.language", "DE"); - } else { - invoiceWorkitem.setItemValue("invoice.language", "EN"); - } - } + private void log(List log, String message) { + log.add(new Date() + ": " + message + "\n"); + } - // Processe die Invoice - invoiceWorkitem.model("rechnungsausgang-de-1.0").task(5001).event(980); - workflowService.processWorkItem(invoiceWorkitem); + /** + * . entfernen , mit punkt ersetzten + * + * @param value + * @return + */ + public Double parseBetrag(String value) { - } + value = value.replace(".", ""); + value = value.replace(",", "."); - /** - * Convert the List of ItemCollections back into a List of Map elements - * - * @param workitem - */ - @SuppressWarnings({ "rawtypes" }) - private void implodeChildList(ItemCollection workitem, List childItems) { - List mapOrderItems = new ArrayList(); - // convert the child ItemCollection elements into a List of Map - if (childItems != null) { - logger.fine("Convert child items into Map..."); - // iterate over all order items.. - for (ItemCollection orderItem : childItems) { - mapOrderItems.add(orderItem.getAllItems()); - } - workitem.replaceItemValue(CHILD_ITEM_PROPERTY, mapOrderItems); - } - } + return new Double(value); + } + + /** + * Diese Hilfsmethod schließt das Invoice Workitem ab + * + * @throws ModelException + * @throws PluginException + * @throws ProcessingErrorException + * @throws AccessDeniedException + */ + private void closeInvoiceWorkitem(ItemCollection invoiceWorkitem, List splitBuchungen, + Map> expressionsMap) + throws AccessDeniedException, ProcessingErrorException, PluginException, ModelException { + if (invoiceWorkitem == null) { + return; // no op + } + + // berechne Total: + double total = 0; + for (ItemCollection zeile : splitBuchungen) { + if ("H".equals(zeile.getItemValueString("datev.shzeichen"))) { + total = total + zeile.getItemValueDouble("datev.umsatz"); + } else { + total = total - zeile.getItemValueDouble("datev.umsatz"); + } + } + + invoiceWorkitem.setItemValue("invoice.total", total); + invoiceWorkitem.setItemValue("invoice.saldo", total); + // implode die Splitbuchungen + implodeChildList(invoiceWorkitem, splitBuchungen); + + // set dbtr.name + ItemCollection dbtrItemCol = kreditorDebitorService + .findDebitor(invoiceWorkitem.getItemValueString("dbtr.number")); + if (dbtrItemCol != null) { + invoiceWorkitem.setItemValue("dbtr.name", dbtrItemCol.getItemValueString("_VENDOR_Name")); + // Anhand der Creditoren Stammdaten errrechnen wir die Sprache für diese + // Rechnung + String country = dbtrItemCol.getItemValueString("_VENDOR_COUNTRY"); + invoiceWorkitem.setItemValue("dbtr.country", country); + if (country.equalsIgnoreCase("de") || country.equalsIgnoreCase("ch") || country.equalsIgnoreCase("at")) { + invoiceWorkitem.setItemValue("invoice.language", "DE"); + } else { + invoiceWorkitem.setItemValue("invoice.language", "EN"); + } + } + + // Jezt noch das Space mapping + // dazu kucken wir in alle spaces den config wert 'pos.mapping' + String text = invoiceWorkitem.getItemValueString("invoice.text"); + if (!text.isEmpty()) { + for (Map.Entry > entry : expressionsMap.entrySet()) { + List expressionsList=entry.getValue(); + for (String expr : expressionsList) { + + Pattern p = Pattern.compile(expr); + Matcher m = p.matcher(text); + if (m.find()) { + // we have a match + invoiceWorkitem.setItemValue("space.ref", entry.getKey()); + break; + } + } + } + } + // Processe die Invoice + invoiceWorkitem.model("rechnungsausgang-de-1.0").task(5001).event(980); + workflowService.processWorkItem(invoiceWorkitem); + + } + + /** + * Convert the List of ItemCollections back into a List of Map elements + * + * @param workitem + */ + @SuppressWarnings({ "rawtypes" }) + private void implodeChildList(ItemCollection workitem, List childItems) { + List mapOrderItems = new ArrayList(); + // convert the child ItemCollection elements into a List of Map + if (childItems != null) { + logger.fine("Convert child items into Map..."); + // iterate over all order items.. + for (ItemCollection orderItem : childItems) { + mapOrderItems.add(orderItem.getAllItems()); + } + workitem.replaceItemValue(CHILD_ITEM_PROPERTY, mapOrderItems); + } + } } \ No newline at end of file diff --git a/office-alexander-logistics-app/src/main/java/com/alexanderlogistics/mahnlauf/MahnlaufExecuteAdapter.java b/office-alexander-logistics-app/src/main/java/com/alexanderlogistics/mahnlauf/MahnlaufExecuteAdapter.java index 2483f94..327344d 100644 --- a/office-alexander-logistics-app/src/main/java/com/alexanderlogistics/mahnlauf/MahnlaufExecuteAdapter.java +++ b/office-alexander-logistics-app/src/main/java/com/alexanderlogistics/mahnlauf/MahnlaufExecuteAdapter.java @@ -82,6 +82,7 @@ public class MahnlaufExecuteAdapter implements SignalAdapter { double saldo = 0; + int dunningLevel=0; String currency = ""; for (String uniqueId : refList) { ItemCollection invoice = workflowService.getWorkItem(uniqueId); @@ -112,6 +113,22 @@ public class MahnlaufExecuteAdapter implements SignalAdapter { mahnlaufService.processInvoice(invoice.event(MahnlaufService.EVENT_MAHNLAUF_EXECUTE)); } + + switch (invoice.getTaskID()) { + case 5200: + dunningLevel=1; + break; + case 5210: + dunningLevel=2; + break; + case 5220: + dunningLevel=3; + break; + default: + dunningLevel=1; + break; + } + // create a workitem stub for the mail message ItemCollection invoiceStub = new ItemCollection(); @@ -142,7 +159,26 @@ public class MahnlaufExecuteAdapter implements SignalAdapter { mahnLaufWorkitem.setItemValue("dunning.details", invoiceList); mahnLaufWorkitem.setItemValue("dunning.saldo", saldo); mahnLaufWorkitem.setItemValue("dunning.currency", currency); + mahnLaufWorkitem.setItemValue("dunning.level", dunningLevel); + + // compute subject + switch (dunningLevel) { + case 2: + mahnLaufWorkitem.setItemValue("mail.subject_de", "2. MAHNUNG"); + mahnLaufWorkitem.setItemValue("mail.subject_en", "2. REMINDER"); + break; + case 3: + mahnLaufWorkitem.setItemValue("mail.subject_de", "LETZTE AUSSERGERICHTLICHE MAHNUNG"); + mahnLaufWorkitem.setItemValue("mail.subject_en", "LAST REMINDER"); + break; + default: + mahnLaufWorkitem.setItemValue("mail.subject_de", "1. MAHNUNG"); + mahnLaufWorkitem.setItemValue("mail.subject_en", "1. REMINDER"); + break; + } + + return mahnLaufWorkitem; } diff --git a/office-alexander-logistics-app/src/main/resources/bundle/custom_de.properties b/office-alexander-logistics-app/src/main/resources/bundle/custom_de.properties index f9cd939..20a7a92 100644 --- a/office-alexander-logistics-app/src/main/resources/bundle/custom_de.properties +++ b/office-alexander-logistics-app/src/main/resources/bundle/custom_de.properties @@ -9,7 +9,8 @@ alexander_sub_positionen= alexander_sub_positionen_read= alexander_sub_responsible= - +space.sub_custom=Konfiguration +space.help_custom=Bitte verwenden Sie hier Reguläre Ausdrücke wie z.B. /\bEX-SAL\b/ Dieser Ausdruck sucht nach dem Wert "EX-SAL" in einem String und achtet darauf, dass es nicht Teil eines größeren Ausdrucks ist (z.B. "EX-SALES"). ERROR_INVALID_IBANBIC=Die Eingabe der IBAN/BIC is ungültig. Bitte überprüfen Sie Ihre Eingaben. \ No newline at end of file diff --git a/office-alexander-logistics-app/src/main/resources/bundle/custom_en.properties b/office-alexander-logistics-app/src/main/resources/bundle/custom_en.properties index 61cc887..63f8eed 100644 --- a/office-alexander-logistics-app/src/main/resources/bundle/custom_en.properties +++ b/office-alexander-logistics-app/src/main/resources/bundle/custom_en.properties @@ -9,7 +9,7 @@ alexander_sub_positionen= alexander_sub_positionen_read= alexander_sub_responsible= - +space.sub_custom=Konfiguration ERROR_INVALID_IBANBIC=Your input of the IBAN/BIC is invalid. Please check your data. diff --git a/office-alexander-logistics-app/src/main/webapp/pages/admin/sub_space_custom.xhtml b/office-alexander-logistics-app/src/main/webapp/pages/admin/sub_space_custom.xhtml new file mode 100644 index 0000000..f9988ee --- /dev/null +++ b/office-alexander-logistics-app/src/main/webapp/pages/admin/sub_space_custom.xhtml @@ -0,0 +1,38 @@ + + + + + +

+ +
+ + +
+
+ Positionskennzeichen +
+
+ +
+
+ +
+ +
+ + + + + + + + + diff --git a/office-alexander-logistics-app/src/test/java/com/alexanderlogistics/TestFormat.java b/office-alexander-logistics-app/src/test/java/com/alexanderlogistics/TestFormat.java index 696ce87..e959958 100644 --- a/office-alexander-logistics-app/src/test/java/com/alexanderlogistics/TestFormat.java +++ b/office-alexander-logistics-app/src/test/java/com/alexanderlogistics/TestFormat.java @@ -4,10 +4,14 @@ import java.text.DateFormat; import java.text.DecimalFormat; import java.text.SimpleDateFormat; import java.util.logging.Logger; +import java.util.regex.Matcher; +import java.util.regex.Pattern; import org.junit.Before; import org.junit.Test; +import junit.framework.Assert; + /** * This test generates random test data * @@ -46,5 +50,26 @@ public class TestFormat { kurs = 0; logger.info(rateFormat.format(kurs)); } + + + @Test + public void testRegex() { + String text="RG-EX-SAL-2211-036"; + String expr="\\bEX-SAL"; + + Pattern p = Pattern.compile(expr); + + p = Pattern.compile(expr); + + Matcher m = p.matcher(text); + if (m.find()) { + System.out.println("Ich bin ein Held"); + } + + + + + + } } diff --git a/office-alexander-logistics-app/src/test/resources/datev/EXTF_202206_202207210604_1125.csv b/office-alexander-logistics-app/src/test/resources/datev/EXTF_202206_202207210604_1125.csv index 4fa5937..34a44e0 100644 --- a/office-alexander-logistics-app/src/test/resources/datev/EXTF_202206_202207210604_1125.csv +++ b/office-alexander-logistics-app/src/test/resources/datev/EXTF_202206_202207210604_1125.csv @@ -1,321 +1,3 @@ "EXTF";"510";21;"Buchungsstapel";7;"20220721060421653";"";"CS";"cargoservice";"";"";"";"20220101";"4";"20220601";"20220630";"202206ALL";"CS";"";"";0;"EUR";"";"";"";"";"";"";"";"";"" -Umsatz (ohne Soll-/Haben-Kennzeichen);Soll-Haben-Kennzeichen;WKZ Umsatz;Kurs;Basisumsatz;WKZ Basisumsatz;Konto;Gegenkonto;BU-Schlüssel;Belegdatum;Belegfeld 1;Belegfeld 2;Skonto;Buchungstext;Postensperre;Diverse Adressnummer;Geschäftspartnerbank;Sachverhalt;Zinssperre;Beleglink;Beleginfo-Art 1;Beleginfo-Inhalt 1;Beleginfo-Art 2;Beleginfo-Inhalt 2;Beleginfo-Art 3;Beleginfo-Inhalt 3;Beleginfo-Art 4;Beleginfo-Inhalt 4;Beleginfo-Art 5;Beleginfo-Inhalt 5;Beleginfo-Art 6;Beleginfo-Inhalt 6;Beleginfo-Art 7;Beleginfo-Inhalt 7;Beleginfo-Art 8;Beleginfo-Inhalt 8;KOST1-Kostenstelle;KOST2-Kostenstelle;KOST-Menge;EU-Mitgliedstaatu. USt-IdNr.;EU-Steuersatz;Abw. Versteuerungsart;Sachverhalt L+L;Funktionsergänzung L+L;BU 49 Hauptfunktionstyp;BU 49 Hauptfunktionsnummer;BU 49 Funktionsergänzung;Zusatzinformation-Art 1;Zusatzinformation-Inhalt 1;Zusatzinformation-Art 2;Zusatzinformation-Inhalt 2;Zusatzinformation-Art 3;Zusatzinformation-Inhalt 3;Zusatzinformation-Art 4;Zusatzinformation-Inhalt 4;Zusatzinformation-Art 5;Zusatzinformation-Inhalt 5;Zusatzinformation-Art 6;Zusatzinformation-Inhalt 6;Zusatzinformation-Art 7;Zusatzinformation-Inhalt 7;Zusatzinformation-Art 8;Zusatzinformation-Inhalt 8;Zusatzinformation-Art 9;Zusatzinformation-Inhalt 9;Zusatzinformation-Art 10;Zusatzinformation-Inhalt 10;Zusatzinformation-Art 11;Zusatzinformation-Inhalt 11;Zusatzinformation-Art 12;Zusatzinformation-Inhalt 12;Zusatzinformation-Art 13;Zusatzinformation-Inhalt 13;Zusatzinformation-Art 14;Zusatzinformation-Inhalt 14;Zusatzinformation-Art 15;Zusatzinformation-Inhalt 15;Zusatzinformation-Art 16;Zusatzinformation-Inhalt 16;Zusatzinformation-Art 17;Zusatzinformation-Inhalt 17;Zusatzinformation-Art 18;Zusatzinformation-Inhalt 18;Zusatzinformation-Art 19;Zusatzinformation-Inhalt 19;Zusatzinformation-Art 20;Zusatzinformation-Inhalt 20;Stück;Gewicht;Zahlweise;Forderungsart;Veranlagungsjahr;Zugeordnete Fälligkeit;Skontotyp;Auftragsnummer;Buchungstyp;USt-Schlüssel (Anzahlungen);EU-Mitgliedstaat (Anzahlungen);Sachverhalt L+L (Anzahlungen);EU-Steuersatz (Anzahlungen);Erlöskonto (Anzahlungen);Herkunft-Kz;Leerfeld;KOST-Datum;SEPAMandatsreferenz;Skontosperre;Gesellschaftername;Beteiligtennummer;Identifikationsnummer;Zeichnernummer;Postensperre bis;Bezeichnung SoBil-Sachverhalt;Kennzeichen SoBil-Buchung;Festschreibung;Leistungsdatum;Datum Zuord. Steuerperiode -1359,96;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177348";"";"";"G LA-HOL-2204-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1399,27;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177350";"";"";"G LA-HOL-2206-018";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3732,36;"S";"EUR";0,000000;0,00;"";"8011";"13342";"";"2007";"177369";"";"";"G IM-GCA-2206-006";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE250152875";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -910,33;"S";"EUR";0,000000;0,00;"";"8011";"13342";"";"2007";"177377";"";"";"G IM-GCA-2206-009";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE250152875";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -353,77;"S";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"177416";"";"";"G LA-ZEL-2206-078";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -376,44;"S";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"177417";"";"";"G IM-ZEL-2206-288";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -47,60;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"0106";"202202537";"";"";"LG LA-ZEL-2204-068";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -47,60;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"0106";"202202538";"";"";"LG LA-ZEL-2204-069";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -47,60;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"0106";"202202539";"";"";"LG LA-ZEL-2204-070";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -650,00;"S";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"LR IM-GCA-2206-102";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -700,00;"S";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"LR IM-GCA-2206-140";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -228,00;"S";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"LR IM-GCA-2206-168";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -471,24;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"3006";"202202387";"";"";"LR LA-ZEL-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -763,77;"S";"EUR";0,000000;0,00;"";"3231";"70153";"";"1106";"5225479709";"";"";"LR IM-GCA-2205-189";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -720,00;"S";"EUR";0,000000;0,00;"";"3231";"70280";"";"0106";"5132044926";"";"";"LR IM-GCA-2204-135";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1094,80;"S";"EUR";0,000000;0,00;"";"3407";"71401";"";"0106";"554343";"";"";"LR IM-ZEL-2110-275";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -75,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"0106";"DEIM3326913";"";"";"LR LA-ZEL-2205-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -75,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"0806";"DEIM3359248";"";"";"LR LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -75,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"0806";"DEIM3359246";"";"";"LR LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -600,00;"S";"EUR";0,000000;0,00;"";"3211";"70191";"";"1406";"22133409";"";"";"LR LA-ZEL-2206-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -762,00;"S";"EUR";0,000000;0,00;"";"3211";"70191";"";"1506";"22134422";"";"";"LR LA-ZEL-2206-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -100,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"1606";"DEIM3371383";"";"";"LR LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -120,48;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381079";"";"";"LR LA-ZEL-2205-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1000,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381133";"";"";"LR LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -892,50;"S";"EUR";0,000000;0,00;"";"3407";"71401";"";"2206";"554827";"";"";"LR IM-ZEL-2206-153";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1606,50;"S";"EUR";0,000000;0,00;"";"3407";"71401";"";"2206";"554836";"";"";"LR IM-ZEL-2205-250";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -28,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381968";"";"";"LR IM-PAP-2206-014";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -6022,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381957";"";"";"LR IM-PAP-2205-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -100,72;"S";"EUR";0,000000;0,00;"";"3407";"71207";"";"2906";"22117007";"";"";"LR LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3000,00;"S";"EUR";0,000000;0,00;"";"3217";"74048";"";"3006";"CP.2022-956";"";"";"LR LA-ZEL-2204-120";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0656752950";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -672,77;"S";"EUR";0,000000;0,00;"";"3217";"74048";"";"3006";"CP.2022-956";"";"";"LR LA-ZEL-2204-122";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0656752950";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -500,00;"S";"EUR";0,000000;0,00;"";"3217";"74048";"";"3006";"CP.2022-956";"";"";"LR LA-ZEL-2204-119";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0656752950";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -2748,90;"S";"EUR";0,000000;0,00;"";"3407";"77459";"";"0407";"4000191";"";"";"LR LA-HOL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1350,00;"S";"EUR";0,000000;0,00;"";"3217";"74965";"";"2206";"776/06/FV/ULT/2022";"";"";"LR IM-PAP-2206-326";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1300,00;"S";"EUR";0,000000;0,00;"";"3217";"74965";"";"1706";"579/06/FV/ULT/2022";"";"";"LR IM-PAP-2206-154";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -930,00;"S";"EUR";0,000000;0,00;"";"3217";"75937";"";"0407";"FV019/07/2022/WAW";"";"";"LR IM-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL5272862830";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -151,08;"S";"EUR";0,000000;0,00;"";"3407";"71207";"";"0407";"22117590";"";"";"LR LA-ZEL-2206-063";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2106";"001040/221";"";"";"LR IM-ZEL-2206-257";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1406";"001041/221";"";"";"LR IM-ZEL-2206-079";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2406";"001042/221";"";"";"LR IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2206";"001043/221";"";"";"LR IM-ZEL-2206-259";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1506";"001044/221";"";"";"LR IM-ZEL-2206-169";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1306";"001045/221";"";"";"LR IM-ZEL-2206-076";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1606";"001047/221";"";"";"LR IM-ZEL-2206-164";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2106";"001046/221";"";"";"LR IM-ZEL-2206-258";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -950,00;"S";"EUR";0,000000;0,00;"";"3217";"73845";"";"0407";"2022-07/9";"";"";"LR IM-ZEL-2206-311";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9281841410";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3230,00;"S";"EUR";0,000000;0,00;"";"3217";"70153";"";"0106";"5225334733";"";"";"LR IM-PAP-2203-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -766,02;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"2506";"5225511552";"";"";"LR LA-PAP-2205-017";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1252,00;"S";"EUR";0,000000;0,00;"";"3217";"70153";"";"2406";"5225510101";"";"";"LR IM-PAP-2204-141";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1100,00;"S";"EUR";0,000000;0,00;"";"3217";"77505";"";"2406";"2022/06/69";"";"";"LR IM-ZEL-2206-280";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"7811892042";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -32,00;"S";"EUR";0,000000;0,00;"";"3217";"74954";"";"0507";"145340";"";"";"LR IM-ZEL-2204-174";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL005408179B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -870,00;"S";"EUR";0,000000;0,00;"";"3217";"77401";"";"0106";"F/FS/0984/04/2022";"";"";"LR IM-ZEL-2204-177";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9291794907";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -48,00;"S";"EUR";0,000000;0,00;"";"3217";"71692";"";"2406";"DEIM3385952+";"";"";"LR LA-ZEL-2206-085";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -69450,15;"S";"EUR";0,000000;0,00;"";"3406";"70897";"";"0807";"22015392";"";"";"LR EX-SAL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE812119489";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -117,81;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1107";"202202547";"";"";"LR LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -353,43;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1107";"202202548";"";"";"LR LA-ZEL-2206-091";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -942,48;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1207";"202202596";"";"";"LR LA-ZEL-2206-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -300,00;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"2106";"5225501034";"";"";"LR LA-PAP-2206-028";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -75,00;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"2106";"5225501041";"";"";"LR LA-PAP-2206-028";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -161,46;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"1806";"5225495304";"";"";"LR LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -5200,00;"S";"EUR";0,000000;0,00;"";"3210";"70153";"";"1407";"5225561489";"";"";"LR EX-SAL-2206-105";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1531,53;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202652";"";"";"LR LA-ZEL-2206-047";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1413,72;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202654";"";"";"LR LA-ZEL-2206-053";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -471,24;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202677";"";"";"LR LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -117,81;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202681";"";"";"LR LA-ZEL-2207-025";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -195,48;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177344";"";"";"R LA-ZEL-2205-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -4966,20;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177345";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -405,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177346";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -75,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177347";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1574,60;"H";"EUR";0,000000;0,00;"";"8011";"11773";"";"2007";"177349";"";"";"R IM-GCA-2206-156";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -101,15;"H";"EUR";0,000000;0,00;"";"8407";"11773";"";"2007";"177349";"";"";"R IM-GCA-2206-156";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -2759,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177351";"";"";"R LA-ZEL-2205-052";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -90,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177352";"";"";"R LA-ZEL-2205-052";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -2207,20;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177353";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -180,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177354";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -123,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177355";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -4609,20;"H";"EUR";0,000000;0,00;"";"8011";"11773";"";"2007";"177356";"";"";"R IM-GCA-2206-157";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -303,45;"H";"EUR";0,000000;0,00;"";"8407";"11773";"";"2007";"177356";"";"";"R IM-GCA-2206-157";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -4414,40;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177357";"";"";"R LA-ZEL-2205-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -90,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177358";"";"";"R LA-ZEL-2205-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3340,20;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177359";"";"";"R LA-ZEL-2206-043";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -180,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177360";"";"";"R LA-ZEL-2206-043";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1730,25;"H";"EUR";0,000000;0,00;"";"8011";"11773";"";"2007";"177362";"";"";"R IM-GCA-2206-158";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -53,55;"H";"EUR";0,000000;0,00;"";"8407";"11773";"";"2007";"177362";"";"";"R IM-GCA-2206-158";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -6124,41;"H";"EUR";0,000000;0,00;"";"8011";"15907";"";"2007";"177363";"";"";"R IM-GCA-2206-005";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE324028205";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -95,00;"H";"EUR";0,000000;0,00;"";"8336";"17369";"";"2007";"177364";"";"";"R IM-ZEL-2206-347";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ25411411";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -95,00;"H";"EUR";0,000000;0,00;"";"8336";"17369";"";"2007";"177365";"";"";"R IM-ZEL-2206-255";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ25411411";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -67508,72;"H";"EUR";0,000000;0,00;"";"8010";"12799";"";"2007";"177366";"";"";"R EX-SAL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -5016,00;"H";"USD";1,030000;4869,90;"EUR";"8010";"13374";"";"2007";"177367";"";"";"R EX-SAL-2206-134";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -2868,00;"H";"EUR";0,000000;0,00;"";"8011";"12030";"";"2007";"177368";"";"";"R IM-GCA-2206-216";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1432,78;"H";"EUR";0,000000;0,00;"";"8010";"13374";"";"2007";"177370";"";"";"R EX-SAL-2206-134";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -10032,00;"H";"USD";1,030000;9739,81;"EUR";"8010";"13374";"";"2007";"177371";"";"";"R EX-SAL-2206-125";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -2716,99;"H";"EUR";0,000000;0,00;"";"8010";"13374";"";"2007";"177372";"";"";"R EX-SAL-2206-125";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -5016,00;"H";"USD";1,030000;4869,90;"EUR";"8010";"13374";"";"2007";"177373";"";"";"R EX-SAL-2206-133";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1553,00;"H";"EUR";0,000000;0,00;"";"8011";"12030";"";"2007";"177374";"";"";"R IM-GCA-2206-208";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1329,24;"H";"EUR";0,000000;0,00;"";"8010";"13374";"";"2007";"177375";"";"";"R EX-SAL-2206-133";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -855,00;"H";"EUR";0,000000;0,00;"";"8336";"17369";"";"2007";"177376";"";"";"R IM-ZEL-2206-372";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ25411411";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -65,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177378";"";"";"R IM-ZEL-2206-189";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -243,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177379";"";"";"R IM-ZEL-2206-184";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -86,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177380";"";"";"R IM-ZEL-2206-202";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -143,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177381";"";"";"R IM-ZEL-2206-197";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -143,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177382";"";"";"R IM-ZEL-2206-198";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -110,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177383";"";"";"R IM-ZEL-2206-195";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -240,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177384";"";"";"R IM-ZEL-2205-254";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -345,50;"H";"EUR";0,000000;0,00;"";"8011";"17513";"";"2007";"177385";"";"";"R IM-GCA-2206-230";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"LV40103114438";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1161,96;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177386";"";"";"R IM-ZEL-2206-278";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -100,00;"H";"EUR";0,000000;0,00;"";"8011";"12584";"";"2007";"177387";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1161,96;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177388";"";"";"R IM-ZEL-2206-317";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1161,96;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177389";"";"";"R IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -5574,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177390";"";"";"R LA-ZEL-2206-018";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -9720,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177391";"";"";"R LA-ZEL-2205-091";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -551,80;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177392";"";"";"R LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -65,00;"H";"EUR";0,000000;0,00;"";"8011";"14873";"";"2007";"177393";"";"";"R IM-GCA-2206-152";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1000,00;"H";"EUR";0,000000;0,00;"";"8011";"12584";"";"2007";"177394";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -40,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177395";"";"";"R LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -670,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177396";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -556,70;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177397";"";"";"R LA-ZEL-2206-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -90,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177398";"";"";"R LA-ZEL-2206-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -331,86;"H";"EUR";0,000000;0,00;"";"8407";"10073";"";"2007";"177399";"";"";"R LA-ZEL-2201-053";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE811778973";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -305,44;"H";"EUR";0,000000;0,00;"";"8407";"10073";"";"2007";"177400";"";"";"R LA-ZEL-2203-013";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE811778973";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -13214,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177403";"";"";"R LA-ZEL-2206-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -5039,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177404";"";"";"R LA-ZEL-2206-058";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1393,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177405";"";"";"R LA-ZEL-2206-050";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -977,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177406";"";"";"R LA-ZEL-2206-051";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -6236,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177407";"";"";"R LA-ZEL-2206-085";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1858,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177408";"";"";"R LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -4693,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177409";"";"";"R LA-ZEL-2206-049";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -2787,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177410";"";"";"R LA-ZEL-2206-088";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -161,46;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"177413";"";"";"R LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -4180,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177418";"";"";"R LA-ZEL-2206-059";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -7563,39;"H";"EUR";0,000000;0,00;"";"3850";"16979";"";"2007";"177419";"";"";"R LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -22333,88;"H";"EUR";0,000000;0,00;"";"3851";"16979";"";"2007";"177419";"";"";"R LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1345,38;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177419";"";"";"R LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -2787,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177420";"";"";"R LA-ZEL-2206-086";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -240,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177421";"";"";"R LA-ZEL-2205-058";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1800,00;"H";"USD";1,053430;1708,70;"EUR";"8010";"14169";"";"2007";"177424";"";"";"R EX-SAL-2205-161";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE815760766";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -7762,98;"H";"EUR";0,000000;0,00;"";"3850";"16979";"";"2007";"177426";"";"";"R LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -22959,17;"H";"EUR";0,000000;0,00;"";"3851";"16979";"";"2007";"177426";"";"";"R LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1382,50;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177426";"";"";"R LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3264,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177427";"";"";"R LA-ZEL-2205-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -150,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177428";"";"";"R LA-ZEL-2206-004";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -7330,09;"H";"EUR";0,000000;0,00;"";"3850";"16979";"";"2007";"177429";"";"";"R LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -21656,32;"H";"EUR";0,000000;0,00;"";"3851";"16979";"";"2007";"177429";"";"";"R LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1304,39;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177429";"";"";"R LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3431,86;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177430";"";"";"R LA-ZEL-2206-014";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -886,31;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177431";"";"";"R LA-ZEL-2206-038";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -2295,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177432";"";"";"R LA-ZEL-2206-039";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -48,00;"H";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"177433";"";"";"R LA-ZEL-2206-078";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -38,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177434";"";"";"R LA-ZEL-2205-068";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -900,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177436";"";"";"R LA-ZEL-2205-089";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1875,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177437";"";"";"R LA-ZEL-2205-090";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3693,97;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177442";"";"";"R LA-ZEL-2204-120";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1130,92;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177443";"";"";"R LA-ZEL-2204-122";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -845,88;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177445";"";"";"R LA-ZEL-2204-119";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -484,68;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177446";"";"";"R LA-ZEL-2204-121";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -729,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177447";"";"";"R LA-ZEL-2204-117";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3370,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177448";"";"";"R LA-ZEL-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -464,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177449";"";"";"R LA-ZEL-2206-082";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -4212,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177450";"";"";"R LA-ZEL-2206-070";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -407,76;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177451";"";"";"R LA-ZEL-2204-118";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -23857,60;"H";"EUR";0,000000;0,00;"";"8010";"17403";"";"2007";"177452";"";"";"R EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE120310716";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -300,00;"H";"EUR";0,000000;0,00;"";"8010";"17403";"";"2007";"177453";"";"";"R EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE120310716";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1362,00;"H";"EUR";0,000000;0,00;"";"8011";"10319";"";"2007";"177454";"";"";"R LA-ZEL-2206-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE812785308";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -6098,00;"H";"EUR";0,000000;0,00;"";"8011";"12030";"";"2007";"177455";"";"";"R IM-GCA-2206-166";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1950,00;"S";"EUR";0,000000;0,00;"";"3206";"71992";"";"2007";"118847";"";"";"R1 IM-GCA-2206-216";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ40763811";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -65,00;"S";"EUR";0,000000;0,00;"";"3207";"70783";"";"2007";"118848";"";"";"R1 EX-SAL-2206-133";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1000,00;"S";"EUR";0,000000;0,00;"";"3206";"76626";"";"2007";"118849";"";"";"R1 IM-ZEL-2206-278";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ28858646";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -950,00;"S";"EUR";0,000000;0,00;"";"3206";"74808";"";"2007";"118850";"";"";"R1 IM-ZEL-2206-317";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ7903253105";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -852,00;"S";"EUR";0,000000;0,00;"";"3206";"72752";"";"2007";"118851";"";"";"R1 IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -70,00;"S";"EUR";0,000000;0,00;"";"8001";"12030";"";"2007";"118852";"";"";"R1 IM-GCA-2206-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -70,00;"S";"EUR";0,000000;0,00;"";"8001";"12030";"";"2007";"118853";"";"";"R1 DTHC";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -825,00;"S";"EUR";0,000000;0,00;"";"3206";"74170";"";"2007";"118855";"";"";"R1 NL ai";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -99,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118856";"";"";"R1 LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -84,64;"S";"EUR";0,000000;0,00;"";"3211";"71207";"";"2007";"118857";"";"";"R1 LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -99,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118859";"";"";"R1 LA-ZEL-2206-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -792,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118869";"";"";"R1 LA-ZEL-2206-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -396,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118870";"";"";"R1 LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1345,38;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118875";"";"";"R1 LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -575,00;"S";"EUR";0,000000;0,00;"";"3211";"71207";"";"2007";"118882";"";"";"R1 LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -675,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118883";"";"";"R1 LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1382,58;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118884";"";"";"R1 LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1304,39;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118885";"";"";"R1 LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -55815,86;"S";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118894";"";"";"R1 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -22898,78;"S";"EUR";0,000000;0,00;"";"3207";"76268";"";"2007";"118895";"";"";"R1 Verzollung + Zoll/Eust";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"811588998";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -32917,08;"S";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118896";"";"";"R1 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -446,40;"S";"EUR";0,000000;0,00;"";"3207";"76342";"";"2007";"118897";"";"";"R1 NL + DZ / 2 Ctr";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -32693,88;"S";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118898";"";"";"R1 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -302,00;"H";"EUR";0,000000;0,00;"";"3206";"70176";"";"2007";"113277";"";"";"R2 IM-GCA-2206-006";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE306837954";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -112,00;"H";"EUR";0,000000;0,00;"";"3206";"70176";"";"2007";"114116";"";"";"R2 IM-GCA-2206-009";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE306837954";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -85,00;"H";"EUR";0,000000;0,00;"";"3206";"70783";"";"2007";"114941";"";"";"R2 IM-GCA-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -460,00;"H";"EUR";0,000000;0,00;"";"3206";"71992";"";"2007";"116411";"";"";"R2 IM-GCA-2206-166";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ40763811";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -43,31;"H";"EUR";0,000000;0,00;"";"8001";"15979";"";"2007";"116593";"";"";"R2 IM-GCA-2206-095";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE124323806";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -14,46;"H";"EUR";0,000000;0,00;"";"8001";"16011";"";"2007";"116594";"";"";"R2 IM-GCA-2206-095";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE315607319";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -5,72;"H";"EUR";0,000000;0,00;"";"8001";"16011";"";"2007";"117160";"";"";"R2 IM-GCA-2206-142";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE315607319";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -185,85;"H";"EUR";0,000000;0,00;"";"8001";"16011";"";"2007";"117279";"";"";"R2 IM-GCA-2206-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE315607319";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -107,22;"H";"EUR";0,000000;0,00;"";"8001";"16093";"";"2007";"117280";"";"";"R2 IM-GCA-2206-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE198939997";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -376,44;"H";"EUR";0,000000;0,00;"";"3206";"70447";"";"2007";"117824";"";"";"R2 IM-ZEL-2206-288";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -72,00;"H";"EUR";0,000000;0,00;"";"3206";"70289";"";"2007";"117857";"";"";"R2 IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -791,85;"H";"EUR";0,000000;0,00;"";"3206";"74170";"";"2007";"117938";"";"";"R2 IM-GCA-2206-204";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -90,00;"H";"EUR";0,000000;0,00;"";"3206";"70783";"";"2007";"118265";"";"";"R2 IM-GCA-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -75,00;"H";"EUR";0,000000;0,00;"";"3206";"70280";"";"2007";"118608";"";"";"R2 IM-GCA-2206-030";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -223,20;"H";"EUR";0,000000;0,00;"";"3207";"76342";"";"2007";"118646";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -31658,26;"H";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118686";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -70,00;"H";"EUR";0,000000;0,00;"";"8001";"12030";"";"2007";"118853";"";"";"R2 IM-GCA-2206-101";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -55815,86;"H";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118894";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -32917,08;"H";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118896";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1000,00;"H";"USD";1,098500;910,33;"EUR";"8001";"13342";"";"2007";"114118";"";"";"R3 IM-GCA-2206-009";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE250152875";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3230,00;"H";"EUR";0,000000;0,00;"";"3206";"70153";"";"0106";"114210";"";"";"R3 IM-PAP-2203-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1108,00;"H";"EUR";0,000000;0,00;"";"3206";"70153";"";"2406";"114933";"";"";"R3 IM-PAP-2204-141";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -32,00;"H";"EUR";0,000000;0,00;"";"3206";"74954";"";"0507";"115545";"";"";"R3 IM-ZEL-2204-174";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL005408179B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -850,00;"H";"EUR";0,000000;0,00;"";"3206";"71399";"";"0106";"116794";"";"";"R3 IM-GCA-2205-182";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE147839881";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1225,00;"H";"EUR";0,000000;0,00;"";"3206";"71399";"";"0206";"116794";"";"";"R3 IM-GCA-2205-182";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE147839881";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1350,00;"H";"EUR";0,000000;0,00;"";"3206";"71401";"";"2206";"117181";"";"";"R3 IM-ZEL-2205-250";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -930,00;"H";"EUR";0,000000;0,00;"";"3206";"75937";"";"0407";"117259";"";"";"R3 IM-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL5272862830";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"1306";"117264";"";"";"R3 IM-ZEL-2206-076";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -950,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"1506";"117308";"";"";"R3 IM-ZEL-2206-169";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"1606";"117313";"";"";"R3 IM-ZEL-2206-164";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -353,77;"H";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"117754";"";"";"R3 LA-ZEL-2206-078";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -190,00;"H";"EUR";0,000000;0,00;"";"3207";"74800";"";"3006";"117947";"";"";"R3 EX-LUF-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE811228786";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -950,00;"H";"EUR";0,000000;0,00;"";"3206";"73845";"";"0407";"117991";"";"";"R3 IM-ZEL-2206-311";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9281841410";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2206";"118003";"";"";"R3 IM-ZEL-2206-259";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2106";"118004";"";"";"R3 IM-ZEL-2206-258";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2106";"118005";"";"";"R3 IM-ZEL-2206-257";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -58361,47;"H";"EUR";0,000000;0,00;"";"3207";"70897";"";"0807";"118024";"";"";"R3 EX-SAL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE812119489";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -205,00;"H";"EUR";0,000000;0,00;"";"3207";"74800";"";"3006";"118030";"";"";"R3 EX-LUF-2206-085";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE811228786";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1359,96;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118128";"";"";"R3 LA-HOL-2204-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1399,27;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118142";"";"";"R3 LA-HOL-2206-018";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1300,00;"H";"EUR";0,000000;0,00;"";"3206";"74965";"";"1706";"118364";"";"";"R3 IM-PAP-2206-154";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1350,00;"H";"EUR";0,000000;0,00;"";"3206";"74965";"";"2206";"118382";"";"";"R3 IM-PAP-2206-326";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -25,00;"H";"EUR";0,000000;0,00;"";"3207";"76918";"";"3006";"118544";"";"";"R3 EX-LUF-2206-060";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE303537001";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -100,00;"H";"EUR";0,000000;0,00;"";"3206";"77401";"";"0106";"118691";"";"";"R3 IM-ZEL-2204-177";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9291794907";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -852,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2406";"118851";"";"";"R3 IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -84,64;"H";"EUR";0,000000;0,00;"";"3211";"71207";"";"2906";"118857";"";"";"R3 LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -75,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"115283";"";"";"R4 IM-GCA-2206-100";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -85,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"116297";"";"";"R4 IM-GCA-2206-203";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -92,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117123";"";"";"R4 IM-GCA-2206-237";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -75,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117806";"";"";"R4 IM-GCA-2206-248";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -64,50;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117856";"";"";"R4 IM-GCA-2206-131";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -86,50;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117939";"";"";"R4 IM-GCA-2206-204";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -65,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"118020";"";"";"R4 IM-GCA-2206-238";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -100,00;"H";"EUR";0,000000;0,00;"";"3211";"71692";"";"2007";"118854";"";"";"R5 LA-ZEL-2206-005";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -90,00;"S";"EUR";0,000000;0,00;"";"8001";"10211";"";"2007";"117161";"";"";"R6 IM-ZEL-2205-254";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1800,00;"S";"USD";1,053430;1708,70;"EUR";"8002";"14169";"";"2007";"117229";"";"";"R6 EX-SAL-2205-161";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE815760766";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -430,00;"S";"EUR";0,000000;0,00;"";"3206";"71530";"";"2306";"118717";"";"";"R7 IM-GCA-2206-266";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE276842677";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -253,47;"H";"EUR";0,000000;0,00;"";"3407";"76955";"";"1706";"80049";"";"";"SE IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE237921382";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -753,72;"H";"EUR";0,000000;0,00;"";"3407";"76955";"";"1706";"80048";"";"";"SE IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE237921382";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -71,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-237";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -42,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-238";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -71,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-203";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -86,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-204";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -64,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-252";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -69,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-157";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -64,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-156";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -69,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-100";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -66,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-129";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -64,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-131";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -66,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -69,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-248";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1578,00;"H";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"SE IM-GCA-2206-140";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -471,24;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"3006";"202202387";"";"";"SE LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -302,16;"H";"EUR";0,000000;0,00;"";"3407";"71207";"";"0807";"22118069";"";"";"SE LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -805,77;"H";"EUR";0,000000;0,00;"";"3407";"71207";"";"1307";"22118354";"";"";"SE LA-ZEL-2207-032";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -763,77;"H";"EUR";0,000000;0,00;"";"3231";"70153";"";"1106";"5225479709";"";"";"SE IM-GCA-2206-189";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-020";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-104";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-105";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-147";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-149";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-180";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-181";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -7189,82;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-175";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3594,91;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-232";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3594,91;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-233";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1958,25;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-234";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1958,25;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-237";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3913,32;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-238";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1128,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-183";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1128,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-182";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -952,54;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-058";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -119,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-017";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -851,45;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -23,80;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-056";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -187,46;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-051";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -102,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-017";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -105,06;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -802,58;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-006";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -697,85;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-055";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -17,51;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2204-060";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -35,02;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2204-061";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -389,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-020";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -386,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -2975,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-044";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1996,50;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -339,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-094";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -2550,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-095";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -401,25;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-029";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1488,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-041";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3370,95;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-243";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-299";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-300";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -6310,76;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-015";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -518,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-028";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -707,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-053";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -394,07;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-043";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -867,24;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-065";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -4909,55;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-068";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1713,85;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-045";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3790,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -6700,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-077";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -1537,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-007";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -158,12;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-003";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -301,12;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-047";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -9553,96;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -6200,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-070";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -6400,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-069";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -3100,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-073";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -2363,74;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" -161,46;"S";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"177415";"";"";"SR LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";"" +Umsatz (ohne Soll-/Haben-Kennzeichen);Soll-Haben-Kennzeichen;WKZ Umsatz;Kurs;Basisumsatz;WKZ Basisumsatz;Konto;Gegenkonto;BU-Schl�ssel;Belegdatum;Belegfeld 1;Belegfeld 2;Skonto;Buchungstext;Postensperre;Diverse Adressnummer;Gesch�ftspartnerbank;Sachverhalt;Zinssperre;Beleglink;Beleginfo-Art 1;Beleginfo-Inhalt 1;Beleginfo-Art 2;Beleginfo-Inhalt 2;Beleginfo-Art 3;Beleginfo-Inhalt 3;Beleginfo-Art 4;Beleginfo-Inhalt 4;Beleginfo-Art 5;Beleginfo-Inhalt 5;Beleginfo-Art 6;Beleginfo-Inhalt 6;Beleginfo-Art 7;Beleginfo-Inhalt 7;Beleginfo-Art 8;Beleginfo-Inhalt 8;KOST1-Kostenstelle;KOST2-Kostenstelle;KOST-Menge;EU-Mitgliedstaatu. USt-IdNr.;EU-Steuersatz;Abw. Versteuerungsart;Sachverhalt L+L;Funktionserg�nzung L+L;BU 49 Hauptfunktionstyp;BU 49 Hauptfunktionsnummer;BU 49 Funktionserg�nzung;Zusatzinformation-Art 1;Zusatzinformation-Inhalt 1;Zusatzinformation-Art 2;Zusatzinformation-Inhalt 2;Zusatzinformation-Art 3;Zusatzinformation-Inhalt 3;Zusatzinformation-Art 4;Zusatzinformation-Inhalt 4;Zusatzinformation-Art 5;Zusatzinformation-Inhalt 5;Zusatzinformation-Art 6;Zusatzinformation-Inhalt 6;Zusatzinformation-Art 7;Zusatzinformation-Inhalt 7;Zusatzinformation-Art 8;Zusatzinformation-Inhalt 8;Zusatzinformation-Art 9;Zusatzinformation-Inhalt 9;Zusatzinformation-Art 10;Zusatzinformation-Inhalt 10;Zusatzinformation-Art 11;Zusatzinformation-Inhalt 11;Zusatzinformation-Art 12;Zusatzinformation-Inhalt 12;Zusatzinformation-Art 13;Zusatzinformation-Inhalt 13;Zusatzinformation-Art 14;Zusatzinformation-Inhalt 14;Zusatzinformation-Art 15;Zusatzinformation-Inhalt 15;Zusatzinformation-Art 16;Zusatzinformation-Inhalt 16;Zusatzinformation-Art 17;Zusatzinformation-Inhalt 17;Zusatzinformation-Art 18;Zusatzinformation-Inhalt 18;Zusatzinformation-Art 19;Zusatzinformation-Inhalt 19;Zusatzinformation-Art 20;Zusatzinformation-Inhalt 20;St�ck;Gewicht;Zahlweise;Forderungsart;Veranlagungsjahr;Zugeordnete F�lligkeit;Skontotyp;Auftragsnummer;Buchungstyp;USt-Schl�ssel (Anzahlungen);EU-Mitgliedstaat (Anzahlungen);Sachverhalt L+L (Anzahlungen);EU-Steuersatz (Anzahlungen);Erl�skonto (Anzahlungen);Herkunft-Kz;Leerfeld;KOST-Datum;SEPAMandatsreferenz;Skontosperre;Gesellschaftername;Beteiligtennummer;Identifikationsnummer;Zeichnernummer;Postensperre bis;Bezeichnung SoBil-Sachverhalt;Kennzeichen SoBil-Buchung;Festschreibung;Leistungsdatum;Datum Zuord. Steuerperiode +150,00;"H";"EUR";0,000000;0,00;;8010;10168;;1212;"188087";;;"R EX-SAL-2211-036";0;;;0;;;;;Faelligkeit;20221212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/office-alexander-logistics-app/src/test/resources/datev/EXTF_202206_TEST.csv b/office-alexander-logistics-app/src/test/resources/datev/EXTF_202206_TEST.csv new file mode 100644 index 0000000..34a44e0 --- /dev/null +++ b/office-alexander-logistics-app/src/test/resources/datev/EXTF_202206_TEST.csv @@ -0,0 +1,3 @@ +"EXTF";"510";21;"Buchungsstapel";7;"20220721060421653";"";"CS";"cargoservice";"";"";"";"20220101";"4";"20220601";"20220630";"202206ALL";"CS";"";"";0;"EUR";"";"";"";"";"";"";"";"";"" +Umsatz (ohne Soll-/Haben-Kennzeichen);Soll-Haben-Kennzeichen;WKZ Umsatz;Kurs;Basisumsatz;WKZ Basisumsatz;Konto;Gegenkonto;BU-Schl�ssel;Belegdatum;Belegfeld 1;Belegfeld 2;Skonto;Buchungstext;Postensperre;Diverse Adressnummer;Gesch�ftspartnerbank;Sachverhalt;Zinssperre;Beleglink;Beleginfo-Art 1;Beleginfo-Inhalt 1;Beleginfo-Art 2;Beleginfo-Inhalt 2;Beleginfo-Art 3;Beleginfo-Inhalt 3;Beleginfo-Art 4;Beleginfo-Inhalt 4;Beleginfo-Art 5;Beleginfo-Inhalt 5;Beleginfo-Art 6;Beleginfo-Inhalt 6;Beleginfo-Art 7;Beleginfo-Inhalt 7;Beleginfo-Art 8;Beleginfo-Inhalt 8;KOST1-Kostenstelle;KOST2-Kostenstelle;KOST-Menge;EU-Mitgliedstaatu. USt-IdNr.;EU-Steuersatz;Abw. Versteuerungsart;Sachverhalt L+L;Funktionserg�nzung L+L;BU 49 Hauptfunktionstyp;BU 49 Hauptfunktionsnummer;BU 49 Funktionserg�nzung;Zusatzinformation-Art 1;Zusatzinformation-Inhalt 1;Zusatzinformation-Art 2;Zusatzinformation-Inhalt 2;Zusatzinformation-Art 3;Zusatzinformation-Inhalt 3;Zusatzinformation-Art 4;Zusatzinformation-Inhalt 4;Zusatzinformation-Art 5;Zusatzinformation-Inhalt 5;Zusatzinformation-Art 6;Zusatzinformation-Inhalt 6;Zusatzinformation-Art 7;Zusatzinformation-Inhalt 7;Zusatzinformation-Art 8;Zusatzinformation-Inhalt 8;Zusatzinformation-Art 9;Zusatzinformation-Inhalt 9;Zusatzinformation-Art 10;Zusatzinformation-Inhalt 10;Zusatzinformation-Art 11;Zusatzinformation-Inhalt 11;Zusatzinformation-Art 12;Zusatzinformation-Inhalt 12;Zusatzinformation-Art 13;Zusatzinformation-Inhalt 13;Zusatzinformation-Art 14;Zusatzinformation-Inhalt 14;Zusatzinformation-Art 15;Zusatzinformation-Inhalt 15;Zusatzinformation-Art 16;Zusatzinformation-Inhalt 16;Zusatzinformation-Art 17;Zusatzinformation-Inhalt 17;Zusatzinformation-Art 18;Zusatzinformation-Inhalt 18;Zusatzinformation-Art 19;Zusatzinformation-Inhalt 19;Zusatzinformation-Art 20;Zusatzinformation-Inhalt 20;St�ck;Gewicht;Zahlweise;Forderungsart;Veranlagungsjahr;Zugeordnete F�lligkeit;Skontotyp;Auftragsnummer;Buchungstyp;USt-Schl�ssel (Anzahlungen);EU-Mitgliedstaat (Anzahlungen);Sachverhalt L+L (Anzahlungen);EU-Steuersatz (Anzahlungen);Erl�skonto (Anzahlungen);Herkunft-Kz;Leerfeld;KOST-Datum;SEPAMandatsreferenz;Skontosperre;Gesellschaftername;Beteiligtennummer;Identifikationsnummer;Zeichnernummer;Postensperre bis;Bezeichnung SoBil-Sachverhalt;Kennzeichen SoBil-Buchung;Festschreibung;Leistungsdatum;Datum Zuord. Steuerperiode +150,00;"H";"EUR";0,000000;0,00;;8010;10168;;1212;"188087";;;"R EX-SAL-2211-036";0;;;0;;;;;Faelligkeit;20221212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/workflow/mahnlauf-de-1.0.1.bpmn b/workflow/mahnlauf-de-1.0.1.bpmn new file mode 100644 index 0000000..13d144c --- /dev/null +++ b/workflow/mahnlauf-de-1.0.1.bpmn @@ -0,0 +1,925 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<itemvalue>$workflowstatus</itemvalue> + +]]> + + + +]]> + + + + + + + + + + StartEvent_1 + Task_1 + IntermediateCatchEvent_3 + EndEvent_3 + IntermediateCatchEvent_1 + IntermediateCatchEvent_5 + ExclusiveGateway_2 + IntermediateCatchEvent_4 + Task_2 + ExclusiveGateway_1 + IntermediateCatchEvent_2 + IntermediateCatchEvent_7 + IntermediateCatchEvent_6 + Task_3 + + + + SequenceFlow_4 + + + + + $lasteventdate - dbtr.name (dbtr.number)]]> + + + true + + + + + + + + + + + + + + + + + + + + + $workflowgroup - $workflowstatus]]> + SequenceFlow_6 + SequenceFlow_15 + SequenceFlow_10 + + + + SequenceFlow_10 + SequenceFlow_13 + + + + + $lasteventdate - dbtr.name (dbtr.number)]]> + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + $workflowgroup - $workflowstatus]]> + SequenceFlow_14 + SequenceFlow_4 + SequenceFlow_1 + SequenceFlow_2 + SequenceFlow_3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + SequenceFlow_6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + SequenceFlow_14 + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + home +Mahnwesen]]> + + + + + + + + + + + + false + + + + SequenceFlow_2 + SequenceFlow_7 + + + DataOutput_1 + + + DataOutput_1 + + + + + + SequenceFlow_7 + SequenceFlow_8 + SequenceFlow_9 + + + + + Html-Header +E-Mail - Mahnlauf-dunning.level (DE) +
+description
+
+

+Debitor: dbtr.name (dbtr.number) +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
RechnungsnummerDatumFälligkeitRechnungsbetragSaldoMahnstufe
invoice.numberinvoice.dateinvoice.duedateinvoice.total invoice.currencyinvoice.saldo invoice.currency$workflowstatus
Saldodunning.saldo dunning.currency
+ +E-Mail - Mahnlauf Footer (DE) +Html-Footer +]]>
+
+ + mail.subject_de]]> + + + + + + + + + + + +
+ SequenceFlow_8 + SequenceFlow_11 + +
+ + + + Html-Header +E-Mail - Mahnlauf-dunning.level (EN) +

+description +

+

+Debitor: dbtr.name (dbtr.number) +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Invoice No.DateExpiry DateInvoice AmountBalanceDunning Level
invoice.numberinvoice.dateinvoice.duedateinvoice.total invoice.currencyinvoice.saldo invoice.currencyworkflowstatus_en
Saldodunning.saldo dunning.currency
+E-Mail - Mahnlauf Footer (EN) +Html-Footer +]]>
+
+ + mail.subject_en]]> + + + + + + + + + + + +
+ SequenceFlow_9 + SequenceFlow_12 + +
+ + + workitem['invoice.language'] && workitem['invoice.language'][0]=="DE" + + + + SequenceFlow_11 + SequenceFlow_12 + SequenceFlow_15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahnwesen]]> + + + + + + + + + + + + false + + + SequenceFlow_1 + + + + + + + $lasteventdate - dbtr.name (dbtr.number)]]> + + + true + + + + + + + + + + + + + + + + + + + + + $workflowgroup - $workflowstatus]]> + SequenceFlow_5 + SequenceFlow_13 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + home]]> + + + + + + + + + + + + false + + + + + + + SequenceFlow_3 + SequenceFlow_5 + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/workflow/rechnungsausgang-de-1.0.1.bpmn b/workflow/rechnungsausgang-de-1.0.1.bpmn index 0a9a302..66ffcc7 100644 --- a/workflow/rechnungsausgang-de-1.0.1.bpmn +++ b/workflow/rechnungsausgang-de-1.0.1.bpmn @@ -1569,6 +1569,7 @@ Betrag: invoice.total invoice.currency 7 1. Dunning + ]]>