Files
Dominik Polakovics 8d3eced5e4
All checks were successful
Build / build (push) Successful in 8m22s
Build / deploy-stage (push) Successful in 3m12s
Build / deploy-production (push) Successful in 2m50s
Build / switch-stage (push) Successful in 2m39s
add new test.sql
2025-03-05 23:48:08 +01:00

3537 lines
854 KiB
SQL
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- MariaDB dump 10.19 Distrib 10.11.9-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: db
-- ------------------------------------------------------
-- Server version 10.11.9-MariaDB-ubu2204-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `backend_layout`
--
DROP TABLE IF EXISTS `backend_layout`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `backend_layout` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`sorting` int(11) NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`config` longtext DEFAULT NULL,
`icon` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `backend_layout`
--
LOCK TABLES `backend_layout` WRITE;
/*!40000 ALTER TABLE `backend_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `backend_layout` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `be_dashboards`
--
DROP TABLE IF EXISTS `be_dashboards`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `be_dashboards` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`cruser_id` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`identifier` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`widgets` text DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `identifier` (`identifier`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `be_dashboards`
--
LOCK TABLES `be_dashboards` WRITE;
/*!40000 ALTER TABLE `be_dashboards` DISABLE KEYS */;
INSERT INTO `be_dashboards` VALUES
(1,0,1676910164,1676910164,1,0,0,0,0,'5a1e4c7c7e59315eeeaae0a9854999e6ebc202e4','My dashboard','{\"846988ee0d7e05f15834aede9c4d9eb592bd927f\":{\"identifier\":\"t3information\"},\"d31ab551656dcdb6e1f8ea139863b7ad4849910b\":{\"identifier\":\"docGettingStarted\"}}');
/*!40000 ALTER TABLE `be_dashboards` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `be_groups`
--
DROP TABLE IF EXISTS `be_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `be_groups` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`title` varchar(50) NOT NULL DEFAULT '',
`non_exclude_fields` longtext DEFAULT NULL,
`explicit_allowdeny` longtext DEFAULT NULL,
`allowed_languages` varchar(255) NOT NULL DEFAULT '',
`custom_options` longtext DEFAULT NULL,
`db_mountpoints` longtext DEFAULT NULL,
`pagetypes_select` longtext DEFAULT NULL,
`tables_select` longtext DEFAULT NULL,
`tables_modify` longtext DEFAULT NULL,
`groupMods` longtext DEFAULT NULL,
`availableWidgets` longtext DEFAULT NULL,
`mfa_providers` longtext DEFAULT NULL,
`file_mountpoints` varchar(255) DEFAULT '',
`file_permissions` longtext DEFAULT NULL,
`TSconfig` longtext DEFAULT NULL,
`subgroup` varchar(255) DEFAULT '',
`workspace_perms` smallint(5) unsigned NOT NULL DEFAULT 0,
`category_perms` longtext DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `be_groups`
--
LOCK TABLES `be_groups` WRITE;
/*!40000 ALTER TABLE `be_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `be_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `be_sessions`
--
DROP TABLE IF EXISTS `be_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `be_sessions` (
`ses_id` varchar(190) NOT NULL DEFAULT '',
`ses_iplock` varchar(39) NOT NULL DEFAULT '',
`ses_userid` int(10) unsigned NOT NULL DEFAULT 0,
`ses_tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`ses_data` longblob DEFAULT NULL,
PRIMARY KEY (`ses_id`),
KEY `ses_tstamp` (`ses_tstamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `be_sessions`
--
LOCK TABLES `be_sessions` WRITE;
/*!40000 ALTER TABLE `be_sessions` DISABLE KEYS */;
INSERT INTO `be_sessions` VALUES
('a4f9bb3509149c2c08703d42cf63b461dffe013cd0c65c5a04d3b2e6fc428101','[DISABLED]',1,1734221027,'a:1:{s:26:\"formProtectionSessionToken\";s:64:\"18498b34e66f137e9bb6cbc4422f84a7dc21fc08664e2b5ddf89c06896333b0b\";}');
/*!40000 ALTER TABLE `be_sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `be_users`
--
DROP TABLE IF EXISTS `be_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `be_users` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`disable` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`username` varchar(50) NOT NULL DEFAULT '',
`avatar` int(10) unsigned NOT NULL DEFAULT 0,
`password` varchar(255) NOT NULL DEFAULT '',
`admin` smallint(5) unsigned NOT NULL DEFAULT 0,
`usergroup` varchar(512) DEFAULT '',
`lang` varchar(10) NOT NULL DEFAULT 'default',
`email` varchar(255) NOT NULL DEFAULT '',
`db_mountpoints` longtext DEFAULT NULL,
`options` smallint(5) unsigned NOT NULL DEFAULT 3,
`realName` varchar(80) NOT NULL DEFAULT '',
`userMods` longtext DEFAULT NULL,
`allowed_languages` varchar(255) NOT NULL DEFAULT '',
`uc` mediumblob DEFAULT NULL,
`file_mountpoints` varchar(255) DEFAULT '',
`file_permissions` longtext DEFAULT NULL,
`workspace_perms` smallint(5) unsigned NOT NULL DEFAULT 1,
`TSconfig` longtext DEFAULT NULL,
`lastlogin` bigint(20) NOT NULL DEFAULT 0,
`workspace_id` int(11) NOT NULL DEFAULT 0,
`mfa` mediumblob DEFAULT NULL,
`category_perms` longtext DEFAULT NULL,
`password_reset_token` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`uid`),
KEY `username` (`username`),
KEY `parent` (`pid`,`deleted`,`disable`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `be_users`
--
LOCK TABLES `be_users` WRITE;
/*!40000 ALTER TABLE `be_users` DISABLE KEYS */;
INSERT INTO `be_users` VALUES
(1,0,1676910156,1676910156,0,0,0,0,NULL,'admin',0,'$2y$12$rt1Fgda6QerLQID4Rq/G9ezi1kio92fDLj2OIVXDEiY1tLA7z3fom',1,NULL,'default','',NULL,0,'',NULL,'','a:15:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:11:{s:28:\"dashboard/current_dashboard/\";s:40:\"5a1e4c7c7e59315eeeaae0a9854999e6ebc202e4\";s:10:\"web_layout\";a:3:{s:8:\"function\";s:1:\"1\";s:8:\"language\";s:1:\"0\";s:19:\"constant_editor_cat\";N;}s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";a:0:{}s:10:\"FormEngine\";a:2:{i:0;a:4:{s:32:\"ea5808446ef89a93a3ae0c95ac46d0d0\";a:5:{i:0;s:48:\"lena.schilling@europarl.europa.eu\r\n+43 1231 3435\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:9;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B9%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:9;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:0:\"\";}s:32:\"ca1d9f585ca31e6d709268bfa0021f7e\";a:5:{i:0;s:14:\"Lena Schilling\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:13;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:34:\"&edit%5Btt_content%5D%5B13%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:13;s:3:\"pid\";i:6;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:76:\"/typo3/module/web/layout?token=96b5caa0aa2e7e18de2c4d1db0e492b8a3793559&id=6\";}s:32:\"9c43855926e54a70d4d0a190cb54db8c\";a:5:{i:0;s:10:\"Projekt 01\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:11;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:34:\"&edit%5Btt_content%5D%5B11%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:11;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:98:\"/typo3/module/web/layout?token=96b5caa0aa2e7e18de2c4d1db0e492b8a3793559&id=1#element-tt_content-11\";}s:32:\"64c6baba0a4f86194083e16732b562eb\";a:5:{i:0;s:31:\"241121_Lena_schilling_COP-1.png\";i:1;a:5:{s:4:\"edit\";a:1:{s:17:\"sys_file_metadata\";a:1:{i:11;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:41:\"&edit%5Bsys_file_metadata%5D%5B11%5D=edit\";i:3;a:5:{s:5:\"table\";s:17:\"sys_file_metadata\";s:3:\"uid\";i:11;s:3:\"pid\";i:0;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:218:\"/typo3/record/edit?token=c70e27a875e2cb103eabbe97b661c93740fab773&edit%5Btt_content%5D%5B11%5D=edit&returnUrl=/typo3/module/web/layout%3Ftoken%3D96b5caa0aa2e7e18de2c4d1db0e492b8a3793559%26id%3D1%23element-tt_content-11\";}}i:1;s:32:\"64c6baba0a4f86194083e16732b562eb\";}s:16:\"opendocs::recent\";a:8:{s:32:\"61765c6a3de2e0ba09d6230397278147\";a:5:{i:0;s:19:\"Projekt 01 (copy 1)\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:12;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:34:\"&edit%5Btt_content%5D%5B12%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:12;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:99:\"/typo3/module/web/layout?token=96b5caa0aa2e7e18de2c4d1db0e492b8a3793559&id=1&#element-tt_content-12\";}s:32:\"9c43855926e54a70d4d0a190cb54db8c\";a:5:{i:0;s:10:\"Projekt 01\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:11;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:34:\"&edit%5Btt_content%5D%5B11%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:11;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:77:\"/typo3/module/web/layout?token=96b5caa0aa2e7e18de2c4d1db0e492b8a3793559&id=1&\";}s:32:\"f87337ea07fd5e46b7487a4d63a03a03\";a:5:{i:0;s:6:\"test 1\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:8;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B8%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:8;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:98:\"/typo3/module/web/layout?token=b8b0edab18dfab0be025189f7ce581f9f27d1d71&id=1&#element-tt_content-8\";}s:32:\"629911c017052e9e049ce359020150c0\";a:5:{i:0;s:9:\"Aktuelles\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:7;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B7%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:7;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:98:\"/typo3/module/web/layout?token=b8b0edab18dfab0be025189f7ce581f9f27d1d71&id=1&#element-tt_content-7\";}s:32:\"4869cf322808343c3d6ca616a691b6a3\";a:5:{i:0;s:6:\"Test 1\";i:1;a:5:{s:4:\"edit\";a:1:{s:25:\"tx_news_domain_model_news\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:48:\"&edit%5Btx_news_domain_model_news%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:25:\"tx_news_domain_model_news\";s:3:\"uid\";i:1;s:3:\"pid\";i:4;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:91:\"/typo3/module/web/list?token=9ecbd6411033de8d02cb882ff2465bba3edcca44&id=4&table=&pointer=1\";}s:32:\"494c59ed0b451cdb0042831766e2d4b1\";a:5:{i:0;s:4:\"test\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:5;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B5%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:5;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:97:\"/typo3/module/web/layout?token=b8b0edab18dfab0be025189f7ce581f9f27d1d71&id=1#element-tt_content-5\";}s:32:\"0cd5f59a7028dd92e74eccfe45077178\";a:5:{i:0;s:15:\"Test 1 (copy 9)\";i:1;a:5:{s:4:\"edit\";a:1:{s:25:\"tx_news_domain_model_news\";a:1:{i:21;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:49:\"&edit%5Btx_news_domain_model_news%5D%5B21%5D=edit\";i:3;a:5:{s:5:\"table\";s:25:\"tx_news_domain_model_news\";s:3:\"uid\";i:21;s:3:\"pid\";i:4;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:91:\"/typo3/module/web/list?token=882b08196a352290bbdcb12129fcacdd6e5b3633&id=4&table=&pointer=1\";}s:32:\"c787b8a39a84ca235a098e1c39ac2b6b\";a:5:{i:0;s:16:\"Test 1 (copy 10)\";i:1;a:5:{s:4:\"edit\";a:1:{s:25:\"tx_news_domain_model_news\";a:1:{i:22;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:49:\"&edit%5Btx_news_domain_model_news%5D%5B22%5D=edit\";i:3;a:5:{s:5:\"table\";s:25:\"tx_news_domain_model_news\";s:3:\"uid\";i:22;s:3:\"pid\";i:4;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}i:4;s:91:\"/typo3/module/web/list?token=882b08196a352290bbdcb12129fcacdd6e5b3633&id=4&table=&pointer=1\";}}s:6:\"web_ts\";a:4:{s:8:\"function\";s:85:\"TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateInformationModuleFunctionController\";s:8:\"language\";N;s:19:\"constant_editor_cat\";s:14:\"frontend login\";s:6:\"action\";s:25:\"web_typoscript_infomodify\";}s:25:\"web_typoscript_infomodify\";a:1:{s:23:\"selectedTemplatePerPage\";a:1:{i:1;i:-1;}}s:12:\"pagetsconfig\";a:1:{s:6:\"action\";s:21:\"pagetsconfig_includes\";}s:10:\"system_log\";a:1:{s:10:\"constraint\";s:337:\"O:39:\"TYPO3\\CMS\\Belog\\Domain\\Model\\Constraint\":11:{s:14:\"\0*\0userOrGroup\";s:1:\"0\";s:9:\"\0*\0number\";i:20;s:15:\"\0*\0workspaceUid\";i:-99;s:10:\"\0*\0channel\";s:3:\"php\";s:8:\"\0*\0level\";s:5:\"debug\";s:17:\"\0*\0startTimestamp\";i:0;s:15:\"\0*\0endTimestamp\";i:0;s:18:\"\0*\0manualDateStart\";N;s:17:\"\0*\0manualDateStop\";N;s:9:\"\0*\0pageId\";i:0;s:8:\"\0*\0depth\";i:0;}\";}s:16:\"browse_links.php\";a:1:{s:12:\"expandFolder\";s:15:\"1:/user_upload/\";}s:9:\"clipboard\";a:5:{s:5:\"tab_1\";a:0:{}s:5:\"tab_2\";a:0:{}s:5:\"tab_3\";a:0:{}s:7:\"current\";s:6:\"normal\";s:6:\"normal\";a:2:{s:2:\"el\";a:1:{s:13:\"tt_content|11\";s:1:\"1\";}s:4:\"mode\";s:4:\"copy\";}}}s:14:\"emailMeAtLogin\";i:0;s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:25:\"resizeTextareas_MaxHeight\";i:500;s:4:\"lang\";s:7:\"default\";s:19:\"firstLoginTimeStamp\";i:1676910163;s:15:\"moduleSessionID\";a:11:{s:28:\"dashboard/current_dashboard/\";s:40:\"86aac5d2aeff6d1172f84c56eaa697d1ab039f33\";s:10:\"web_layout\";s:40:\"86aac5d2aeff6d1172f84c56eaa697d1ab039f33\";s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";s:40:\"c8823968f955842c0d8f0b4b3d431f0c8290bd97\";s:10:\"FormEngine\";s:40:\"c8823968f955842c0d8f0b4b3d431f0c8290bd97\";s:16:\"opendocs::recent\";s:40:\"c8823968f955842c0d8f0b4b3d431f0c8290bd97\";s:6:\"web_ts\";s:40:\"9b64b57f90ddee969b84f311c149ef01a1c6fa43\";s:25:\"web_typoscript_infomodify\";s:40:\"f22097dd1e569aca50b1fbb4570632d39df85b15\";s:12:\"pagetsconfig\";s:40:\"1dd29d4e53310d98224ef10871ad6cb301b03e73\";s:10:\"system_log\";s:40:\"02d71055eefa8f3c8c4ad2624d17064f7535947c\";s:16:\"browse_links.php\";s:40:\"c8823968f955842c0d8f0b4b3d431f0c8290bd97\";s:9:\"clipboard\";s:40:\"c8823968f955842c0d8f0b4b3d431f0c8290bd97\";}s:17:\"BackendComponents\";a:1:{s:6:\"States\";a:1:{s:8:\"Pagetree\";a:1:{s:9:\"stateHash\";a:1:{s:3:\"0_0\";s:1:\"1\";}}}}s:10:\"AdminPanel\";a:18:{s:11:\"display_top\";b:0;s:12:\"tsdebug_tree\";s:1:\"0\";s:20:\"tsdebug_displayTimes\";s:1:\"0\";s:23:\"tsdebug_displayMessages\";s:1:\"0\";s:10:\"tsdebug_LR\";s:1:\"0\";s:22:\"tsdebug_displayContent\";s:1:\"0\";s:28:\"tsdebug_forceTemplateParsing\";s:1:\"0\";s:26:\"debug_log_groupByComponent\";s:1:\"0\";s:22:\"debug_log_groupByLevel\";s:1:\"0\";s:20:\"debug_log_startLevel\";s:1:\"0\";s:23:\"preview_showHiddenPages\";s:1:\"0\";s:25:\"preview_showHiddenRecords\";s:1:\"0\";s:28:\"preview_showScheduledRecords\";s:1:\"0\";s:22:\"preview_showFluidDebug\";s:1:\"0\";s:20:\"preview_clearCacheId\";s:1:\"1\";s:20:\"preview_simulateDate\";s:1:\"0\";s:25:\"preview_simulateUserGroup\";s:1:\"0\";s:13:\"cache_noCache\";s:1:\"1\";}s:17:\"systeminformation\";s:40:\"{\"system_log\":{\"lastAccess\":1734108119}}\";s:11:\"colorScheme\";s:4:\"auto\";s:10:\"inlineView\";s:400:\"{\"tt_content\":{\"NEW675a3f9c5883d239571163\":{\"sys_file_reference\":[1]},\"3\":{\"sys_file_reference\":[2,14]},\"NEW675b6c449e591577777838\":{\"sys_file_reference\":[3]},\"5\":{\"sys_file_reference\":[27]},\"6\":{\"sys_file_reference\":[28]},\"NEW675db16707a6a536093939\":{\"sys_file_reference\":[29]},\"NEW675df631cdf38674832048\":{\"sys_file_reference\":[31]}},\"tx_news_domain_model_news\":{\"1\":{\"sys_file_reference\":[5,15]}}}\";}',NULL,NULL,1,NULL,1734193234,0,NULL,NULL,''),
(2,0,1733966320,1733966320,0,0,0,0,NULL,'_cli_',0,'$2y$12$N0w3JD2NOj4Zp8LlZNuqsuIljI9pwXjoukbxi2EwAziSdcKuMyRRO',1,'','default','',NULL,3,'',NULL,'','a:4:{s:10:\"moduleData\";a:0:{}s:14:\"emailMeAtLogin\";i:0;s:8:\"titleLen\";i:50;s:20:\"edit_docModuleUpload\";s:1:\"1\";}','',NULL,1,NULL,0,0,NULL,NULL,'');
/*!40000 ALTER TABLE `be_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_extbase_object`
--
DROP TABLE IF EXISTS `cache_extbase_object`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_extbase_object` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) NOT NULL DEFAULT '',
`expires` int(10) unsigned NOT NULL DEFAULT 0,
`content` longblob DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(180),`expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_extbase_object`
--
LOCK TABLES `cache_extbase_object` WRITE;
/*!40000 ALTER TABLE `cache_extbase_object` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_extbase_object` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_extbase_object_tags`
--
DROP TABLE IF EXISTS `cache_extbase_object_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_extbase_object_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) NOT NULL DEFAULT '',
`tag` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(191)),
KEY `cache_tag` (`tag`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_extbase_object_tags`
--
LOCK TABLES `cache_extbase_object_tags` WRITE;
/*!40000 ALTER TABLE `cache_extbase_object_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_extbase_object_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_news_category`
--
DROP TABLE IF EXISTS `cache_news_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_news_category` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) NOT NULL DEFAULT '',
`expires` int(10) unsigned NOT NULL DEFAULT 0,
`content` longblob DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(180),`expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_news_category`
--
LOCK TABLES `cache_news_category` WRITE;
/*!40000 ALTER TABLE `cache_news_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_news_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_news_category_tags`
--
DROP TABLE IF EXISTS `cache_news_category_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_news_category_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) NOT NULL DEFAULT '',
`tag` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(191)),
KEY `cache_tag` (`tag`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_news_category_tags`
--
LOCK TABLES `cache_news_category_tags` WRITE;
/*!40000 ALTER TABLE `cache_news_category_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_news_category_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fe_groups`
--
DROP TABLE IF EXISTS `fe_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fe_groups` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`title` varchar(50) NOT NULL DEFAULT '',
`subgroup` varchar(255) DEFAULT '',
`felogin_redirectPid` longtext DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fe_groups`
--
LOCK TABLES `fe_groups` WRITE;
/*!40000 ALTER TABLE `fe_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `fe_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fe_sessions`
--
DROP TABLE IF EXISTS `fe_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fe_sessions` (
`ses_id` varchar(190) NOT NULL DEFAULT '',
`ses_iplock` varchar(39) NOT NULL DEFAULT '',
`ses_userid` int(10) unsigned NOT NULL DEFAULT 0,
`ses_tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`ses_data` mediumblob DEFAULT NULL,
`ses_permanent` smallint(5) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`ses_id`),
KEY `ses_tstamp` (`ses_tstamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fe_sessions`
--
LOCK TABLES `fe_sessions` WRITE;
/*!40000 ALTER TABLE `fe_sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `fe_sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fe_users`
--
DROP TABLE IF EXISTS `fe_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fe_users` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`disable` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`tx_extbase_type` varchar(255) NOT NULL DEFAULT '0',
`username` varchar(255) NOT NULL DEFAULT '',
`password` varchar(255) NOT NULL DEFAULT '',
`usergroup` varchar(512) DEFAULT '',
`name` varchar(160) NOT NULL DEFAULT '',
`first_name` varchar(50) NOT NULL DEFAULT '',
`middle_name` varchar(50) NOT NULL DEFAULT '',
`last_name` varchar(50) NOT NULL DEFAULT '',
`address` longtext DEFAULT NULL,
`telephone` varchar(30) NOT NULL DEFAULT '',
`fax` varchar(30) NOT NULL DEFAULT '',
`email` varchar(255) NOT NULL DEFAULT '',
`uc` blob DEFAULT NULL,
`title` varchar(40) NOT NULL DEFAULT '',
`zip` varchar(10) NOT NULL DEFAULT '',
`city` varchar(50) NOT NULL DEFAULT '',
`country` varchar(40) NOT NULL DEFAULT '',
`www` varchar(80) NOT NULL DEFAULT '',
`company` varchar(80) NOT NULL DEFAULT '',
`image` int(10) unsigned NOT NULL DEFAULT 0,
`lastlogin` bigint(20) NOT NULL DEFAULT 0,
`is_online` int(10) unsigned NOT NULL DEFAULT 0,
`mfa` mediumblob DEFAULT NULL,
`felogin_redirectPid` longtext DEFAULT NULL,
`felogin_forgotHash` varchar(80) DEFAULT '',
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`username`(100)),
KEY `username` (`username`(100)),
KEY `is_online` (`is_online`),
KEY `felogin_forgotHash` (`felogin_forgotHash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fe_users`
--
LOCK TABLES `fe_users` WRITE;
/*!40000 ALTER TABLE `fe_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `fe_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `index_config`
--
DROP TABLE IF EXISTS `index_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `index_config` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`set_id` int(11) NOT NULL DEFAULT 0,
`session_data` mediumtext DEFAULT NULL,
`title` varchar(255) NOT NULL DEFAULT '',
`type` int(10) unsigned NOT NULL DEFAULT 0,
`depth` int(10) unsigned NOT NULL DEFAULT 0,
`table2index` varchar(255) NOT NULL DEFAULT '',
`alternative_source_pid` int(10) unsigned NOT NULL DEFAULT 0,
`get_params` varchar(255) NOT NULL DEFAULT '',
`fieldlist` varchar(255) NOT NULL DEFAULT '',
`externalUrl` varchar(255) NOT NULL DEFAULT '',
`indexcfgs` longtext DEFAULT NULL,
`filepath` varchar(255) NOT NULL DEFAULT '',
`extensions` varchar(255) NOT NULL DEFAULT '',
`timer_next_indexing` bigint(20) NOT NULL DEFAULT 0,
`timer_frequency` int(10) unsigned NOT NULL DEFAULT 0,
`timer_offset` bigint(20) NOT NULL DEFAULT 0,
`url_deny` longtext DEFAULT NULL,
`recordsbatch` int(11) NOT NULL DEFAULT 0,
`records_indexonchange` smallint(5) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `index_config`
--
LOCK TABLES `index_config` WRITE;
/*!40000 ALTER TABLE `index_config` DISABLE KEYS */;
/*!40000 ALTER TABLE `index_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `index_fulltext`
--
DROP TABLE IF EXISTS `index_fulltext`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `index_fulltext` (
`phash` varchar(32) NOT NULL,
`fulltextdata` mediumtext DEFAULT NULL,
PRIMARY KEY (`phash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `index_fulltext`
--
LOCK TABLES `index_fulltext` WRITE;
/*!40000 ALTER TABLE `index_fulltext` DISABLE KEYS */;
INSERT INTO `index_fulltext` VALUES
('3d798c3f120fdabe32985de46a5fc2fd','example.com Team Lena\n \n \n \n \n \n \n Themen\n \n \n \n \n \n \n Presse\n \n \n \n \n \n \n Transparenz\n \n \n \n \n \n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n\n \n \n Hallo, ich bin \n Lena Schilling \n \n About me \n Lorem ipsum dolor sit amet, consectetur adipis cing elit. Donec porttitor sed mi a accumsan. Vestibulum dictum congue tellus at mollis. Nunc quam quam, sagittis ac feugiat eu, venenatis seas.  Sed lobortis lectus ut augue. \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n\n\n\n\n\n \n \n \n \n \n\n \n 10 was \n 20 soll \n 30 das \n 40 sein \n \n\n \n \n\n\n\n\n\n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n Aktuelles \n \n \n \n Alle Artikel \n \n \n \n\n \n\n\n\n \n \n\n\n\n\n\n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n Projekt 01 \n Yorem ipsum dolor sit amet! \n \n \n \n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Viverra in malesuada id consectetur morbi placerat amet sed orci. Non mauris nisi elementum et. Nisi id erat proin leo et. Phasellus augue justo, a rutrum gravida proin duis fringilla dictum. Risus, magna orci feugiat urna condimentum vulputate sed sit dui. Tristique felis, pretium elit quisque non nec, rutrum massa. Accumsan, diam \n \n \n \n \n\n \n \n\n\n\n\n\n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n Projekt 01 (copy 1) \n Yorem ipsum dolor sit amet! \n \n \n \n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Viverra in malesuada id consectetur morbi placerat amet sed orci. Non mauris nisi elementum et. Nisi id erat proin leo et. Phasellus augue justo, a rutrum gravida proin duis fringilla dictum. Risus, magna orci feugiat urna condimentum vulputate sed sit dui. Tristique felis, pretium elit quisque non nec, rutrum massa. Accumsan, diam \n \n \n \n \n\n \n \n\n\n\n\n\n\n\n\n \n\n \n \n \n \n \n \n \n \n \n\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vitae blandit lectus. Praesent at hendrerit. \n\n\n \n \n\n\n\n\n \n \n \n \n \n \n\n lena.schilling@europarl.europa.eu \n +43 1231 3435 \n\n\n \n \n\n\n\n\n \n \n \n\n \n\n \n \n \n example.com \n \n © All Right Reserved '),
('78cabd40e1e1f417b9f83789c2321f4a','Qorem ipsum dolor sit Team Lena\n \n \n \n \n \n \n Themen\n \n \n \n \n \n \n Presse\n \n \n \n \n \n \n Transparenz\n \n \n \n \n \n \n \n\n \n\n \n \n \n\n \n \n \n \n \n\n \n \n\n\n \n\n\n \n \n \n \n \n \n \n Qorem ipsum dolor sit \n \n \n \n \n \n \n 12/13/2024\n \n \n\n \n\n \n\n \n \n \n \n \n \n \n test \n \n \n\n \n\n \n\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n \n \n\n\n\n \n \n test \n \n \n\n \n\n \n \n \n \n\n \n \n \n\n \n\n \n\n \n \n \n\n \n \n\n\n\n \n \n\n\n\n\n\n\n\n\n \n\n \n \n \n \n \n \n \n \n \n\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vitae blandit lectus. Praesent at hendrerit. \n\n\n \n \n\n\n\n\n \n \n \n \n \n \n\n lena.schilling@europarl.europa.eu \n +43 1231 3435 \n\n\n \n \n\n\n\n\n \n \n \n\n \n\n \n \n \n example.com \n \n © All Right Reserved ,test');
/*!40000 ALTER TABLE `index_fulltext` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `index_grlist`
--
DROP TABLE IF EXISTS `index_grlist`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `index_grlist` (
`uniqid` int(11) NOT NULL AUTO_INCREMENT,
`phash` varchar(32) NOT NULL,
`phash_x` varchar(32) NOT NULL,
`hash_gr_list` varchar(32) NOT NULL,
`gr_list` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`uniqid`),
KEY `joinkey` (`phash`,`hash_gr_list`),
KEY `phash_grouping` (`phash_x`,`hash_gr_list`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `index_grlist`
--
LOCK TABLES `index_grlist` WRITE;
/*!40000 ALTER TABLE `index_grlist` DISABLE KEYS */;
INSERT INTO `index_grlist` VALUES
(6,'78cabd40e1e1f417b9f83789c2321f4a','78cabd40e1e1f417b9f83789c2321f4a','cdc0a8f9fe7f5e206d167723a90af880','0,-1'),
(7,'3d798c3f120fdabe32985de46a5fc2fd','3d798c3f120fdabe32985de46a5fc2fd','cdc0a8f9fe7f5e206d167723a90af880','0,-1');
/*!40000 ALTER TABLE `index_grlist` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `index_phash`
--
DROP TABLE IF EXISTS `index_phash`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `index_phash` (
`phash` varchar(32) NOT NULL,
`phash_grouping` varchar(32) NOT NULL,
`static_page_arguments` blob DEFAULT NULL,
`data_filename` varchar(1024) NOT NULL DEFAULT '',
`data_page_id` int(10) unsigned NOT NULL DEFAULT 0,
`data_page_type` int(10) unsigned NOT NULL DEFAULT 0,
`data_page_mp` varchar(255) NOT NULL DEFAULT '',
`gr_list` varchar(255) NOT NULL DEFAULT '',
`item_type` varchar(5) NOT NULL DEFAULT '',
`item_title` varchar(255) NOT NULL DEFAULT '',
`item_description` varchar(255) NOT NULL DEFAULT '',
`item_mtime` int(11) NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`item_size` int(11) NOT NULL DEFAULT 0,
`contentHash` varchar(32) NOT NULL,
`crdate` int(11) NOT NULL DEFAULT 0,
`parsetime` int(11) NOT NULL DEFAULT 0,
`sys_language_uid` int(11) NOT NULL DEFAULT 0,
`item_crdate` int(11) NOT NULL DEFAULT 0,
`externalUrl` smallint(6) NOT NULL DEFAULT 0,
`recordUid` int(11) NOT NULL DEFAULT 0,
`freeIndexUid` int(11) NOT NULL DEFAULT 0,
`freeIndexSetId` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`phash`),
KEY `phash_grouping` (`phash_grouping`),
KEY `freeIndexUid` (`freeIndexUid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `index_phash`
--
LOCK TABLES `index_phash` WRITE;
/*!40000 ALTER TABLE `index_phash` DISABLE KEYS */;
INSERT INTO `index_phash` VALUES
('3d798c3f120fdabe32985de46a5fc2fd','dc91fa3918f3fab9a43a16f82bb27086','[]','',1,0,'','0,-1','0','example.com','Team Lena Themen Presse Transparenz Hallo, ich bin Lena Schilling About me Lorem ipsum dolor sit amet, consectetur adipis cing elit. Donec porttitor sed mi a accumsan. Vestibulum dictum congue tellus ',1733950587,1734217985,14327,'61d3e109877bd68887b7af6597e5ea43',1734217985,12,0,1676910413,0,0,0,0),
('78cabd40e1e1f417b9f83789c2321f4a','17e3c529abc7b537c5fcf59f12035044','[]','',3,0,'','0,-1','0','Qorem ipsum dolor sit','Team Lena Themen Presse Transparenz Qorem ipsum dolor sit 12/13/2024 test test Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vitae blandit lectus. Praesent at hendrerit. lena.schilling',1734118658,1734217586,6322,'c7c5fb478b1caa93693a82d2e3b8c7cd',1734217586,23,0,1733951195,0,0,0,0);
/*!40000 ALTER TABLE `index_phash` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `index_rel`
--
DROP TABLE IF EXISTS `index_rel`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `index_rel` (
`phash` varchar(32) NOT NULL,
`wid` varchar(32) NOT NULL,
`count` smallint(5) unsigned NOT NULL DEFAULT 0,
`first` int(10) unsigned NOT NULL DEFAULT 0,
`freq` smallint(5) unsigned NOT NULL DEFAULT 0,
`flags` smallint(5) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`phash`,`wid`),
KEY `wid` (`wid`,`phash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `index_rel`
--
LOCK TABLES `index_rel` WRITE;
/*!40000 ALTER TABLE `index_rel` DISABLE KEYS */;
INSERT INTO `index_rel` VALUES
('3d798c3f120fdabe32985de46a5fc2fd','0490b305539f9a2d4fb47a454c3a0dda',2,120,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','09777ca5702506d4e13ccdf9749cc975',1,27,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','0b4d37b6b5a48329e90356777832837e',1,40,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','0cc175b9c0f1b6a831c399e269772661',3,25,4383,0),
('3d798c3f120fdabe32985de46a5fc2fd','0f759dd1ea6c4c76cedc299039ca4f23',2,92,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','107536d845520d5adf1f6b9ce2de2f08',3,46,4383,0),
('3d798c3f120fdabe32985de46a5fc2fd','115b0dc1fb0482bd99b59699f65e43a2',3,26,4383,0),
('3d798c3f120fdabe32985de46a5fc2fd','12cba3ee81cf4a793796a51b6327c678',1,127,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','13333d82700f8335def338037c42febf',1,202,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','13b5bfe96f3e2fe411c9f66f4a582adf',2,74,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','13bf4781726ab43b58cabc2d28a0ef76',2,75,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','14b8f0494c6f1460c3720d0ce692dbca',4,83,5844,0),
('3d798c3f120fdabe32985de46a5fc2fd','177544aa797af6f322f8caa5e80e7f24',6,23,8767,0),
('3d798c3f120fdabe32985de46a5fc2fd','17e62166fc8586dfa4d1bc0e1742c08b',1,211,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','1b42ace0041cdb12873f18be468bfecb',2,116,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','1d7d802548253180d0d404b0f9530428',2,99,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','2365f10b67df48b5648d9f4c397e633f',2,73,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','284a9b8c61d69b70d5ac1ed03282ad46',3,28,4383,0),
('3d798c3f120fdabe32985de46a5fc2fd','29bfe372865737fe2bfcfd3618b1da7d',1,24,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','2a6571da26602a67be14ea8c5ab82349',1,52,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','2a7daa862e461f029e6e3c170b080b80',1,33,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','31185a5a06993cb36ad520c823809478',2,115,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','34173cb38f07f89ddbebc2ac9128303f',1,51,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','387cfa57545d4814246bbcebe6bc61dc',1,29,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','38c7b2741b1d86c35f51687f1f56fd00',2,79,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','392406f077a3ab6822722d2df998ecd4',2,101,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','39ad9cca8cb13896b27cbfd8bc7a5be4',1,206,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','3b7ca54ce3a9df85300372275fa8bfd8',4,98,5844,0),
('3d798c3f120fdabe32985de46a5fc2fd','3cf49b0960fb2ef0ea03d0b991819630',1,6,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','3e2e1f3fbb6a4df1974726639d1c12a6',1,9,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','41868eeb2fe509f484b6fbff817109fd',4,85,5844,0),
('3d798c3f120fdabe32985de46a5fc2fd','461580541e92155766bee9d9e8f672ea',2,105,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','46b3931b9959c927df4fc65fdee94b07',1,10,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','4829322d03d1606fb09ae9af59a271d3',1,39,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','4a7e2220586348ebbda89da7f33b07a4',2,44,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','4b77a01c9178cf8fcc13fea642393955',6,20,8767,0),
('3d798c3f120fdabe32985de46a5fc2fd','4c480b2170d066b2af6f98af80902ce0',6,17,8767,0),
('3d798c3f120fdabe32985de46a5fc2fd','4c5f59e5cf419bf89144035fdcd88396',2,104,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','4cdec908de5ca1dcf6c910b685bc6469',2,58,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','4de1b7a4dc53e4a84c25ffb7cdb580ee',4,87,5844,0),
('3d798c3f120fdabe32985de46a5fc2fd','5593a9e1c77d4f919f3137578dcbe9f3',2,109,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','589ab45c0d07c144000a09b2b27e5fcf',1,22,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','598d4c200461b81522a3328565c25f7c',1,5,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','5ababd603b22780302dd8d83498e5172',2,0,2922,128),
('3d798c3f120fdabe32985de46a5fc2fd','5b970a1d9be0fd100063fd6cd688b73e',1,213,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','5d12b75cf29cfd720f323167e0bddad3',1,56,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','618ed7216d6b6389b5054401ff8d73c3',4,82,5844,0),
('3d798c3f120fdabe32985de46a5fc2fd','628e93f38039e0d664779477c11f2f6f',2,102,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','66c64cd3d8cafc59b39bc1a5583f3786',2,96,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','6c14da109e294d1e8155be8aa4b1ce8e',1,212,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','6cf444e98d01f65319755c6f3b3da28a',2,122,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','6f6eed92e0f00d675938b9def1ed0b7d',1,2,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','75bf68b7982d399df2c2ec675ffcd030',2,84,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','7a8dc91f944d115c7488f24ea53e9543',1,208,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','7c4f29407893c334a6cb7a87bf045c0d',1,216,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','7d0db380a5b95a8ba1da0bca241abda1',2,31,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','7ef8a9b929c5eca8383aa47de36061f5',1,210,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','7f005c3fa691e77c52d3297cc2699072',1,217,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','7f9a983a540e00931a69382161bdd265',8,16,11689,0),
('3d798c3f120fdabe32985de46a5fc2fd','852d3eaa21dbc9d314ec815fdb4632f6',1,41,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','855b1fd6af108e5f418efaa817b07f30',1,203,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','85d51a1f417de0d0b880a1fa16d0acbd',2,118,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','8744b593e102071b1ade5fe7be69afc2',1,55,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','87b8c5208a039fd475b1e960e814634e',1,36,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','87d4eeb7dec7686410748d174c0e0a11',8,15,11689,0),
('3d798c3f120fdabe32985de46a5fc2fd','8979aaee439f3e99f77b0b9351539b30',1,57,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','8ba087bc7bba3706a7920fac8a5b8524',1,209,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','8dbc672497bdc46f88e864bb1121232c',2,1,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','954837c257ba043cc028f3989985cc98',1,19,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','96a3be3cf272e017046d1b2674a52bd3',2,59,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','972890943b6cbe30175f19ee122669db',2,113,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','98f13708210194c475687be6106a3b84',1,49,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','99177f49aaab7e72df45608043b34181',1,4,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','a128caa7863de96de226cea34839215c',1,21,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','a181a603769c1f98ad927e7367c7aa51',1,215,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','a20e24cf828ddf451bdfb0f0d9b86a18',1,32,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','a77b3598941cb803eac0fcdafe44fac9',1,48,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','a81ba73d43118ec091f856197a2d0e8d',2,34,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','a98931d104a7fb8f30450547d97e7ca5',6,14,8767,0),
('3d798c3f120fdabe32985de46a5fc2fd','ab79957d125e68dd2e06625f0ebb78d0',2,108,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','ab86a1e1ef70dff97959067b723c5c24',1,11,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','ad18a418da4e3cbf4e3e5a70710f2d85',2,124,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','ad6761e347dfcfbe0513619f06fa03b1',2,60,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','ae1a11e90a45f0a32c2677af47378c6c',1,30,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','af1f8d9839dd6ffefedebab89761ee7e',1,54,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','afac73ac1714d827bf56734b02948fe8',1,50,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','b1187eeb4f084994d447cc8ff66074f5',1,3,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','b1310d53db71792f537efc29d477cc39',1,204,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','b1a5d251fa4fe598cb947ffc42b9cbed',1,45,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','b80bb7740288fda1f201890375a60c8f',4,76,5844,0),
('3d798c3f120fdabe32985de46a5fc2fd','b9bcfe8f89ef61629ec387f6916e2741',1,43,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','bd12a2f7c146e4c5191b12fc9a2739f5',3,38,4383,0),
('3d798c3f120fdabe32985de46a5fc2fd','c1111bd512b29e821b120b86446026b8',1,7,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','c4ca4238a0b923820dcc509a6f75849b',1,128,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','c94cb6e815f22f3e59e16bd7a49dfd2d',2,90,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','d2e16e6ef52a45b7468f1da56bba1953',4,12,5844,0),
('3d798c3f120fdabe32985de46a5fc2fd','d3d9446802a44259755d38e6d163e820',1,47,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','d540f9a8003e11e009342a40200192ea',3,71,4383,0),
('3d798c3f120fdabe32985de46a5fc2fd','d645920e395fedad7bbbed0eca3fe2e0',1,53,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','d7ab6199103be6f3447aa1c4648484c1',1,18,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','dcff11e31126935448d655e7da84c1b5',2,78,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','de0e693e975be13327a6b7f313ea304f',4,91,5844,0),
('3d798c3f120fdabe32985de46a5fc2fd','e2075474294983e013ee4dd2201c7a73',1,37,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','e496a293dada26f0f0f3d32c78e0acb5',2,114,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','e78f5438b48b39bcbdea61b73679449d',6,13,8767,0),
('3d798c3f120fdabe32985de46a5fc2fd','eda12856b9ad2ccabe62d448756f0991',2,86,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','f34dc8b7a1f55ddd649e41e5707bfa65',2,94,2922,0),
('3d798c3f120fdabe32985de46a5fc2fd','f894427cc1c571f79da49605ef8b112f',1,0,1461,0),
('3d798c3f120fdabe32985de46a5fc2fd','fb2b038ea78e99cb4ca370639f399ce3',2,110,2922,0),
('78cabd40e1e1f417b9f83789c2321f4a','098f6bcd4621d373cade4e832627b4f6',3,0,23414,0),
('78cabd40e1e1f417b9f83789c2321f4a','13333d82700f8335def338037c42febf',1,20,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','17e62166fc8586dfa4d1bc0e1742c08b',1,29,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','39ad9cca8cb13896b27cbfd8bc7a5be4',1,24,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','4a7e2220586348ebbda89da7f33b07a4',1,23,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','4b77a01c9178cf8fcc13fea642393955',1,19,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','4c480b2170d066b2af6f98af80902ce0',1,17,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','5ababd603b22780302dd8d83498e5172',1,32,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','5b970a1d9be0fd100063fd6cd688b73e',1,31,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','65cf48f44869f384e73030683bcfcbc0',2,0,15609,128),
('78cabd40e1e1f417b9f83789c2321f4a','6c14da109e294d1e8155be8aa4b1ce8e',1,30,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','6f6eed92e0f00d675938b9def1ed0b7d',1,2,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','7a8dc91f944d115c7488f24ea53e9543',1,26,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','7c4f29407893c334a6cb7a87bf045c0d',1,34,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','7d0db380a5b95a8ba1da0bca241abda1',1,25,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','7ef8a9b929c5eca8383aa47de36061f5',1,28,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','7f005c3fa691e77c52d3297cc2699072',1,35,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','7f9a983a540e00931a69382161bdd265',1,16,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','855b1fd6af108e5f418efaa817b07f30',1,21,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','87d4eeb7dec7686410748d174c0e0a11',3,0,23414,128),
('78cabd40e1e1f417b9f83789c2321f4a','8ba087bc7bba3706a7920fac8a5b8524',1,27,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','8dbc672497bdc46f88e864bb1121232c',1,1,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','99177f49aaab7e72df45608043b34181',1,4,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','a181a603769c1f98ad927e7367c7aa51',1,33,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','a98931d104a7fb8f30450547d97e7ca5',3,0,23414,128),
('78cabd40e1e1f417b9f83789c2321f4a','b1187eeb4f084994d447cc8ff66074f5',1,3,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','b1310d53db71792f537efc29d477cc39',1,22,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','d2e16e6ef52a45b7468f1da56bba1953',1,12,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','d540f9a8003e11e009342a40200192ea',1,18,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','e78f5438b48b39bcbdea61b73679449d',3,0,23414,128),
('78cabd40e1e1f417b9f83789c2321f4a','f894427cc1c571f79da49605ef8b112f',1,0,7804,0),
('78cabd40e1e1f417b9f83789c2321f4a','fd72a614e3d762dda6bc76bfefae8c5d',1,9,7804,0);
/*!40000 ALTER TABLE `index_rel` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `index_section`
--
DROP TABLE IF EXISTS `index_section`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `index_section` (
`uniqid` int(11) NOT NULL AUTO_INCREMENT,
`phash` varchar(32) NOT NULL,
`phash_t3` varchar(32) NOT NULL,
`rl0` int(10) unsigned NOT NULL DEFAULT 0,
`rl1` int(10) unsigned NOT NULL DEFAULT 0,
`rl2` int(10) unsigned NOT NULL DEFAULT 0,
`page_id` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`uniqid`),
KEY `joinkey` (`phash`,`rl0`),
KEY `page_id` (`page_id`),
KEY `rl0` (`rl0`,`rl1`,`phash`),
KEY `rl0_2` (`rl0`,`phash`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `index_section`
--
LOCK TABLES `index_section` WRITE;
/*!40000 ALTER TABLE `index_section` DISABLE KEYS */;
INSERT INTO `index_section` VALUES
(6,'78cabd40e1e1f417b9f83789c2321f4a','78cabd40e1e1f417b9f83789c2321f4a',1,3,0,3),
(7,'3d798c3f120fdabe32985de46a5fc2fd','3d798c3f120fdabe32985de46a5fc2fd',1,0,0,1);
/*!40000 ALTER TABLE `index_section` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `index_stat_word`
--
DROP TABLE IF EXISTS `index_stat_word`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `index_stat_word` (
`uid` int(11) NOT NULL AUTO_INCREMENT,
`word` varchar(50) NOT NULL DEFAULT '',
`tstamp` int(11) NOT NULL DEFAULT 0,
`pageid` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `tstamp` (`tstamp`,`word`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `index_stat_word`
--
LOCK TABLES `index_stat_word` WRITE;
/*!40000 ALTER TABLE `index_stat_word` DISABLE KEYS */;
/*!40000 ALTER TABLE `index_stat_word` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `index_words`
--
DROP TABLE IF EXISTS `index_words`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `index_words` (
`wid` varchar(32) NOT NULL,
`baseword` varchar(60) NOT NULL DEFAULT '',
`is_stopword` smallint(6) NOT NULL DEFAULT 0,
PRIMARY KEY (`wid`),
KEY `baseword` (`baseword`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `index_words`
--
LOCK TABLES `index_words` WRITE;
/*!40000 ALTER TABLE `index_words` DISABLE KEYS */;
INSERT INTO `index_words` VALUES
('0490b305539f9a2d4fb47a454c3a0dda','nec',0),
('07811dc6c422334ce36a09ff5cd6fe71','2024',0),
('09777ca5702506d4e13ccdf9749cc975','vestibulum',0),
('098f6bcd4621d373cade4e832627b4f6','test',0),
('0b4d37b6b5a48329e90356777832837e','venenatis',0),
('0cc175b9c0f1b6a831c399e269772661','a',0),
('0f759dd1ea6c4c76cedc299039ca4f23','leo',0),
('107536d845520d5adf1f6b9ce2de2f08','augue',0),
('115b0dc1fb0482bd99b59699f65e43a2','accumsan',0),
('12cba3ee81cf4a793796a51b6327c678','copy',0),
('13333d82700f8335def338037c42febf','cras',0),
('13b5bfe96f3e2fe411c9f66f4a582adf','in',0),
('13bf4781726ab43b58cabc2d28a0ef76','malesuada',0),
('14b8f0494c6f1460c3720d0ce692dbca','non',0),
('177544aa797af6f322f8caa5e80e7f24','sed',0),
('17e62166fc8586dfa4d1bc0e1742c08b','43',0),
('1b42ace0041cdb12873f18be468bfecb','pretium',0),
('1d7d802548253180d0d404b0f9530428','gravida',0),
('2365f10b67df48b5648d9f4c397e633f','viverra',0),
('284a9b8c61d69b70d5ac1ed03282ad46','dictum',0),
('29bfe372865737fe2bfcfd3618b1da7d','mi',0),
('2a6571da26602a67be14ea8c5ab82349','das',0),
('2a7daa862e461f029e6e3c170b080b80','nunc',0),
('31185a5a06993cb36ad520c823809478','felis',0),
('34173cb38f07f89ddbebc2ac9128303f','30',0),
('387cfa57545d4814246bbcebe6bc61dc','congue',0),
('38c7b2741b1d86c35f51687f1f56fd00','placerat',0),
('392406f077a3ab6822722d2df998ecd4','duis',0),
('39ad9cca8cb13896b27cbfd8bc7a5be4','praesent',0),
('3b7ca54ce3a9df85300372275fa8bfd8','rutrum',0),
('3cf49b0960fb2ef0ea03d0b991819630','ich',0),
('3e2e1f3fbb6a4df1974726639d1c12a6','schilling',0),
('41868eeb2fe509f484b6fbff817109fd','nisi',0),
('461580541e92155766bee9d9e8f672ea','magna',0),
('46b3931b9959c927df4fc65fdee94b07','about',0),
('4829322d03d1606fb09ae9af59a271d3','eu',0),
('4a7e2220586348ebbda89da7f33b07a4','lectus',0),
('4b77a01c9178cf8fcc13fea642393955','elit',0),
('4c480b2170d066b2af6f98af80902ce0','consectetur',0),
('4c5f59e5cf419bf89144035fdcd88396','risus',0),
('4cdec908de5ca1dcf6c910b685bc6469','projekt',0),
('4de1b7a4dc53e4a84c25ffb7cdb580ee','et',0),
('5593a9e1c77d4f919f3137578dcbe9f3','condimentum',0),
('589ab45c0d07c144000a09b2b27e5fcf','porttitor',0),
('598d4c200461b81522a3328565c25f7c','hallo',0),
('5ababd603b22780302dd8d83498e5172','example.com',0),
('5b970a1d9be0fd100063fd6cd688b73e','3435',0),
('5d12b75cf29cfd720f323167e0bddad3','alle',0),
('618ed7216d6b6389b5054401ff8d73c3','orci',0),
('6211a5112c35bdc646328c4ce88a30fd','tiktok',0),
('628e93f38039e0d664779477c11f2f6f','fringilla',0),
('62cc0b4ebb0b57b40778179234246c38','your',0),
('65cf48f44869f384e73030683bcfcbc0','qorem',0),
('66c64cd3d8cafc59b39bc1a5583f3786','justo',0),
('6c14da109e294d1e8155be8aa4b1ce8e','1231',0),
('6cf444e98d01f65319755c6f3b3da28a','massa',0),
('6f6eed92e0f00d675938b9def1ed0b7d','themen',0),
('75bf68b7982d399df2c2ec675ffcd030','mauris',0),
('7a8dc91f944d115c7488f24ea53e9543','hendrerit',0),
('7c4f29407893c334a6cb7a87bf045c0d','right',0),
('7d0db380a5b95a8ba1da0bca241abda1','at',0),
('7ef8a9b929c5eca8383aa47de36061f5','europarl.europa.eu',0),
('7f005c3fa691e77c52d3297cc2699072','reserved',0),
('7f9a983a540e00931a69382161bdd265','amet',0),
('852d3eaa21dbc9d314ec815fdb4632f6','seas',0),
('855b1fd6af108e5f418efaa817b07f30','vitae',0),
('85d51a1f417de0d0b880a1fa16d0acbd','quisque',0),
('8744b593e102071b1ade5fe7be69afc2','aktuelles',0),
('87b8c5208a039fd475b1e960e814634e','sagittis',0),
('87d4eeb7dec7686410748d174c0e0a11','sit',0),
('8979aaee439f3e99f77b0b9351539b30','artikel',0),
('8ba087bc7bba3706a7920fac8a5b8524','lena.schilling',0),
('8c4d3a946a1fcde2ded7e17651fd0ed7','brand',0),
('8dbc672497bdc46f88e864bb1121232c','lena',0),
('93c731f1c3a84ef05cd54d044c379eaa','company',0),
('954837c257ba043cc028f3989985cc98','cing',0),
('96a3be3cf272e017046d1b2674a52bd3','01',0),
('96d6f2e7e1f705ab5e59c84a6dc009b2','logo',0),
('972890943b6cbe30175f19ee122669db','dui',0),
('98f13708210194c475687be6106a3b84','20',0),
('99177f49aaab7e72df45608043b34181','transparenz',0),
('9dd4e461268c8034f5c8564e155c67a6','x',0),
('a128caa7863de96de226cea34839215c','donec',0),
('a181a603769c1f98ad927e7367c7aa51','all',0),
('a20e24cf828ddf451bdfb0f0d9b86a18','mollis',0),
('a77b3598941cb803eac0fcdafe44fac9','was',0),
('a81ba73d43118ec091f856197a2d0e8d','quam',0),
('a98931d104a7fb8f30450547d97e7ca5','dolor',0),
('ab79957d125e68dd2e06625f0ebb78d0','urna',0),
('ab86a1e1ef70dff97959067b723c5c24','me',0),
('ad0234829205b9033196ba818f7a872b','test2',0),
('ad18a418da4e3cbf4e3e5a70710f2d85','diam',0),
('ad6761e347dfcfbe0513619f06fa03b1','yorem',0),
('ae1a11e90a45f0a32c2677af47378c6c','tellus',0),
('af1f8d9839dd6ffefedebab89761ee7e','sein',0),
('afac73ac1714d827bf56734b02948fe8','soll',0),
('b1187eeb4f084994d447cc8ff66074f5','presse',0),
('b1310d53db71792f537efc29d477cc39','blandit',0),
('b1a5d251fa4fe598cb947ffc42b9cbed','ut',0),
('b80bb7740288fda1f201890375a60c8f','id',0),
('b9bcfe8f89ef61629ec387f6916e2741','lobortis',0),
('bd12a2f7c146e4c5191b12fc9a2739f5','feugiat',0),
('c1111bd512b29e821b120b86446026b8','bin',0),
('c4ca4238a0b923820dcc509a6f75849b','1',0),
('c81e728d9d4c2f636f067f89cc14862c','2',0),
('c94cb6e815f22f3e59e16bd7a49dfd2d','erat',0),
('d2e16e6ef52a45b7468f1da56bba1953','lorem',0),
('d3d9446802a44259755d38e6d163e820','10',0),
('d540f9a8003e11e009342a40200192ea','adipiscing',0),
('d645920e395fedad7bbbed0eca3fe2e0','40',0),
('d7ab6199103be6f3447aa1c4648484c1','adipis',0),
('dcff11e31126935448d655e7da84c1b5','morbi',0),
('de0e693e975be13327a6b7f313ea304f','proin',0),
('e2075474294983e013ee4dd2201c7a73','ac',0),
('e496a293dada26f0f0f3d32c78e0acb5','tristique',0),
('e78f5438b48b39bcbdea61b73679449d','ipsum',0),
('eda12856b9ad2ccabe62d448756f0991','elementum',0),
('f34dc8b7a1f55ddd649e41e5707bfa65','phasellus',0),
('f894427cc1c571f79da49605ef8b112f','team',0),
('fb2b038ea78e99cb4ca370639f399ce3','vulputate',0),
('fd72a614e3d762dda6bc76bfefae8c5d','12/13/2024',0),
('ffe8560492ef96f860b965341d0c9698','instagram',0);
/*!40000 ALTER TABLE `index_words` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pages`
--
DROP TABLE IF EXISTS `pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pages` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`fe_group` varchar(255) NOT NULL DEFAULT '0',
`sorting` int(11) NOT NULL DEFAULT 0,
`rowDescription` text DEFAULT NULL,
`editlock` smallint(5) unsigned NOT NULL DEFAULT 0,
`sys_language_uid` int(11) NOT NULL DEFAULT 0,
`l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_source` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_state` text DEFAULT NULL,
`l10n_diffsource` mediumblob DEFAULT NULL,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`perms_userid` int(10) unsigned NOT NULL DEFAULT 0,
`perms_groupid` int(10) unsigned NOT NULL DEFAULT 0,
`perms_user` smallint(5) unsigned NOT NULL DEFAULT 0,
`perms_group` smallint(5) unsigned NOT NULL DEFAULT 0,
`perms_everybody` smallint(5) unsigned NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`slug` text DEFAULT NULL,
`doktype` int(10) unsigned NOT NULL DEFAULT 0,
`TSconfig` longtext DEFAULT NULL,
`is_siteroot` smallint(5) unsigned NOT NULL DEFAULT 0,
`php_tree_stop` smallint(5) unsigned NOT NULL DEFAULT 0,
`url` varchar(255) NOT NULL DEFAULT '',
`shortcut` int(10) unsigned NOT NULL DEFAULT 0,
`shortcut_mode` int(10) unsigned NOT NULL DEFAULT 0,
`subtitle` varchar(255) NOT NULL DEFAULT '',
`layout` int(10) unsigned NOT NULL DEFAULT 0,
`target` varchar(80) NOT NULL DEFAULT '',
`media` int(10) unsigned NOT NULL DEFAULT 0,
`lastUpdated` bigint(20) NOT NULL DEFAULT 0,
`keywords` longtext DEFAULT NULL,
`cache_timeout` int(10) unsigned NOT NULL DEFAULT 0,
`cache_tags` varchar(255) NOT NULL DEFAULT '',
`newUntil` bigint(20) NOT NULL DEFAULT 0,
`description` longtext DEFAULT NULL,
`no_search` smallint(5) unsigned NOT NULL DEFAULT 0,
`SYS_LASTCHANGED` int(10) unsigned NOT NULL DEFAULT 0,
`abstract` longtext DEFAULT NULL,
`module` varchar(255) NOT NULL DEFAULT '',
`extendToSubpages` smallint(5) unsigned NOT NULL DEFAULT 0,
`author` varchar(255) NOT NULL DEFAULT '',
`author_email` varchar(255) NOT NULL DEFAULT '',
`nav_title` varchar(255) NOT NULL DEFAULT '',
`nav_hide` smallint(5) unsigned NOT NULL DEFAULT 0,
`content_from_pid` int(10) unsigned NOT NULL DEFAULT 0,
`mount_pid` int(10) unsigned NOT NULL DEFAULT 0,
`mount_pid_ol` smallint(6) NOT NULL DEFAULT 0,
`l18n_cfg` smallint(5) unsigned NOT NULL DEFAULT 0,
`backend_layout` varchar(64) NOT NULL DEFAULT '',
`backend_layout_next_level` varchar(64) NOT NULL DEFAULT '',
`tsconfig_includes` longtext DEFAULT NULL,
`categories` int(10) unsigned NOT NULL DEFAULT 0,
`seo_title` varchar(255) NOT NULL DEFAULT '',
`no_index` smallint(5) unsigned NOT NULL DEFAULT 0,
`no_follow` smallint(5) unsigned NOT NULL DEFAULT 0,
`og_title` varchar(255) NOT NULL DEFAULT '',
`og_description` longtext DEFAULT NULL,
`og_image` int(10) unsigned NOT NULL DEFAULT 0,
`twitter_title` varchar(255) NOT NULL DEFAULT '',
`twitter_description` longtext DEFAULT NULL,
`twitter_image` int(10) unsigned NOT NULL DEFAULT 0,
`twitter_card` varchar(255) NOT NULL DEFAULT '',
`canonical_link` text NOT NULL DEFAULT '',
`sitemap_priority` decimal(2,1) NOT NULL DEFAULT 0.5,
`sitemap_changefreq` varchar(10) NOT NULL DEFAULT '',
PRIMARY KEY (`uid`),
KEY `determineSiteRoot` (`is_siteroot`),
KEY `language_identifier` (`l10n_parent`,`sys_language_uid`),
KEY `slug` (`slug`(127)),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `translation_source` (`l10n_source`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pages`
--
LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` VALUES
(1,0,1733950587,1676910413,0,0,0,0,'',256,NULL,0,0,0,0,NULL,'{\"doktype\":\"\",\"title\":\"\",\"slug\":\"\",\"nav_title\":\"\",\"subtitle\":\"\",\"seo_title\":\"\",\"description\":\"\",\"no_index\":\"\",\"no_follow\":\"\",\"canonical_link\":\"\",\"sitemap_changefreq\":\"\",\"sitemap_priority\":\"\",\"og_title\":\"\",\"og_description\":\"\",\"og_image\":\"\",\"twitter_title\":\"\",\"twitter_description\":\"\",\"twitter_image\":\"\",\"twitter_card\":\"\",\"abstract\":\"\",\"keywords\":\"\",\"author\":\"\",\"author_email\":\"\",\"lastUpdated\":\"\",\"layout\":\"\",\"newUntil\":\"\",\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"content_from_pid\":\"\",\"target\":\"\",\"cache_timeout\":\"\",\"cache_tags\":\"\",\"is_siteroot\":\"\",\"php_tree_stop\":\"\",\"module\":\"\",\"media\":\"\",\"tsconfig_includes\":\"\",\"TSconfig\":\"\",\"l18n_cfg\":\"\",\"hidden\":\"\",\"nav_hide\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"extendToSubpages\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"categories\":\"\",\"rowDescription\":\"\",\"no_search\":\"\",\"tx_kesearch_tags\":\"\",\"tx_kesearch_abstract\":\"\",\"tx_kesearch_resultimage\":\"\"}',0,0,0,0,1,1,31,31,0,'example.com','/',1,NULL,1,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1733950587,NULL,'',0,'','','',0,0,0,0,0,'pagets__default','pagets__default',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'summary','',0.5,''),
(2,1,1734118669,1733951190,0,0,0,0,'0',256,NULL,0,0,0,0,NULL,'{\"title\":\"\"}',0,0,0,0,1,0,31,27,0,'Transparenz','/test',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1734118669,NULL,'',0,'','','',0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(3,1,1734118658,1733951195,0,0,0,0,'0',128,NULL,0,0,0,0,NULL,'{\"title\":\"\"}',0,0,0,0,1,0,31,27,0,'Themen','/test2',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1734118658,NULL,'',0,'','','',0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(4,1,1734118692,1734046332,0,0,0,0,'0',48,NULL,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,1,0,31,27,0,'News','/news',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(5,1,1734118696,1734118677,0,0,0,0,'0',192,NULL,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,1,0,31,27,0,'Presse','/presse',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1734118696,NULL,'',0,'','','',0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(6,1,1734118694,1734118684,0,0,0,0,'0',96,NULL,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,1,0,31,27,0,'Team Lena','/team-lena',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1734118694,NULL,'',0,'','','',0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,'');
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_be_shortcuts`
--
DROP TABLE IF EXISTS `sys_be_shortcuts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_be_shortcuts` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` int(10) unsigned NOT NULL DEFAULT 0,
`route` varchar(255) NOT NULL DEFAULT '',
`arguments` text DEFAULT NULL,
`description` varchar(255) NOT NULL DEFAULT '',
`sorting` int(11) NOT NULL DEFAULT 0,
`sc_group` smallint(6) NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `event` (`userid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_be_shortcuts`
--
LOCK TABLES `sys_be_shortcuts` WRITE;
/*!40000 ALTER TABLE `sys_be_shortcuts` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_be_shortcuts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_category`
--
DROP TABLE IF EXISTS `sys_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_category` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`sorting` int(11) NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`sys_language_uid` int(11) NOT NULL DEFAULT 0,
`l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_state` text DEFAULT NULL,
`l10n_diffsource` mediumblob DEFAULT NULL,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`items` int(11) NOT NULL DEFAULT 0,
`parent` int(10) unsigned NOT NULL DEFAULT 0,
`images` int(10) unsigned DEFAULT 0,
`single_pid` int(10) unsigned NOT NULL DEFAULT 0,
`shortcut` int(11) NOT NULL DEFAULT 0,
`import_id` varchar(100) NOT NULL DEFAULT '',
`import_source` varchar(100) NOT NULL DEFAULT '',
`seo_title` varchar(255) NOT NULL DEFAULT '',
`seo_description` text DEFAULT NULL,
`seo_headline` varchar(255) NOT NULL DEFAULT '',
`seo_text` text DEFAULT NULL,
`slug` varchar(2048) DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `category_parent` (`parent`),
KEY `category_list` (`pid`,`deleted`,`sys_language_uid`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`),
KEY `import` (`import_id`,`import_source`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_category`
--
LOCK TABLES `sys_category` WRITE;
/*!40000 ALTER TABLE `sys_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_category_record_mm`
--
DROP TABLE IF EXISTS `sys_category_record_mm`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_category_record_mm` (
`uid_local` int(10) unsigned NOT NULL DEFAULT 0,
`uid_foreign` int(10) unsigned NOT NULL DEFAULT 0,
`sorting` int(10) unsigned NOT NULL DEFAULT 0,
`sorting_foreign` int(10) unsigned NOT NULL DEFAULT 0,
`tablenames` varchar(64) NOT NULL DEFAULT '',
`fieldname` varchar(64) NOT NULL DEFAULT '',
PRIMARY KEY (`uid_local`,`uid_foreign`,`tablenames`,`fieldname`),
KEY `uid_local` (`uid_local`),
KEY `uid_foreign` (`uid_foreign`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_category_record_mm`
--
LOCK TABLES `sys_category_record_mm` WRITE;
/*!40000 ALTER TABLE `sys_category_record_mm` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_category_record_mm` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_csp_resolution`
--
DROP TABLE IF EXISTS `sys_csp_resolution`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_csp_resolution` (
`summary` varchar(40) NOT NULL,
`created` int(10) unsigned NOT NULL,
`scope` varchar(264) NOT NULL,
`mutation_identifier` text DEFAULT NULL,
`mutation_collection` mediumtext DEFAULT NULL,
`meta` mediumtext DEFAULT NULL,
PRIMARY KEY (`summary`),
KEY `created` (`created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_csp_resolution`
--
LOCK TABLES `sys_csp_resolution` WRITE;
/*!40000 ALTER TABLE `sys_csp_resolution` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_csp_resolution` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file`
--
DROP TABLE IF EXISTS `sys_file`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`last_indexed` int(11) NOT NULL DEFAULT 0,
`missing` smallint(5) unsigned NOT NULL DEFAULT 0,
`storage` int(10) unsigned NOT NULL DEFAULT 0,
`type` int(10) unsigned NOT NULL DEFAULT 0,
`metadata` int(10) unsigned NOT NULL DEFAULT 0,
`identifier` text DEFAULT NULL,
`identifier_hash` varchar(40) NOT NULL DEFAULT '',
`folder_hash` varchar(40) NOT NULL DEFAULT '',
`extension` varchar(255) NOT NULL DEFAULT '',
`mime_type` varchar(255) NOT NULL DEFAULT '',
`name` tinytext DEFAULT NULL,
`sha1` varchar(40) NOT NULL DEFAULT '',
`size` int(11) NOT NULL DEFAULT 0,
`creation_date` int(11) NOT NULL DEFAULT 0,
`modification_date` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `sel01` (`storage`,`identifier_hash`),
KEY `folder` (`storage`,`folder_hash`),
KEY `tstamp` (`tstamp`),
KEY `lastindex` (`last_indexed`),
KEY `sha1` (`sha1`),
KEY `parent` (`pid`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file`
--
LOCK TABLES `sys_file` WRITE;
/*!40000 ALTER TABLE `sys_file` DISABLE KEYS */;
INSERT INTO `sys_file` VALUES
(1,0,1676911371,0,0,0,2,0,'/typo3conf/ext/bootstrap_package/Resources/Public/Images/BootstrapPackage.svg','53b7aaf32363271515e80e6c7b25293292185218','27aadec2782a38a84423e8476091a41d1dbdbc06','svg','image/svg+xml','BootstrapPackage.svg','a6fb0cc7b50579d6255f16171147695a55b93c27',3843,1676910050,1670944995),
(2,0,1676911371,0,0,0,2,0,'/typo3conf/ext/bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg','5b24af7f7f2c99d8a6188015bc8298396b952ab7','27aadec2782a38a84423e8476091a41d1dbdbc06','svg','image/svg+xml','BootstrapPackageInverted.svg','493f5cd69ede03cf7d436e92481422145674b907',3784,1676910050,1670944995),
(3,0,1733654881,1733654881,0,0,2,0,'/_assets/9b80d86a98af3ecc38aabe297d2c3695/Images/BootstrapPackage.svg','760d1af8a806b3df149ba4826a7f15c966215a7c','5e8c86041e2022a51f63bbaf56b3ae90109db902','svg','image/svg+xml','BootstrapPackage.svg','a6fb0cc7b50579d6255f16171147695a55b93c27',3843,1733654845,1728925893),
(4,0,1733654881,1733654881,0,0,2,0,'/_assets/9b80d86a98af3ecc38aabe297d2c3695/Images/BootstrapPackageInverted.svg','f4a6353e4d97d78f98f9d3ab740020169d2f33db','5e8c86041e2022a51f63bbaf56b3ae90109db902','svg','image/svg+xml','BootstrapPackageInverted.svg','493f5cd69ede03cf7d436e92481422145674b907',3784,1733654845,1728925893),
(5,0,1733929202,1733929202,0,0,2,0,'/_assets/eefdfe17fdb4097c1f2a6261613e182b/Images/logo.png','585090df9f5adae4f728788d5bd69a553e2ecd08','27f7c684ca1890952ba3e74c0bcdac22d3affb7e','png','image/png','logo.png','77ce90992ebc4987066329ad3fa3c82e2fb2ed55',7076,1733926916,1733926891),
(6,0,1733967785,1733967785,0,1,2,0,'/user_upload/1024-1536.jpg','702cf3b61b1a56554a1bba4dee475d94122cc4eb','19669f1e02c2f16705ec7587044c66443be70725','jpg','image/jpeg','1024-1536.jpg','ba179e44ccd546a9801bbb632aa9498ffafade3c',243413,1733967785,1733967785),
(7,0,1734044751,1734044751,0,1,5,0,'/user_upload/index.html','c25533f303185517ca3e1e24b215d53aa74076d2','19669f1e02c2f16705ec7587044c66443be70725','html','application/x-empty','index.html','da39a3ee5e6b4b0d3255bfef95601890afd80709',0,1733654847,1733654847),
(8,0,1734106168,1734106168,0,0,2,0,'/_assets/4af58cb76f71502508b6639ab1e54a78/Images/background.png','1acf1307b71314947f58205598a5f8d4c3ce91a0','8fa5a774947767091f06654f56b9b8728154eeab','png','image/png','background.png','a73569634984ede65ff20d248364b9f4bf6738b6',879355,1734104728,1734104678),
(9,0,1734111517,1734111517,0,1,2,0,'/user_upload/bild-lena.png','a51e8b57b42057eaf71fabacbe0a9fe13bf2c1eb','19669f1e02c2f16705ec7587044c66443be70725','png','image/png','bild-lena.png','0f492895b5bb13f1937605de497d413a8a6fa5ea',414429,1734111517,1734111517),
(10,0,1734113111,1734113111,0,0,2,0,'/_assets/4af58cb76f71502508b6639ab1e54a78/Images/logo.png','b039e97d5adc583855d3d8ad72bda906fa9facb0','8fa5a774947767091f06654f56b9b8728154eeab','png','image/png','logo.png','77ce90992ebc4987066329ad3fa3c82e2fb2ed55',7076,1734113040,1734113004),
(11,0,1734118797,1734118797,0,1,2,0,'/user_upload/241121_Lena_schilling_COP-1.png','29ed43ef22ffc4d7e5f02b57ef892190dbb9f269','19669f1e02c2f16705ec7587044c66443be70725','png','image/png','241121_Lena_schilling_COP-1.png','bcfc616890f9337dd92f4698b7b19d8e95545c5e',560704,1734118797,1734118797);
/*!40000 ALTER TABLE `sys_file` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file_collection`
--
DROP TABLE IF EXISTS `sys_file_collection`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file_collection` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`sys_language_uid` int(11) NOT NULL DEFAULT 0,
`l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_state` text DEFAULT NULL,
`l10n_diffsource` mediumblob DEFAULT NULL,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`title` tinytext DEFAULT NULL,
`type` varchar(30) NOT NULL DEFAULT 'static',
`files` int(10) unsigned NOT NULL DEFAULT 0,
`recursive` smallint(5) unsigned NOT NULL DEFAULT 0,
`category` int(10) unsigned NOT NULL DEFAULT 0,
`folder_identifier` longtext DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file_collection`
--
LOCK TABLES `sys_file_collection` WRITE;
/*!40000 ALTER TABLE `sys_file_collection` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_file_collection` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file_metadata`
--
DROP TABLE IF EXISTS `sys_file_metadata`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file_metadata` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`sys_language_uid` int(11) NOT NULL DEFAULT 0,
`l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_state` text DEFAULT NULL,
`l10n_diffsource` mediumblob DEFAULT NULL,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`file` int(10) unsigned NOT NULL DEFAULT 0,
`title` tinytext DEFAULT NULL,
`width` int(11) NOT NULL DEFAULT 0,
`height` int(11) NOT NULL DEFAULT 0,
`description` longtext DEFAULT NULL,
`alternative` text DEFAULT NULL,
`categories` int(10) unsigned NOT NULL DEFAULT 0,
`visible` smallint(5) unsigned NOT NULL DEFAULT 1,
`status` varchar(24) DEFAULT '',
`keywords` longtext DEFAULT NULL,
`caption` longtext DEFAULT NULL,
`creator_tool` varchar(255) NOT NULL DEFAULT '',
`download_name` varchar(255) NOT NULL DEFAULT '',
`creator` varchar(255) NOT NULL DEFAULT '',
`publisher` varchar(120) NOT NULL DEFAULT '',
`source` varchar(255) NOT NULL DEFAULT '',
`copyright` longtext DEFAULT NULL,
`location_country` varchar(45) NOT NULL DEFAULT '',
`location_region` varchar(45) NOT NULL DEFAULT '',
`location_city` varchar(45) NOT NULL DEFAULT '',
`latitude` decimal(24,14) DEFAULT 0.00000000000000,
`longitude` decimal(24,14) DEFAULT 0.00000000000000,
`ranking` int(10) unsigned NOT NULL DEFAULT 0,
`content_creation_date` bigint(20) NOT NULL DEFAULT 0,
`content_modification_date` bigint(20) NOT NULL DEFAULT 0,
`note` longtext DEFAULT NULL,
`unit` varchar(3) NOT NULL DEFAULT '',
`duration` int(11) NOT NULL DEFAULT 0,
`color_space` varchar(4) NOT NULL DEFAULT '',
`pages` int(10) unsigned DEFAULT 0,
`language` varchar(45) NOT NULL DEFAULT '',
`fe_groups` longtext DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `file` (`file`),
KEY `fal_filelist` (`l10n_parent`,`sys_language_uid`),
KEY `parent` (`pid`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file_metadata`
--
LOCK TABLES `sys_file_metadata` WRITE;
/*!40000 ALTER TABLE `sys_file_metadata` DISABLE KEYS */;
INSERT INTO `sys_file_metadata` VALUES
(1,0,1676911371,1676911371,0,0,NULL,'',0,0,0,0,1,NULL,244,68,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
(2,0,1676911371,1676911371,0,0,NULL,'',0,0,0,0,2,NULL,244,68,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
(3,0,1733654881,1733654881,0,0,NULL,'',0,0,0,0,3,NULL,244,68,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
(4,0,1733654881,1733654881,0,0,NULL,'',0,0,0,0,4,NULL,244,68,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
(5,0,1733929202,1733929202,0,0,NULL,'',0,0,0,0,5,NULL,139,80,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
(6,0,1733967785,1733967785,0,0,NULL,'',0,0,0,0,6,NULL,1024,1536,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
(7,0,1734044751,1734044751,0,0,NULL,'',0,0,0,0,7,NULL,0,0,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
(8,0,1734106168,1734106168,0,0,NULL,'',0,0,0,0,8,NULL,1440,729,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
(9,0,1734111517,1734111517,0,0,NULL,'',0,0,0,0,9,NULL,603,608,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
(10,0,1734113111,1734113111,0,0,NULL,'',0,0,0,0,10,NULL,139,80,NULL,NULL,0,1,'',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL),
(11,0,1734218228,1734118797,0,0,NULL,'{\"title\":\"\",\"description\":\"\",\"ranking\":\"\",\"keywords\":\"\",\"alternative\":\"\",\"caption\":\"\",\"download_name\":\"\",\"sys_language_uid\":\"\",\"creator\":\"\",\"creator_tool\":\"\",\"publisher\":\"\",\"source\":\"\",\"copyright\":\"\",\"language\":\"\",\"location_country\":\"\",\"location_region\":\"\",\"location_city\":\"\",\"latitude\":\"\",\"longitude\":\"\",\"content_creation_date\":\"\",\"content_modification_date\":\"\",\"visible\":\"\",\"status\":\"\",\"fe_groups\":\"\",\"categories\":\"\"}',0,0,0,0,11,NULL,816,492,NULL,'A cool image',0,1,'1',NULL,NULL,'','','','','',NULL,'','','',0.00000000000000,0.00000000000000,0,0,0,NULL,'',0,'',0,'',NULL);
/*!40000 ALTER TABLE `sys_file_metadata` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file_processedfile`
--
DROP TABLE IF EXISTS `sys_file_processedfile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file_processedfile` (
`uid` int(11) NOT NULL AUTO_INCREMENT,
`tstamp` int(11) NOT NULL DEFAULT 0,
`crdate` int(11) NOT NULL DEFAULT 0,
`storage` int(11) NOT NULL DEFAULT 0,
`original` int(11) NOT NULL DEFAULT 0,
`identifier` varchar(512) NOT NULL DEFAULT '',
`name` tinytext DEFAULT NULL,
`processing_url` text DEFAULT NULL,
`configuration` blob DEFAULT NULL,
`configurationsha1` varchar(40) NOT NULL DEFAULT '',
`originalfilesha1` varchar(40) NOT NULL DEFAULT '',
`task_type` varchar(200) NOT NULL DEFAULT '',
`checksum` varchar(32) NOT NULL DEFAULT '',
`width` int(11) DEFAULT 0,
`height` int(11) DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `combined_1` (`original`,`task_type`(100),`configurationsha1`),
KEY `identifier` (`storage`,`identifier`(180))
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file_processedfile`
--
LOCK TABLES `sys_file_processedfile` WRITE;
/*!40000 ALTER TABLE `sys_file_processedfile` DISABLE KEYS */;
INSERT INTO `sys_file_processedfile` VALUES
(1,1676911371,1676911371,0,1,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','a6fb0cc7b50579d6255f16171147695a55b93c27','Image.CropScaleMask','1250535e51',244,68),
(2,1676911371,1676911371,0,2,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','493f5cd69ede03cf7d436e92481422145674b907','Image.CropScaleMask','a4049a3f3f',244,68),
(3,1733654881,1733654881,0,3,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','a6fb0cc7b50579d6255f16171147695a55b93c27','Image.CropScaleMask','6c17aae52c',244,68),
(4,1733654881,1733654881,0,4,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','493f5cd69ede03cf7d436e92481422145674b907','Image.CropScaleMask','4211b32654',244,68),
(5,1733929202,1733929202,0,5,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','77ce90992ebc4987066329ad3fa3c82e2fb2ed55','Image.CropScaleMask','3d0b92428f',0,0),
(6,1733967837,1733967785,1,6,'/_processed_/d/4/preview_1024-1536_b89610d18e.jpg','preview_1024-1536_b89610d18e.jpg','','a:2:{s:5:\"width\";i:64;s:6:\"height\";i:64;}','551dfa8957f1a04693c61acf34bc959a1ca971c4','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.Preview','b89610d18e',64,64),
(7,1733967785,1733967785,1,6,'/_processed_/d/4/csm_1024-1536_7ad5a7c77a.jpg','csm_1024-1536_7ad5a7c77a.jpg','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";i:150;s:4:\"crop\";N;}','cfe93cbb07d0cfbe7800b799777ad2e70305dbab','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.CropScaleMask','7ad5a7c77a',100,150),
(8,1733967785,1733967785,1,6,'/_processed_/d/4/csm_1024-1536_372c3cf157.jpg','csm_1024-1536_372c3cf157.jpg','','a:3:{s:8:\"maxWidth\";i:145;s:9:\"maxHeight\";i:45;s:6:\"height\";s:3:\"45m\";}','99641ee1e111db8018e526d3105ad5631f8f88a4','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.CropScaleMask','372c3cf157',30,45),
(9,1733968143,1733968143,1,6,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.CropScaleMask','1a933ba5cf',0,0),
(10,1734211136,1734044751,1,6,'/_processed_/d/4/csm_1024-1536_50d82c01f5.jpg','csm_1024-1536_50d82c01f5.jpg','','a:2:{s:5:\"width\";s:3:\"32c\";s:6:\"height\";s:3:\"32c\";}','48ec22f851d7822181aeed9649f97929e5f0c410','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.CropScaleMask','50d82c01f5',32,32),
(11,1734044751,1734044751,1,6,'/_processed_/d/4/csm_1024-1536_a7bce6e8a8.jpg','csm_1024-1536_a7bce6e8a8.jpg','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";i:166;s:9:\"maxHeight\";i:115;s:4:\"crop\";N;}','42bbd46565440d020e85026168e5aeb9653d29fa','ba179e44ccd546a9801bbb632aa9498ffafade3c','Image.CropScaleMask','a7bce6e8a8',77,115),
(12,1734106168,1734106168,0,8,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','a73569634984ede65ff20d248364b9f4bf6738b6','Image.CropScaleMask','6c80338a4b',0,0),
(13,1734111518,1734111517,1,9,'/_processed_/1/5/preview_bild-lena_2d1e64852b.png','preview_bild-lena_2d1e64852b.png','','a:2:{s:5:\"width\";i:64;s:6:\"height\";i:64;}','551dfa8957f1a04693c61acf34bc959a1ca971c4','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.Preview','2d1e64852b',63,64),
(14,1734111518,1734111518,1,9,'/_processed_/1/5/csm_bild-lena_9e29307e2d.png','csm_bild-lena_9e29307e2d.png','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";i:150;s:4:\"crop\";N;}','cfe93cbb07d0cfbe7800b799777ad2e70305dbab','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','9e29307e2d',149,150),
(15,1734111518,1734111518,1,9,'/_processed_/1/5/csm_bild-lena_6252e1ae06.png','csm_bild-lena_6252e1ae06.png','','a:3:{s:8:\"maxWidth\";i:145;s:9:\"maxHeight\";i:45;s:6:\"height\";s:3:\"45m\";}','99641ee1e111db8018e526d3105ad5631f8f88a4','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','6252e1ae06',45,45),
(16,1734111522,1734111522,1,9,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','8ebaf01a6f',0,0),
(17,1734113111,1734113111,0,10,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','77ce90992ebc4987066329ad3fa3c82e2fb2ed55','Image.CropScaleMask','b10865786d',0,0),
(18,1734193624,1734118797,1,11,'/_processed_/9/9/preview_241121_Lena_schilling_COP-1_ccc6924b90.png','preview_241121_Lena_schilling_COP-1_ccc6924b90.png','','a:2:{s:5:\"width\";i:64;s:6:\"height\";i:64;}','551dfa8957f1a04693c61acf34bc959a1ca971c4','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.Preview','ccc6924b90',64,64),
(19,1734118798,1734118798,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_1cf89eb5e7.png','csm_241121_Lena_schilling_COP-1_1cf89eb5e7.png','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";i:150;s:4:\"crop\";N;}','cfe93cbb07d0cfbe7800b799777ad2e70305dbab','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','1cf89eb5e7',249,150),
(20,1734118798,1734118798,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_e28f22655f.png','csm_241121_Lena_schilling_COP-1_e28f22655f.png','','a:3:{s:8:\"maxWidth\";i:145;s:9:\"maxHeight\";i:45;s:6:\"height\";s:3:\"45m\";}','99641ee1e111db8018e526d3105ad5631f8f88a4','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','e28f22655f',75,45),
(21,1734118886,1734118886,1,11,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','24f48d5b4de7d99b7144e6559156976855e74b5d','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','4dbae9df0c',0,0),
(22,1734211136,1734120283,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_4b708a0d0f.png','csm_241121_Lena_schilling_COP-1_4b708a0d0f.png','','a:2:{s:5:\"width\";s:3:\"32c\";s:6:\"height\";s:3:\"32c\";}','48ec22f851d7822181aeed9649f97929e5f0c410','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','4b708a0d0f',32,32),
(23,1734120283,1734120283,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_c5ecdd5c26.png','csm_241121_Lena_schilling_COP-1_c5ecdd5c26.png','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";i:166;s:9:\"maxHeight\";i:115;s:4:\"crop\";N;}','42bbd46565440d020e85026168e5aeb9653d29fa','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','c5ecdd5c26',166,100),
(24,1734211136,1734120283,1,9,'/_processed_/1/5/csm_bild-lena_17708d82bf.png','csm_bild-lena_17708d82bf.png','','a:2:{s:5:\"width\";s:3:\"32c\";s:6:\"height\";s:3:\"32c\";}','48ec22f851d7822181aeed9649f97929e5f0c410','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','17708d82bf',32,32),
(25,1734120283,1734120283,1,9,'/_processed_/1/5/csm_bild-lena_a9c2f3accb.png','csm_bild-lena_a9c2f3accb.png','','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";i:166;s:9:\"maxHeight\";i:115;s:4:\"crop\";N;}','42bbd46565440d020e85026168e5aeb9653d29fa','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','a9c2f3accb',114,115),
(26,1734134520,1734134520,1,11,'',NULL,'','a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";i:1200;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','1495e2df9df1b6ca7f74752327ebb626a23b3676','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','8e771a7e26',0,0),
(27,1734134520,1734134520,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_d1ed10eb91.png','csm_241121_Lena_schilling_COP-1_d1ed10eb91.png',NULL,'a:7:{s:5:\"width\";N;s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";i:282;s:9:\"maxHeight\";s:0:\"\";s:4:\"crop\";N;}','46a68eaf10fc51ac2a48086b40820bff1e0b1126','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','d1ed10eb91',282,170),
(28,1734139495,1734139495,1,9,'/_processed_/1/5/csm_bild-lena_cf92e34fb3.png','csm_bild-lena_cf92e34fb3.png',NULL,'a:7:{s:5:\"width\";s:4:\"320c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','2e508fcff7c6399252b8ddc8812dff4f0cb45cef','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','cf92e34fb3',320,323),
(29,1734139495,1734139495,1,9,'/_processed_/1/5/csm_bild-lena_6d68ee4c50.png','csm_bild-lena_6d68ee4c50.png',NULL,'a:7:{s:5:\"width\";s:4:\"768c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','73c50bfdd0f47bb2bee481ec0162837e0a1396d1','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','6d68ee4c50',768,774),
(30,1734139495,1734139495,1,9,'/_processed_/1/5/csm_bild-lena_5ad5a6ca3e.png','csm_bild-lena_5ad5a6ca3e.png',NULL,'a:7:{s:5:\"width\";s:5:\"1024c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','6b53cb4a4855d773f37568a4028e88f0d0f8e68a','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','5ad5a6ca3e',1024,1032),
(31,1734139495,1734139495,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_fc96ced070.png','csm_241121_Lena_schilling_COP-1_fc96ced070.png',NULL,'a:7:{s:5:\"width\";s:4:\"320c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','2e508fcff7c6399252b8ddc8812dff4f0cb45cef','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','fc96ced070',320,193),
(32,1734139495,1734139495,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_5a00a78456.png','csm_241121_Lena_schilling_COP-1_5a00a78456.png',NULL,'a:7:{s:5:\"width\";s:4:\"768c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','73c50bfdd0f47bb2bee481ec0162837e0a1396d1','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','5a00a78456',768,463),
(33,1734139495,1734139495,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_699c25b112.png','csm_241121_Lena_schilling_COP-1_699c25b112.png',NULL,'a:7:{s:5:\"width\";s:5:\"1024c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','6b53cb4a4855d773f37568a4028e88f0d0f8e68a','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','699c25b112',1024,617),
(34,1734139862,1734139862,1,9,'/_processed_/1/5/csm_bild-lena_5c429f0784.png','csm_bild-lena_5c429f0784.png',NULL,'a:3:{s:5:\"width\";s:5:\"1024c\";s:6:\"height\";i:0;s:4:\"crop\";N;}','6e5595438acb37078301cf14a5dc79d85a59d167','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','5c429f0784',1024,1032),
(35,1734139862,1734139862,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_1541a6ec0a.png','csm_241121_Lena_schilling_COP-1_1541a6ec0a.png',NULL,'a:3:{s:5:\"width\";s:5:\"1024c\";s:6:\"height\";i:0;s:4:\"crop\";N;}','6e5595438acb37078301cf14a5dc79d85a59d167','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','1541a6ec0a',1024,617),
(36,1734174347,1734174347,1,9,'/_processed_/1/5/csm_bild-lena_6e3b392e47.png','csm_bild-lena_6e3b392e47.png',NULL,'a:7:{s:5:\"width\";s:4:\"384c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','cca86486cfbe85de07d4c69267ce07de0acf0c7e','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','6e3b392e47',384,387),
(37,1734174347,1734174347,1,9,'/_processed_/1/5/csm_bild-lena_d81fd8870e.png','csm_bild-lena_d81fd8870e.png',NULL,'a:7:{s:5:\"width\";s:4:\"600c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','8fad3e7e67bcd8377b7288bb939cad73a2f202e7','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','d81fd8870e',600,605),
(38,1734174347,1734174347,1,9,'/_processed_/1/5/csm_bild-lena_7b19df6e5c.png','csm_bild-lena_7b19df6e5c.png',NULL,'a:7:{s:5:\"width\";s:4:\"430c\";s:6:\"height\";N;s:8:\"minWidth\";N;s:9:\"minHeight\";N;s:8:\"maxWidth\";N;s:9:\"maxHeight\";N;s:4:\"crop\";N;}','6330646aab86d49cc21c61f4a18c6eb620f5a765','0f492895b5bb13f1937605de497d413a8a6fa5ea','Image.CropScaleMask','7b19df6e5c',430,434),
(39,1734193548,1734193548,1,11,'/_processed_/9/9/csm_241121_Lena_schilling_COP-1_c383449a97.png','csm_241121_Lena_schilling_COP-1_c383449a97.png',NULL,'a:3:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"crop\";N;}','c64d0674edd7b8cc2e73865f5331aa550bb3adc4','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.CropScaleMask','c383449a97',300,180),
(40,1734218217,1734218216,1,11,'/_processed_/9/9/preview_241121_Lena_schilling_COP-1_11e9f87e70.png','preview_241121_Lena_schilling_COP-1_11e9f87e70.png','','a:2:{s:5:\"width\";i:150;s:6:\"height\";i:150;}','55d97d4e532f03dbc8a5053eac06a25a43ca2e20','bcfc616890f9337dd92f4698b7b19d8e95545c5e','Image.Preview','11e9f87e70',150,150);
/*!40000 ALTER TABLE `sys_file_processedfile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file_reference`
--
DROP TABLE IF EXISTS `sys_file_reference`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file_reference` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`sys_language_uid` int(11) NOT NULL DEFAULT 0,
`l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_state` text DEFAULT NULL,
`l10n_diffsource` mediumblob DEFAULT NULL,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`uid_local` int(11) NOT NULL DEFAULT 0,
`uid_foreign` int(11) NOT NULL DEFAULT 0,
`tablenames` varchar(64) NOT NULL DEFAULT '',
`fieldname` varchar(64) NOT NULL DEFAULT '',
`sorting_foreign` int(11) NOT NULL DEFAULT 0,
`title` tinytext DEFAULT NULL,
`description` longtext DEFAULT NULL,
`alternative` text DEFAULT NULL,
`link` text NOT NULL DEFAULT '',
`crop` longtext DEFAULT NULL,
`autoplay` smallint(5) unsigned NOT NULL DEFAULT 0,
`showinpreview` smallint(6) NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `tablenames_fieldname` (`tablenames`(32),`fieldname`(12)),
KEY `deleted` (`deleted`),
KEY `uid_local` (`uid_local`),
KEY `uid_foreign` (`uid_foreign`),
KEY `combined_1` (`l10n_parent`,`t3ver_oid`,`t3ver_wsid`,`t3ver_state`,`deleted`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file_reference`
--
LOCK TABLES `sys_file_reference` WRITE;
/*!40000 ALTER TABLE `sys_file_reference` DISABLE KEYS */;
INSERT INTO `sys_file_reference` VALUES
(1,1,1733967793,1733967793,0,0,0,0,NULL,'',0,0,0,0,6,3,'tt_content','cloonar_hero_image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(2,1,1734111519,1733967845,1,0,0,0,NULL,'',0,0,0,0,6,3,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(3,1,1734120286,1734044772,1,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,6,5,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(4,1,1734120296,1734045432,1,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,6,6,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(5,4,1734118803,1734046430,1,0,0,0,NULL,'',0,0,0,0,6,1,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(6,4,1734118806,1734046445,1,0,0,0,NULL,'',0,0,0,0,6,5,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(7,4,1734118808,1734046447,1,0,0,0,NULL,'',0,0,0,0,6,6,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(8,4,1734118814,1734046449,1,0,0,0,NULL,'',0,0,0,0,6,7,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(9,4,1734118814,1734046451,1,0,0,0,NULL,'',0,0,0,0,6,8,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(10,4,1734118814,1734050640,1,0,0,0,NULL,'',0,0,0,0,6,9,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(11,4,1734118814,1734050642,1,0,0,0,NULL,'',0,0,0,0,6,10,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(12,4,1734118814,1734050644,1,0,0,0,NULL,'',0,0,0,0,6,11,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(13,4,1734118814,1734050646,1,0,0,0,NULL,'',0,0,0,0,6,12,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(14,1,1734116617,1734111519,0,0,0,0,NULL,'{\"alternative\":\"\",\"description\":\"\",\"link\":\"\",\"title\":\"\",\"crop\":\"\",\"uid_local\":\"\",\"hidden\":\"\",\"sys_language_uid\":\"\"}',0,0,0,0,9,3,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(15,4,1734118969,1734118803,0,0,0,0,NULL,'{\"showinpreview\":\"\",\"alternative\":\"\",\"description\":\"\",\"link\":\"\",\"title\":\"\",\"crop\":\"\",\"uid_local\":\"\",\"hidden\":\"\",\"sys_language_uid\":\"\"}',0,0,0,0,11,1,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(16,4,1734118974,1734118826,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,13,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(17,4,1734118828,1734118828,0,0,0,0,NULL,'',0,0,0,0,11,14,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(18,4,1734118830,1734118830,0,0,0,0,NULL,'',0,0,0,0,11,15,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(19,4,1734118832,1734118832,0,0,0,0,NULL,'',0,0,0,0,11,16,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(20,4,1734118834,1734118834,0,0,0,0,NULL,'',0,0,0,0,11,17,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(21,4,1734118837,1734118837,0,0,0,0,NULL,'',0,0,0,0,11,18,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(22,4,1734118839,1734118839,0,0,0,0,NULL,'',0,0,0,0,11,19,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(23,4,1734118841,1734118841,0,0,0,0,NULL,'',0,0,0,0,11,20,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(24,4,1734118993,1734118843,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,21,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(25,4,1734118987,1734118845,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,22,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(26,4,1734118981,1734118847,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,23,'tx_news_domain_model_news','fal_media',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(27,1,1734193266,1734120286,1,0,0,0,NULL,'',0,0,0,0,11,5,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(28,1,1734193266,1734120296,1,0,0,0,NULL,'',0,0,0,0,11,6,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(29,1,1734211098,1734193546,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,11,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(30,1,1734211105,1734194797,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,11,12,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0),
(31,6,1734211140,1734211140,0,0,0,0,NULL,'',0,0,0,0,9,13,'tt_content','image',1,NULL,NULL,NULL,'','{\"default\":{\"cropArea\":{\"x\":0,\"y\":0,\"width\":1,\"height\":1},\"selectedRatio\":\"NaN\",\"focusArea\":null}}',0,0);
/*!40000 ALTER TABLE `sys_file_reference` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file_storage`
--
DROP TABLE IF EXISTS `sys_file_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file_storage` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`name` varchar(255) NOT NULL DEFAULT '',
`driver` varchar(255) NOT NULL DEFAULT '',
`configuration` longtext DEFAULT NULL,
`is_default` smallint(5) unsigned NOT NULL DEFAULT 0,
`is_browsable` smallint(5) unsigned NOT NULL DEFAULT 1,
`is_public` smallint(6) NOT NULL DEFAULT 0,
`is_writable` smallint(5) unsigned NOT NULL DEFAULT 1,
`is_online` smallint(5) unsigned NOT NULL DEFAULT 1,
`auto_extract_metadata` smallint(5) unsigned NOT NULL DEFAULT 1,
`processingfolder` tinytext DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file_storage`
--
LOCK TABLES `sys_file_storage` WRITE;
/*!40000 ALTER TABLE `sys_file_storage` DISABLE KEYS */;
INSERT INTO `sys_file_storage` VALUES
(1,0,1676910451,1676910451,0,'This is the local fileadmin/ directory. This storage mount has been created automatically by TYPO3.','fileadmin','Local','<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>\n<T3FlexForms>\n <data>\n <sheet index=\"sDEF\">\n <language index=\"lDEF\">\n <field index=\"basePath\">\n <value index=\"vDEF\">fileadmin/</value>\n </field>\n <field index=\"pathType\">\n <value index=\"vDEF\">relative</value>\n </field>\n <field index=\"caseSensitive\">\n <value index=\"vDEF\">1</value>\n </field>\n </language>\n </sheet>\n </data>\n</T3FlexForms>',1,1,1,1,1,1,NULL);
/*!40000 ALTER TABLE `sys_file_storage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_filemounts`
--
DROP TABLE IF EXISTS `sys_filemounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_filemounts` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`sorting` int(11) NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`title` varchar(255) NOT NULL DEFAULT '',
`read_only` smallint(5) unsigned NOT NULL DEFAULT 0,
`identifier` longtext DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_filemounts`
--
LOCK TABLES `sys_filemounts` WRITE;
/*!40000 ALTER TABLE `sys_filemounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_filemounts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_history`
--
DROP TABLE IF EXISTS `sys_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_history` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`actiontype` smallint(6) NOT NULL DEFAULT 0,
`usertype` varchar(2) NOT NULL DEFAULT 'BE',
`userid` int(10) unsigned DEFAULT NULL,
`originaluserid` int(10) unsigned DEFAULT NULL,
`recuid` int(11) NOT NULL DEFAULT 0,
`tablename` varchar(255) NOT NULL DEFAULT '',
`history_data` mediumtext DEFAULT NULL,
`workspace` int(11) DEFAULT 0,
`correlation_id` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`uid`),
KEY `recordident_1` (`tablename`(100),`recuid`),
KEY `recordident_2` (`tablename`(100),`tstamp`)
) ENGINE=InnoDB AUTO_INCREMENT=196 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_history`
--
LOCK TABLES `sys_history` WRITE;
/*!40000 ALTER TABLE `sys_history` DISABLE KEYS */;
INSERT INTO `sys_history` VALUES
(1,1733736418,2,'BE',1,0,1,'pages','{\"oldRecord\":{\"backend_layout\":\"pagets__special_start\",\"backend_layout_next_level\":\"pagets__default\",\"l10n_diffsource\":\"{\\\"doktype\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"slug\\\":\\\"\\\",\\\"nav_title\\\":\\\"\\\",\\\"subtitle\\\":\\\"\\\",\\\"nav_icon_set\\\":\\\"\\\",\\\"nav_icon\\\":\\\"\\\",\\\"seo_title\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"no_index\\\":\\\"\\\",\\\"no_follow\\\":\\\"\\\",\\\"canonical_link\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"og_title\\\":\\\"\\\",\\\"og_description\\\":\\\"\\\",\\\"og_image\\\":\\\"\\\",\\\"twitter_title\\\":\\\"\\\",\\\"twitter_description\\\":\\\"\\\",\\\"twitter_image\\\":\\\"\\\",\\\"twitter_card\\\":\\\"\\\",\\\"abstract\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"lastUpdated\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"newUntil\\\":\\\"\\\",\\\"backend_layout\\\":\\\"\\\",\\\"backend_layout_next_level\\\":\\\"\\\",\\\"thumbnail\\\":\\\"\\\",\\\"content_from_pid\\\":\\\"\\\",\\\"target\\\":\\\"\\\",\\\"cache_timeout\\\":\\\"\\\",\\\"cache_tags\\\":\\\"\\\",\\\"is_siteroot\\\":\\\"\\\",\\\"php_tree_stop\\\":\\\"\\\",\\\"module\\\":\\\"\\\",\\\"media\\\":\\\"\\\",\\\"tsconfig_includes\\\":\\\"\\\",\\\"TSconfig\\\":\\\"\\\",\\\"l18n_cfg\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"nav_hide\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"extendToSubpages\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"fe_login_mode\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\",\\\"no_search\\\":\\\"\\\",\\\"tx_kesearch_tags\\\":\\\"\\\",\\\"tx_kesearch_abstract\\\":\\\"\\\",\\\"tx_kesearch_resultimage\\\":\\\"\\\"}\"},\"newRecord\":{\"backend_layout\":\"pagets__simple\",\"backend_layout_next_level\":\"pagets__simple\",\"l10n_diffsource\":\"{\\\"doktype\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"slug\\\":\\\"\\\",\\\"nav_title\\\":\\\"\\\",\\\"subtitle\\\":\\\"\\\",\\\"nav_icon_set\\\":\\\"\\\",\\\"nav_icon\\\":\\\"\\\",\\\"seo_title\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"no_index\\\":\\\"\\\",\\\"no_follow\\\":\\\"\\\",\\\"canonical_link\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"og_title\\\":\\\"\\\",\\\"og_description\\\":\\\"\\\",\\\"og_image\\\":\\\"\\\",\\\"twitter_title\\\":\\\"\\\",\\\"twitter_description\\\":\\\"\\\",\\\"twitter_image\\\":\\\"\\\",\\\"twitter_card\\\":\\\"\\\",\\\"abstract\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"lastUpdated\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"newUntil\\\":\\\"\\\",\\\"backend_layout\\\":\\\"\\\",\\\"backend_layout_next_level\\\":\\\"\\\",\\\"thumbnail\\\":\\\"\\\",\\\"content_from_pid\\\":\\\"\\\",\\\"target\\\":\\\"\\\",\\\"cache_timeout\\\":\\\"\\\",\\\"cache_tags\\\":\\\"\\\",\\\"is_siteroot\\\":\\\"\\\",\\\"php_tree_stop\\\":\\\"\\\",\\\"module\\\":\\\"\\\",\\\"media\\\":\\\"\\\",\\\"tsconfig_includes\\\":\\\"\\\",\\\"TSconfig\\\":\\\"\\\",\\\"l18n_cfg\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"nav_hide\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"extendToSubpages\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\",\\\"no_search\\\":\\\"\\\",\\\"tx_kesearch_tags\\\":\\\"\\\",\\\"tx_kesearch_abstract\\\":\\\"\\\",\\\"tx_kesearch_resultimage\\\":\\\"\\\"}\"}}',0,'0400$d9e36a658828bb89b49f783dd55c1c77:e175f7045d7ccbfb26ffcf279422c2e5'),
(2,1733736781,1,'BE',1,0,1,'tt_content','{\"uid\":1,\"rowDescription\":\"\",\"pid\":1,\"tstamp\":1733736781,\"crdate\":1733736781,\"deleted\":0,\"hidden\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"sorting\":256,\"editlock\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l10n_source\":0,\"l10n_state\":null,\"t3_origuid\":0,\"l18n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"CType\":\"textcolumn\",\"header\":\"Test\",\"header_position\":\"\",\"bodytext\":\"<p><span class=\\\"h1\\\">30k<\\/span><br \\/>Test<\\/p>\\r\\n<p><span class=\\\"h1\\\">30k<\\/span><br \\/>Test<\\/p>\\r\\n<p><span class=\\\"h1\\\">30k<\\/span><br \\/>Test<\\/p>\\r\\n<p><span class=\\\"h1\\\">30k<\\/span><br \\/>Test<\\/p>\",\"bullets_type\":0,\"uploads_description\":0,\"uploads_type\":0,\"assets\":0,\"image\":0,\"imagewidth\":0,\"imageorient\":0,\"imagecols\":1,\"imageborder\":0,\"media\":0,\"layout\":0,\"frame_class\":\"default\",\"cols\":0,\"space_before_class\":\"\",\"space_after_class\":\"\",\"records\":null,\"pages\":null,\"colPos\":0,\"subheader\":\"\",\"header_link\":\"\",\"image_zoom\":0,\"header_layout\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"linkToTop\":0,\"file_collections\":null,\"filelink_size\":0,\"filelink_sorting\":\"\",\"filelink_sorting_direction\":\"\",\"target\":\"\",\"date\":0,\"recursive\":0,\"imageheight\":0,\"pi_flexform\":null,\"accessibility_title\":\"\",\"accessibility_bypass\":0,\"accessibility_bypass_text\":\"\",\"category_field\":\"\",\"table_class\":\"\",\"table_caption\":null,\"table_delimiter\":124,\"table_enclosure\":0,\"table_header_position\":0,\"table_tfoot\":0,\"categories\":0,\"selected_categories\":null,\"tx_news_related_news\":0,\"teaser\":null,\"aspect_ratio\":\"1.3333333333333\",\"items_per_page\":10,\"readmore_label\":\"\",\"quote_source\":\"\",\"quote_link\":\"\",\"panel_class\":\"default\",\"file_folder\":null,\"icon\":\"\",\"icon_set\":\"\",\"icon_file\":0,\"icon_position\":\"\",\"icon_size\":\"default\",\"icon_type\":\"default\",\"icon_color\":\"#FFFFFF\",\"icon_background\":\"#333333\",\"external_media_source\":\"\",\"external_media_ratio\":\"\",\"tx_bootstrappackage_card_group_item\":0,\"tx_bootstrappackage_carousel_item\":0,\"tx_bootstrappackage_accordion_item\":0,\"tx_bootstrappackage_icon_group_item\":0,\"tx_bootstrappackage_tab_item\":0,\"tx_bootstrappackage_timeline_item\":0,\"frame_layout\":\"default\",\"background_color_class\":\"none\",\"background_image\":0,\"background_image_options\":\"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\" ?>\\n<T3FlexForms>\\n <data>\\n <sheet index=\\\"sDEF\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"behaviour\\\">\\n <value index=\\\"vDEF\\\">cover<\\/value>\\n <\\/field>\\n <field index=\\\"parallax\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"fade\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"filter\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <\\/data>\\n<\\/T3FlexForms>\",\"header_class\":\"\",\"subheader_class\":\"\",\"external_media_title\":\"\",\"frame_options\":\"\",\"subitems_header_layout\":2}',0,'0400$79fbfb4fd23e9a722d6496ef47cb111a:7fa2c035f26826fe83eeecaaeddc4d40'),
(3,1733736935,2,'BE',1,0,1,'sys_template','{\"oldRecord\":{\"include_static_file\":\"EXT:bootstrap_package\\/Configuration\\/TypoScript\"},\"newRecord\":{\"include_static_file\":\"EXT:bootstrap_package\\/Configuration\\/TypoScript,EXT:base_design\\/Configuration\\/TypoScript\"}}',0,'0400$f177b8c66b4a5a6615f6a209996151eb:35af6288617af54964e77af08c30949a'),
(4,1733737049,2,'BE',1,0,1,'tt_content','{\"oldRecord\":{\"hidden\":0,\"l18n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"1\",\"l18n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$64ce41cf7ab90385fffed11b0d03c760:7fa2c035f26826fe83eeecaaeddc4d40'),
(5,1733737150,2,'BE',1,0,1,'pages','{\"oldRecord\":{\"backend_layout\":\"pagets__simple\"},\"newRecord\":{\"backend_layout\":\"pagets__default\"}}',0,'0400$252c427c02d20d83539ac86e87861d0f:e175f7045d7ccbfb26ffcf279422c2e5'),
(6,1733737202,2,'BE',1,0,1,'tt_content','{\"oldRecord\":{\"hidden\":1},\"newRecord\":{\"hidden\":\"0\"}}',0,'0400$20a6e41069c9570b7016d7e28321dce0:7fa2c035f26826fe83eeecaaeddc4d40'),
(7,1733737249,2,'BE',1,0,1,'sys_template','{\"oldRecord\":{\"include_static_file\":\"EXT:bootstrap_package\\/Configuration\\/TypoScript,EXT:base_design\\/Configuration\\/TypoScript\"},\"newRecord\":{\"include_static_file\":\"EXT:fluid_styled_content\\/Configuration\\/TypoScript\\/,EXT:bootstrap_package\\/Configuration\\/TypoScript,EXT:base_design\\/Configuration\\/TypoScript\"}}',0,'0400$89b5b376e79b99cfd346d10e85dde917:35af6288617af54964e77af08c30949a'),
(8,1733737261,2,'BE',1,0,1,'sys_template','{\"oldRecord\":{\"include_static_file\":\"EXT:fluid_styled_content\\/Configuration\\/TypoScript\\/,EXT:bootstrap_package\\/Configuration\\/TypoScript,EXT:base_design\\/Configuration\\/TypoScript\"},\"newRecord\":{\"include_static_file\":\"EXT:bootstrap_package\\/Configuration\\/TypoScript,EXT:base_design\\/Configuration\\/TypoScript\"}}',0,'0400$64559b7b7b55073ce82a5f0a7a7017f3:35af6288617af54964e77af08c30949a'),
(9,1733737381,2,'BE',1,0,1,'sys_template','{\"oldRecord\":{\"include_static_file\":\"EXT:bootstrap_package\\/Configuration\\/TypoScript,EXT:base_design\\/Configuration\\/TypoScript\"},\"newRecord\":{\"include_static_file\":\"EXT:bootstrap_package\\/Configuration\\/TypoScript\"}}',0,'0400$932f5091ce110d1a16db3b512088ba97:35af6288617af54964e77af08c30949a'),
(10,1733929200,2,'BE',1,0,1,'sys_template','{\"oldRecord\":{\"include_static_file\":\"EXT:bootstrap_package\\/Configuration\\/TypoScript\"},\"newRecord\":{\"include_static_file\":\"EXT:bootstrap_package\\/Configuration\\/TypoScript,EXT:base_design\\/Configuration\\/TypoScript\"}}',0,'0400$214e858e28d0fa1c8ecd53eb571162eb:35af6288617af54964e77af08c30949a'),
(11,1733931462,2,'BE',1,0,1,'sys_template','{\"oldRecord\":{\"include_static_file\":\"EXT:bootstrap_package\\/Configuration\\/TypoScript,EXT:base_design\\/Configuration\\/TypoScript\"},\"newRecord\":{\"include_static_file\":\"EXT:lena_schilling_design\\/Configuration\\/TypoScript\"}}',0,'0400$c44be59f4bb6871ca1c82ef614d49aa3:35af6288617af54964e77af08c30949a'),
(12,1733931927,2,'BE',1,0,1,'sys_template','{\"oldRecord\":{\"include_static_file\":\"EXT:lena_schilling_design\\/Configuration\\/TypoScript\"},\"newRecord\":{\"include_static_file\":\"EXT:fluid_styled_content\\/Configuration\\/TypoScript\\/,EXT:lena_schilling_design\\/Configuration\\/TypoScript\"}}',0,'0400$62a251cd1e641ea0bb94ccbce1099a8c:35af6288617af54964e77af08c30949a'),
(13,1733931942,4,'BE',1,0,1,'tt_content',NULL,0,'0400$92e21b450d465890029c1e8388b3fe67:7fa2c035f26826fe83eeecaaeddc4d40'),
(14,1733950272,2,'BE',1,0,1,'pages','{\"oldRecord\":{\"backend_layout_next_level\":\"pagets__simple\",\"l10n_diffsource\":\"{\\\"doktype\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"slug\\\":\\\"\\\",\\\"nav_title\\\":\\\"\\\",\\\"subtitle\\\":\\\"\\\",\\\"nav_icon_set\\\":\\\"\\\",\\\"nav_icon\\\":\\\"\\\",\\\"seo_title\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"no_index\\\":\\\"\\\",\\\"no_follow\\\":\\\"\\\",\\\"canonical_link\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"og_title\\\":\\\"\\\",\\\"og_description\\\":\\\"\\\",\\\"og_image\\\":\\\"\\\",\\\"twitter_title\\\":\\\"\\\",\\\"twitter_description\\\":\\\"\\\",\\\"twitter_image\\\":\\\"\\\",\\\"twitter_card\\\":\\\"\\\",\\\"abstract\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"lastUpdated\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"newUntil\\\":\\\"\\\",\\\"backend_layout\\\":\\\"\\\",\\\"backend_layout_next_level\\\":\\\"\\\",\\\"thumbnail\\\":\\\"\\\",\\\"content_from_pid\\\":\\\"\\\",\\\"target\\\":\\\"\\\",\\\"cache_timeout\\\":\\\"\\\",\\\"cache_tags\\\":\\\"\\\",\\\"is_siteroot\\\":\\\"\\\",\\\"php_tree_stop\\\":\\\"\\\",\\\"module\\\":\\\"\\\",\\\"media\\\":\\\"\\\",\\\"tsconfig_includes\\\":\\\"\\\",\\\"TSconfig\\\":\\\"\\\",\\\"l18n_cfg\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"nav_hide\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"extendToSubpages\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\",\\\"no_search\\\":\\\"\\\",\\\"tx_kesearch_tags\\\":\\\"\\\",\\\"tx_kesearch_abstract\\\":\\\"\\\",\\\"tx_kesearch_resultimage\\\":\\\"\\\"}\"},\"newRecord\":{\"backend_layout_next_level\":\"\",\"l10n_diffsource\":\"{\\\"doktype\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"slug\\\":\\\"\\\",\\\"nav_title\\\":\\\"\\\",\\\"subtitle\\\":\\\"\\\",\\\"seo_title\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"no_index\\\":\\\"\\\",\\\"no_follow\\\":\\\"\\\",\\\"canonical_link\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"og_title\\\":\\\"\\\",\\\"og_description\\\":\\\"\\\",\\\"og_image\\\":\\\"\\\",\\\"twitter_title\\\":\\\"\\\",\\\"twitter_description\\\":\\\"\\\",\\\"twitter_image\\\":\\\"\\\",\\\"twitter_card\\\":\\\"\\\",\\\"abstract\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"lastUpdated\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"newUntil\\\":\\\"\\\",\\\"backend_layout\\\":\\\"\\\",\\\"backend_layout_next_level\\\":\\\"\\\",\\\"content_from_pid\\\":\\\"\\\",\\\"target\\\":\\\"\\\",\\\"cache_timeout\\\":\\\"\\\",\\\"cache_tags\\\":\\\"\\\",\\\"is_siteroot\\\":\\\"\\\",\\\"php_tree_stop\\\":\\\"\\\",\\\"module\\\":\\\"\\\",\\\"media\\\":\\\"\\\",\\\"tsconfig_includes\\\":\\\"\\\",\\\"TSconfig\\\":\\\"\\\",\\\"l18n_cfg\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"nav_hide\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"extendToSubpages\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\",\\\"no_search\\\":\\\"\\\",\\\"tx_kesearch_tags\\\":\\\"\\\",\\\"tx_kesearch_abstract\\\":\\\"\\\",\\\"tx_kesearch_resultimage\\\":\\\"\\\"}\"}}',0,'0400$656b71a769f0d0377f1fb608ac441b8a:e175f7045d7ccbfb26ffcf279422c2e5'),
(15,1733950587,2,'BE',1,0,1,'pages','{\"oldRecord\":{\"backend_layout_next_level\":\"\"},\"newRecord\":{\"backend_layout_next_level\":\"pagets__default\"}}',0,'0400$6b49ee54ba4d773376e0865a3a9da5ce:e175f7045d7ccbfb26ffcf279422c2e5'),
(16,1733950701,1,'BE',1,0,2,'tt_content','{\"CType\":\"text\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imageorient\":\"0\",\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":\"1\",\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":256,\"header\":\"test\",\"header_link\":\"\",\"subheader\":\"\",\"bodytext\":\"<p>test<\\/p>\",\"linkToTop\":\"0\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1733950701,\"t3ver_stage\":0,\"tstamp\":1733950701,\"uid\":2}',0,'0400$1793061c3dee1577a9e2c2c933c25610:01dbc21fdb1263685b9147b3b1596ea8'),
(17,1733951120,4,'BE',1,0,1,'sys_template',NULL,0,'0400$22508dda615b31b89d0b1f9fee336542:35af6288617af54964e77af08c30949a'),
(18,1733951190,1,'BE',1,0,2,'pages','{\"doktype\":\"1\",\"slug\":\"\\/test\",\"categories\":\"0\",\"layout\":\"0\",\"lastUpdated\":0,\"newUntil\":0,\"cache_timeout\":\"0\",\"shortcut\":0,\"shortcut_mode\":\"0\",\"content_from_pid\":0,\"mount_pid\":0,\"module\":\"\",\"hidden\":1,\"starttime\":0,\"endtime\":0,\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"sitemap_priority\":\"0.5\",\"twitter_card\":\"\",\"pid\":1,\"sorting\":256,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"Test\",\"sys_language_uid\":0,\"crdate\":1733951190,\"t3ver_stage\":0,\"tstamp\":1733951190,\"uid\":2}',0,'0400$e0fe50ad259c9176e2e9e34111c27f72:f11830df10b4b0bca2db34810c2241b3'),
(19,1733951195,1,'BE',1,0,3,'pages','{\"doktype\":\"1\",\"slug\":\"\\/test2\",\"categories\":\"0\",\"layout\":\"0\",\"lastUpdated\":0,\"newUntil\":0,\"cache_timeout\":\"0\",\"shortcut\":0,\"shortcut_mode\":\"0\",\"content_from_pid\":0,\"mount_pid\":0,\"module\":\"\",\"hidden\":1,\"starttime\":0,\"endtime\":0,\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"sitemap_priority\":\"0.5\",\"twitter_card\":\"\",\"pid\":1,\"sorting\":128,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"Test2\",\"sys_language_uid\":0,\"crdate\":1733951195,\"t3ver_stage\":0,\"tstamp\":1733951195,\"uid\":3}',0,'0400$a67dcaf582e8b4430239cc7b0fdcec95:fe15eeb7d49e64e2cea91ab53fcf0db1'),
(20,1733951197,2,'BE',1,0,3,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$d78eccbdae059f751f60c9c4688040ee:fe15eeb7d49e64e2cea91ab53fcf0db1'),
(21,1733951201,2,'BE',1,0,2,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$d72746cf827ff16c26e52f5a85100202:f11830df10b4b0bca2db34810c2241b3'),
(22,1733967793,1,'BE',1,0,3,'tt_content','{\"CType\":\"cloonar_hero\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imageorient\":\"26\",\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":512,\"header\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1733967793,\"t3ver_stage\":0,\"tstamp\":1733967793,\"uid\":3}',0,'0400$e56f3f0503c7448c045de7cd74bb45dd:b92300cfb5d1d3645c9cb212a7f56c1f'),
(23,1733967793,1,'BE',1,0,1,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":1,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"6\",\"sys_language_uid\":0,\"crdate\":1733967793,\"t3ver_stage\":0,\"tstamp\":1733967793,\"uid\":1}',0,'0400$e56f3f0503c7448c045de7cd74bb45dd:4cf496f597e7b095ce8b755e6cec3c0c'),
(24,1733967845,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$3de12ea40550bae77021fc37d9455544:b92300cfb5d1d3645c9cb212a7f56c1f'),
(25,1733967845,1,'BE',1,0,2,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":1,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"6\",\"sys_language_uid\":0,\"crdate\":1733967845,\"t3ver_stage\":0,\"tstamp\":1733967845,\"uid\":2}',0,'0400$3de12ea40550bae77021fc37d9455544:814fc0f720dfab882655a795e23a5b66'),
(26,1733967845,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$3de12ea40550bae77021fc37d9455544:b92300cfb5d1d3645c9cb212a7f56c1f'),
(27,1733968469,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"hidden\":0,\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"1\",\"l18n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$a3b6b66995a6afa0f7fc19ebe23d4c71:b92300cfb5d1d3645c9cb212a7f56c1f'),
(28,1733968496,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"hidden\":1},\"newRecord\":{\"hidden\":\"0\"}}',0,'0400$ddc94c577d9a28f28946bfc537e926c2:b92300cfb5d1d3645c9cb212a7f56c1f'),
(29,1734038755,1,'BE',1,0,4,'tt_content','{\"CType\":\"cloonar_stats\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imageorient\":\"0\",\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":768,\"cloonar_stats_number1\":\"10\",\"cloonar_stats_label1\":\"was\",\"cloonar_stats_number2\":\"20\",\"cloonar_stats_label2\":\"weis\",\"cloonar_stats_number3\":\"30\",\"cloonar_stats_label3\":\"ich\",\"cloonar_stats_number4\":\"40\",\"cloonar_stats_label4\":\"denn\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734038755,\"t3ver_stage\":0,\"tstamp\":1734038755,\"uid\":4}',0,'0400$6dbebd091086b67d24891b4f5bc38361:4d391f5ef79b8d5d10dffa8a07ca167d'),
(30,1734039669,2,'BE',1,0,4,'tt_content','{\"oldRecord\":{\"bodytext\":null,\"l18n_diffsource\":\"\"},\"newRecord\":{\"bodytext\":\"<p class=\\\"lead\\\">10<br \\/>was<\\/p>\\r\\n<p class=\\\"lead\\\">20<br \\/>soll<\\/p>\\r\\n<p class=\\\"lead\\\">30<br \\/>das<\\/p>\\r\\n<p class=\\\"lead\\\">40<br \\/>sein<\\/p>\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$b1105a55b542ffae36446a33abdf3c99:4d391f5ef79b8d5d10dffa8a07ca167d'),
(31,1734044772,1,'BE',1,0,5,'tt_content','{\"CType\":\"cloonar_textimage\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imageorient\":\"26\",\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":1024,\"header\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734044772,\"t3ver_stage\":0,\"tstamp\":1734044772,\"uid\":5}',0,'0400$60dba9d1304e6d3d41ae4981dfd62ecb:c7626fc9bcba6f70beb6ebc085a400db'),
(32,1734044772,1,'BE',1,0,3,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":1,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"6\",\"sys_language_uid\":0,\"crdate\":1734044772,\"t3ver_stage\":0,\"tstamp\":1734044772,\"uid\":3}',0,'0400$60dba9d1304e6d3d41ae4981dfd62ecb:d2c609347a4764200256b39b9425159a'),
(33,1734045075,2,'BE',1,0,5,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$93511a1fd191285e4bfb71bb9c2c480a:c7626fc9bcba6f70beb6ebc085a400db'),
(34,1734045075,2,'BE',1,0,3,'sys_file_reference','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$93511a1fd191285e4bfb71bb9c2c480a:d2c609347a4764200256b39b9425159a'),
(35,1734045409,2,'BE',1,0,5,'tt_content','{\"oldRecord\":{\"imageorient\":26},\"newRecord\":{\"imageorient\":\"25\"}}',0,'0400$42f86931955429e77089c0a5054276f5:c7626fc9bcba6f70beb6ebc085a400db'),
(36,1734045432,1,'BE',1,0,4,'sys_file_reference','{\"pid\":1,\"tstamp\":1734045432,\"crdate\":1734045432,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":5,\"tablenames\":\"tt_content\",\"fieldname\":\"image\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":4}',0,'0400$bb7f3a025d5ab51590afb95de6aa7618:cea5fcd7b97871880cfe3717d6b52ef4'),
(37,1734045432,1,'BE',1,0,6,'tt_content','{\"CType\":\"cloonar_textimage\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"hidden\":1,\"starttime\":0,\"endtime\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":1280,\"rowDescription\":\"\",\"tstamp\":1734045432,\"crdate\":1734045432,\"fe_group\":\"\",\"editlock\":0,\"sys_language_uid\":0,\"l10n_source\":0,\"l10n_state\":null,\"header\":\"test (copy 1)\",\"bodytext\":\"<p>test<\\/p>\",\"imageorient\":\"25\",\"imageborder\":0,\"records\":\"\",\"pages\":\"\",\"subheader\":\"\",\"header_link\":\"\",\"image_zoom\":0,\"linkToTop\":0,\"file_collections\":\"\",\"filelink_size\":0,\"filelink_sorting\":\"\",\"filelink_sorting_direction\":\"\",\"pi_flexform\":null,\"category_field\":\"\",\"table_caption\":null,\"selected_categories\":0,\"tx_news_related_news\":0,\"t3ver_stage\":0,\"uid\":6}',0,'0400$8da97c775c38415292077250906f3244:c0db6803ab1ec5f70c36e2a72187867b'),
(38,1734045432,2,'BE',1,0,6,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"colPos\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\"}\"}}',0,'0400$2a2e651f323f96e86842c8fbbe7ac290:c0db6803ab1ec5f70c36e2a72187867b'),
(39,1734045435,2,'BE',1,0,6,'tt_content','{\"oldRecord\":{\"hidden\":1,\"l18n_diffsource\":\"{\\\"colPos\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l18n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$47601ee4c086523efe20c5452d0422c2:c0db6803ab1ec5f70c36e2a72187867b'),
(40,1734045441,2,'BE',1,0,6,'tt_content','{\"oldRecord\":{\"imageorient\":25,\"l18n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"},\"newRecord\":{\"imageorient\":\"26\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$03690bfb5a86202f0ca923d70ce69274:c0db6803ab1ec5f70c36e2a72187867b'),
(41,1734046332,1,'BE',1,0,4,'pages','{\"doktype\":\"254\",\"slug\":\"\\/news\",\"categories\":\"0\",\"layout\":\"0\",\"lastUpdated\":0,\"newUntil\":0,\"cache_timeout\":\"0\",\"shortcut\":0,\"shortcut_mode\":\"0\",\"content_from_pid\":0,\"mount_pid\":0,\"module\":\"\",\"hidden\":1,\"starttime\":0,\"endtime\":0,\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"sitemap_priority\":\"0.5\",\"twitter_card\":\"\",\"pid\":1,\"sorting\":64,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"News\",\"sys_language_uid\":0,\"crdate\":1734046332,\"t3ver_stage\":0,\"tstamp\":1734046332,\"uid\":4}',0,'0400$2b6e71d4307f25e9a433b165da4fd2a4:412add0b3eb6ec8f1cb6710aea92e21e'),
(42,1734046335,2,'BE',1,0,4,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$7a657cdee0370eacf17b4e36d5238b98:412add0b3eb6ec8f1cb6710aea92e21e'),
(43,1734046403,1,'BE',1,0,1,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"hidden\":\"0\",\"istopnews\":\"0\",\"editlock\":\"0\",\"path_segment\":\"test-1\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"type\":\"0\",\"title\":\"Test 1\",\"teaser\":\"test\",\"datetime\":1734046393,\"archive\":0,\"bodytext\":\"<p>test<\\/p>\",\"categories\":\"0\",\"related\":\"0\",\"tags\":\"0\",\"author\":\"\",\"author_email\":\"\",\"keywords\":\"\",\"description\":\"\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"sys_language_uid\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"crdate\":1734046403,\"t3ver_stage\":0,\"tstamp\":1734046403,\"uid\":1}',0,'0400$4c8c0146bd1d8cfb747c503e03cf3260:fccd16ea3664ec003726b2a72ea38f4b'),
(44,1734046411,1,'BE',1,0,2,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-1\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046411,\"crdate\":1734046411,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 1)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":2}',0,'0400$840e852e91d9c8f4a4ce698e0f406509:640f28e5c1a5ec2efb19c26699b464a5'),
(45,1734046413,1,'BE',1,0,3,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-2\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046413,\"crdate\":1734046413,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 2)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":3}',0,'0400$cb384489ea1e4ac70fca790b47207d4c:1152fda277b2623b0152b5765fcb6b28'),
(46,1734046415,1,'BE',1,0,4,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-3\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046415,\"crdate\":1734046415,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 3)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":4}',0,'0400$a5656bb4fc92e7743bea5757b86f569c:f3f39c24ca39d00c02ecd29ec2ad4225'),
(47,1734046420,4,'BE',1,0,4,'tx_news_domain_model_news',NULL,0,'0400$240f9e5a5e7c8f0506e9c85d1803d844:f3f39c24ca39d00c02ecd29ec2ad4225'),
(48,1734046421,4,'BE',1,0,3,'tx_news_domain_model_news',NULL,0,'0400$0b37a417a799001719925b31c82a17e3:1152fda277b2623b0152b5765fcb6b28'),
(49,1734046422,4,'BE',1,0,2,'tx_news_domain_model_news',NULL,0,'0400$7df87fba6e3268b9bfd800eaa003d87a:640f28e5c1a5ec2efb19c26699b464a5'),
(50,1734046430,2,'BE',1,0,1,'tx_news_domain_model_news','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"}}',0,'0400$8c0134c5590a0805cd4bd9e105f18d5e:fccd16ea3664ec003726b2a72ea38f4b'),
(51,1734046430,1,'BE',1,0,5,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":4,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"6\",\"sys_language_uid\":0,\"crdate\":1734046430,\"t3ver_stage\":0,\"tstamp\":1734046430,\"uid\":5}',0,'0400$8c0134c5590a0805cd4bd9e105f18d5e:5f15a1453f67b933ed3314381f5d67e4'),
(52,1734046430,2,'BE',1,0,1,'tx_news_domain_model_news','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"}}',0,'0400$8c0134c5590a0805cd4bd9e105f18d5e:fccd16ea3664ec003726b2a72ea38f4b'),
(53,1734046445,1,'BE',1,0,6,'sys_file_reference','{\"pid\":4,\"tstamp\":1734046445,\"crdate\":1734046445,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":6}',0,'0400$1d62482b61a3df8f4f78e0b10a290516:768f9cd4e98812f969df7ebe17f11b50'),
(54,1734046445,1,'BE',1,0,5,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-1\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046445,\"crdate\":1734046445,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 1)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":5}',0,'0400$f80bc5bed9ca973ee425a587e11341be:bc83755a03cca2ca5c8daa03e9d6e32e'),
(55,1734046447,1,'BE',1,0,7,'sys_file_reference','{\"pid\":4,\"tstamp\":1734046447,\"crdate\":1734046447,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":7}',0,'0400$f624ffaef84b6a2491e84df252dc9558:117c97010b9af15cb554d115dba4e316'),
(56,1734046447,1,'BE',1,0,6,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-2\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046447,\"crdate\":1734046447,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 2)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":6}',0,'0400$53950f86af3fdd3a76558c8ebb7b0a3c:7e4fc5d3ec5edd1f76b0a3820eb3fb47'),
(57,1734046449,1,'BE',1,0,8,'sys_file_reference','{\"pid\":4,\"tstamp\":1734046449,\"crdate\":1734046449,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":8}',0,'0400$d37991247ccf532515d677628d4789d4:5ff44a4f59fb3bfbe13a2c3ed1d0bd8b'),
(58,1734046449,1,'BE',1,0,7,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-3\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046449,\"crdate\":1734046449,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 3)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":7}',0,'0400$818d869aeaa55e8dd584693c58b9116f:31860b4bf14b13d2dc895987af663784'),
(59,1734046451,1,'BE',1,0,9,'sys_file_reference','{\"pid\":4,\"tstamp\":1734046451,\"crdate\":1734046451,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":9}',0,'0400$26088521cb927670d5843e8fe26df380:729356755eb8ee035abf6b9b02e20c8f'),
(60,1734046451,1,'BE',1,0,8,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-4\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734046451,\"crdate\":1734046451,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 4)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":8}',0,'0400$f84a1adee6aa5db1fdd26b61b764b2f2:ff635a07b31923a6d7cd863a31313787'),
(61,1734046452,2,'BE',1,0,5,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$6cca660c7687cd4ad554071901e13071:bc83755a03cca2ca5c8daa03e9d6e32e'),
(62,1734046453,2,'BE',1,0,6,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$de93d948bbee5b3899baef753897263a:7e4fc5d3ec5edd1f76b0a3820eb3fb47'),
(63,1734046454,2,'BE',1,0,7,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$67126d74e5b0bfb828a1080b5dfde14f:31860b4bf14b13d2dc895987af663784'),
(64,1734046454,2,'BE',1,0,8,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$a0fb5e5e8e793e2e43ab45ebeb0d9ac7:ff635a07b31923a6d7cd863a31313787'),
(65,1734046495,1,'BE',1,0,7,'tt_content','{\"CType\":\"news_newsliststicky\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":\"1\",\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":896,\"header\":\"Aktuelles\",\"header_link\":\"\",\"subheader\":\"\",\"pi_flexform\":\"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\" ?>\\n<T3FlexForms>\\n <data>\\n <sheet index=\\\"sDEF\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.orderBy\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.orderDirection\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.dateField\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categoryConjunction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categories\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.includeSubCategories\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.archiveRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestrictionHigh\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.previewHiddenRecords\\\">\\n <value index=\\\"vDEF\\\">2<\\/value>\\n <\\/field>\\n <field index=\\\"settings.startingpoint\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.recursive\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"additional\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.detailPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.listPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.backPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.limit\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.offset\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.tags\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.hidePagination\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.list.paginate.itemsPerPage\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsFirst\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.excludeAlreadyDisplayedNews\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.disableOverrideDemand\\\">\\n <value index=\\\"vDEF\\\">1<\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"template\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.media.maxWidth\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.media.maxHeight\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.cropMaxCharacters\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.templateLayout\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <\\/data>\\n<\\/T3FlexForms>\",\"linkToTop\":\"0\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734046495,\"t3ver_stage\":0,\"tstamp\":1734046495,\"uid\":7}',0,'0400$dbf6e39dd3e1e2915dd71ab11de53afd:ea41b626baac59a1fe0716bc344af5d9'),
(66,1734046852,4,'BE',1,0,2,'tt_content',NULL,0,'0400$1ab83e98fd0b78f564cb0acfcf07ac90:01dbc21fdb1263685b9147b3b1596ea8'),
(67,1734048317,1,'BE',1,0,8,'tt_content','{\"CType\":\"text\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"90\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":\"1\",\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":256,\"header\":\"\",\"header_link\":\"\",\"subheader\":\"\",\"bodytext\":\"<p>test 1<\\/p>\",\"linkToTop\":\"0\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734048317,\"t3ver_stage\":0,\"tstamp\":1734048317,\"uid\":8}',0,'0400$7792dfd1bc6137fd77b8cebde438783e:2097d84972a039cb6bfe093b17089287'),
(68,1734048328,1,'BE',1,0,9,'tt_content','{\"CType\":\"text\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"91\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":\"1\",\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":128,\"header\":\"\",\"header_link\":\"\",\"subheader\":\"\",\"bodytext\":\"<p>test 2<\\/p>\",\"linkToTop\":\"0\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734048328,\"t3ver_stage\":0,\"tstamp\":1734048328,\"uid\":9}',0,'0400$3aa5d3e83fe230ff0a806563c0e7f2fd:367f4f227870d8e2a11496a182574aa3'),
(69,1734050591,1,'BE',1,0,10,'tt_content','{\"CType\":\"news_pi1\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":\"1\",\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":3,\"sorting\":256,\"header\":\"\",\"header_link\":\"\",\"subheader\":\"\",\"pi_flexform\":\"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\" ?>\\n<T3FlexForms>\\n <data>\\n <sheet index=\\\"sDEF\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.orderBy\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.orderDirection\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.dateField\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categoryConjunction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categories\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.includeSubCategories\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.archiveRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestrictionHigh\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.previewHiddenRecords\\\">\\n <value index=\\\"vDEF\\\">2<\\/value>\\n <\\/field>\\n <field index=\\\"settings.startingpoint\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.recursive\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"additional\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.detailPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.listPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.backPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.limit\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.offset\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.tags\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.hidePagination\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.list.paginate.itemsPerPage\\\">\\n <value index=\\\"vDEF\\\">7<\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsFirst\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.excludeAlreadyDisplayedNews\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.disableOverrideDemand\\\">\\n <value index=\\\"vDEF\\\">1<\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"template\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.media.maxWidth\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.media.maxHeight\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.cropMaxCharacters\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.templateLayout\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <\\/data>\\n<\\/T3FlexForms>\",\"linkToTop\":\"0\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734050591,\"t3ver_stage\":0,\"tstamp\":1734050591,\"uid\":10}',0,'0400$e8231ff8f1fe73239cc056eb97c25d00:7ea9bfd0f5c1068d25caf6ccac9d6265'),
(70,1734050603,2,'BE',1,0,3,'pages','{\"oldRecord\":{\"title\":\"Test2\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"},\"newRecord\":{\"title\":\"Aktuelles\",\"l10n_diffsource\":\"{\\\"title\\\":\\\"\\\"}\"}}',0,'0400$4a8bf67178fb3bedc412a1cd26e6435c:fe15eeb7d49e64e2cea91ab53fcf0db1'),
(71,1734050631,2,'BE',1,0,7,'tt_content','{\"oldRecord\":{\"pi_flexform\":\"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\" ?>\\n<T3FlexForms>\\n <data>\\n <sheet index=\\\"sDEF\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.orderBy\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.orderDirection\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.dateField\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categoryConjunction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categories\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.includeSubCategories\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.archiveRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestrictionHigh\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.previewHiddenRecords\\\">\\n <value index=\\\"vDEF\\\">2<\\/value>\\n <\\/field>\\n <field index=\\\"settings.startingpoint\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.recursive\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"additional\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.detailPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.listPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.backPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.limit\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.offset\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.tags\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.hidePagination\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.list.paginate.itemsPerPage\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsFirst\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.excludeAlreadyDisplayedNews\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.disableOverrideDemand\\\">\\n <value index=\\\"vDEF\\\">1<\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"template\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.media.maxWidth\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.media.maxHeight\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.cropMaxCharacters\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.templateLayout\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <\\/data>\\n<\\/T3FlexForms>\",\"l18n_diffsource\":\"\"},\"newRecord\":{\"pi_flexform\":\"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\" ?>\\n<T3FlexForms>\\n <data>\\n <sheet index=\\\"sDEF\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.orderBy\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.orderDirection\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.dateField\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categoryConjunction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categories\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.includeSubCategories\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.archiveRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestrictionHigh\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.previewHiddenRecords\\\">\\n <value index=\\\"vDEF\\\">2<\\/value>\\n <\\/field>\\n <field index=\\\"settings.startingpoint\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.recursive\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"additional\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.detailPid\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.listPid\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.backPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.limit\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.offset\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.tags\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.hidePagination\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.list.paginate.itemsPerPage\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsFirst\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.excludeAlreadyDisplayedNews\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.disableOverrideDemand\\\">\\n <value index=\\\"vDEF\\\">1<\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"template\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.media.maxWidth\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.media.maxHeight\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.cropMaxCharacters\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.templateLayout\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <\\/data>\\n<\\/T3FlexForms>\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"header_layout\\\":\\\"\\\",\\\"header_position\\\":\\\"\\\",\\\"date\\\":\\\"\\\",\\\"header_link\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"pi_flexform\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"frame_class\\\":\\\"\\\",\\\"space_before_class\\\":\\\"\\\",\\\"space_after_class\\\":\\\"\\\",\\\"sectionIndex\\\":\\\"\\\",\\\"linkToTop\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$b9e164cce7eca2f12450508daa2fd702:ea41b626baac59a1fe0716bc344af5d9'),
(72,1734050640,1,'BE',1,0,10,'sys_file_reference','{\"pid\":4,\"tstamp\":1734050640,\"crdate\":1734050640,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":10}',0,'0400$ce7bfbf78661ef2206c1b73ea683c6f7:b34a074e38840d41041eaee66c42bb0d'),
(73,1734050640,1,'BE',1,0,9,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-5\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734050640,\"crdate\":1734050640,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 5)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":9}',0,'0400$32baa2cd9cc82ac307b1b45bf92d3372:ea59bb16023727fc0c0128366bbe4ed3'),
(74,1734050642,1,'BE',1,0,11,'sys_file_reference','{\"pid\":4,\"tstamp\":1734050642,\"crdate\":1734050642,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":11}',0,'0400$00568dcc84e7bd15fd5624190ac05778:b70904b959c6d327947fc437df028f6f'),
(75,1734050642,1,'BE',1,0,10,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-6\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734050642,\"crdate\":1734050642,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 6)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":10}',0,'0400$709ebfa7e10e2b60400c8b927d2ed203:74d687ec564a59b0360c2264c05d7a29'),
(76,1734050644,1,'BE',1,0,12,'sys_file_reference','{\"pid\":4,\"tstamp\":1734050644,\"crdate\":1734050644,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":12}',0,'0400$714aae7fbb23b8d36ba5de043ad95ba5:fef2cecc4ff45c64d73fc27195ee5748'),
(77,1734050644,1,'BE',1,0,11,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-7\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734050644,\"crdate\":1734050644,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 7)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":11}',0,'0400$062b137b96e654617730f96ae8a1df4c:a7708bdfd76f24b1743f6d30ac679090'),
(78,1734050646,1,'BE',1,0,13,'sys_file_reference','{\"pid\":4,\"tstamp\":1734050646,\"crdate\":1734050646,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"6\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":13}',0,'0400$160af4fb5442cc06d93a7f109883563d:5e1f4fea56ad8d21a419f2b59b059abf'),
(79,1734050646,1,'BE',1,0,12,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-8\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734050646,\"crdate\":1734050646,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 8)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":12}',0,'0400$22ea55eefbf4454e751d3a012fb17c84:6c6005b66e9191f57d7fa62294c401ca'),
(80,1734050648,2,'BE',1,0,9,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$55c262751c73cc09baf67e152f38ed5b:ea59bb16023727fc0c0128366bbe4ed3'),
(81,1734050649,2,'BE',1,0,10,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$e1427fa01ea4f068beba56f7ac0f33b9:74d687ec564a59b0360c2264c05d7a29'),
(82,1734050650,2,'BE',1,0,11,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$c64349f93835571959077a90fa2a0126:a7708bdfd76f24b1743f6d30ac679090'),
(83,1734050651,2,'BE',1,0,12,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$39b5ba9c61989ab351dd4c86749f43b2:6c6005b66e9191f57d7fa62294c401ca'),
(84,1734111519,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$aaa9ed4f5c5b99ce57fb81913184b5f1:b92300cfb5d1d3645c9cb212a7f56c1f'),
(85,1734111519,1,'BE',1,0,14,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":1,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"9\",\"sys_language_uid\":0,\"crdate\":1734111519,\"t3ver_stage\":0,\"tstamp\":1734111519,\"uid\":14}',0,'0400$aaa9ed4f5c5b99ce57fb81913184b5f1:2207c2b650522ebf0efd90eaad3962af'),
(86,1734111519,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$aaa9ed4f5c5b99ce57fb81913184b5f1:b92300cfb5d1d3645c9cb212a7f56c1f'),
(87,1734111519,4,'BE',1,0,2,'sys_file_reference',NULL,0,'0400$aaa9ed4f5c5b99ce57fb81913184b5f1:814fc0f720dfab882655a795e23a5b66'),
(88,1734111541,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"bodytext\":\"<p>test<\\/p>\"},\"newRecord\":{\"bodytext\":\"<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\"}}',0,'0400$d9680ec6f57105c0dcdcbfc47131516f:b92300cfb5d1d3645c9cb212a7f56c1f'),
(89,1734111541,2,'BE',1,0,14,'sys_file_reference','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"alternative\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"link\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"crop\\\":\\\"\\\",\\\"uid_local\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\"}\"}}',0,'0400$d9680ec6f57105c0dcdcbfc47131516f:2207c2b650522ebf0efd90eaad3962af'),
(90,1734111896,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"bodytext\":\"<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\"},\"newRecord\":{\"bodytext\":\"<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>testtest<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\"}}',0,'0400$c670f12fad6775252e52264263d9fd79:b92300cfb5d1d3645c9cb212a7f56c1f'),
(91,1734111924,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"bodytext\":\"<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>testtest<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\"},\"newRecord\":{\"bodytext\":\"<p>test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test&nbsp;<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>testtest<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\"}}',0,'0400$3ae131fc11c6143915c9419f4fb326db:b92300cfb5d1d3645c9cb212a7f56c1f'),
(92,1734114715,2,'BE',1,0,4,'tt_content','{\"oldRecord\":{\"bodytext\":\"<p class=\\\"lead\\\">10<br \\/>was<\\/p>\\r\\n<p class=\\\"lead\\\">20<br \\/>soll<\\/p>\\r\\n<p class=\\\"lead\\\">30<br \\/>das<\\/p>\\r\\n<p class=\\\"lead\\\">40<br \\/>sein<\\/p>\"},\"newRecord\":{\"bodytext\":\"<p><span class=\\\"lead\\\">10<\\/span><br \\/>was<\\/p>\\r\\n<p><span class=\\\"lead\\\">20<\\/span><br \\/>soll<\\/p>\\r\\n<p><span class=\\\"lead\\\">30<\\/span><br \\/>das<\\/p>\\r\\n<p><span class=\\\"lead\\\">40<\\/span><br \\/>sein<\\/p>\"}}',0,'0400$323f3851e54e21ee467b2e9b15437f25:4d391f5ef79b8d5d10dffa8a07ca167d'),
(93,1734115970,2,'BE',1,0,4,'tt_content','{\"oldRecord\":{\"bodytext\":\"<p><span class=\\\"lead\\\">10<\\/span><br \\/>was<\\/p>\\r\\n<p><span class=\\\"lead\\\">20<\\/span><br \\/>soll<\\/p>\\r\\n<p><span class=\\\"lead\\\">30<\\/span><br \\/>das<\\/p>\\r\\n<p><span class=\\\"lead\\\">40<\\/span><br \\/>sein<\\/p>\"},\"newRecord\":{\"bodytext\":\"<p class=\\\"lead big-number\\\">10<br \\/>was<\\/p>\\r\\n<p class=\\\"lead big-number\\\">20<br \\/>soll<\\/p>\\r\\n<p class=\\\"lead big-number\\\">30<br \\/>das<\\/p>\\r\\n<p class=\\\"lead big-number\\\">40<br \\/>sein<\\/p>\"}}',0,'0400$c1a30741d0441f99a41cb11e035003e2:4d391f5ef79b8d5d10dffa8a07ca167d'),
(94,1734116042,2,'BE',1,0,4,'tt_content','{\"oldRecord\":{\"bodytext\":\"<p class=\\\"lead big-number\\\">10<br \\/>was<\\/p>\\r\\n<p class=\\\"lead big-number\\\">20<br \\/>soll<\\/p>\\r\\n<p class=\\\"lead big-number\\\">30<br \\/>das<\\/p>\\r\\n<p class=\\\"lead big-number\\\">40<br \\/>sein<\\/p>\"},\"newRecord\":{\"bodytext\":\"<p><span class=\\\"big-number\\\">10<\\/span><br \\/>was<\\/p>\\r\\n<p><span class=\\\"big-number\\\">20<\\/span><br \\/>soll<\\/p>\\r\\n<p><span class=\\\"big-number\\\">30<\\/span><br \\/>das<\\/p>\\r\\n<p><span class=\\\"big-number\\\">40<\\/span><br \\/>sein<\\/p>\"}}',0,'0400$aba3bd8f634a5770ffb372745453f380:4d391f5ef79b8d5d10dffa8a07ca167d'),
(95,1734116558,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"header\":\"test\",\"bodytext\":\"<p>test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test&nbsp;<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>testtest<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\\r\\n<p>test<\\/p>\"},\"newRecord\":{\"header\":\"Lena Schilling\",\"bodytext\":\"<h4>About me<\\/h4>\\r\\n<p>Lorem ipsum dolor sit amet, consectetur adipis cing elit. Donec porttitor sed mi a accumsan. Vestibulum dictum congue tellus at mollis. Nunc quam quam, sagittis ac feugiat eu, venenatis seas. &nbsp;Sed lobortis lectus ut augue.<\\/p>\"}}',0,'0400$29bdc04bbfab990fd12ca09b863ba04b:b92300cfb5d1d3645c9cb212a7f56c1f'),
(96,1734116617,2,'BE',1,0,3,'tt_content','{\"oldRecord\":{\"subheader\":\"\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"},\"newRecord\":{\"subheader\":\"Hallo, ich bin\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$9963a3ad74ba77232b988dd623fff8ab:b92300cfb5d1d3645c9cb212a7f56c1f'),
(97,1734118658,2,'BE',1,0,3,'pages','{\"oldRecord\":{\"title\":\"Aktuelles\"},\"newRecord\":{\"title\":\"Themen\"}}',0,'0400$262da802a4e85639da217cb50e733c66:fe15eeb7d49e64e2cea91ab53fcf0db1'),
(98,1734118669,2,'BE',1,0,2,'pages','{\"oldRecord\":{\"title\":\"Test\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"},\"newRecord\":{\"title\":\"Transparenz\",\"l10n_diffsource\":\"{\\\"title\\\":\\\"\\\"}\"}}',0,'0400$2852efcbbfdf3a7386b9766a2b05a9e8:f11830df10b4b0bca2db34810c2241b3'),
(99,1734118677,1,'BE',1,0,5,'pages','{\"doktype\":\"1\",\"slug\":\"\\/presse\",\"categories\":\"0\",\"layout\":\"0\",\"lastUpdated\":0,\"newUntil\":0,\"cache_timeout\":\"0\",\"shortcut\":0,\"shortcut_mode\":\"0\",\"content_from_pid\":0,\"mount_pid\":0,\"module\":\"\",\"hidden\":1,\"starttime\":0,\"endtime\":0,\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"sitemap_priority\":\"0.5\",\"twitter_card\":\"\",\"pid\":1,\"sorting\":192,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"Presse\",\"sys_language_uid\":0,\"crdate\":1734118677,\"t3ver_stage\":0,\"tstamp\":1734118677,\"uid\":5}',0,'0400$54b6992acd69380da7d6d40b9ce9d788:7ef5a4e3e11db8ac3fea4d7a75468161'),
(100,1734118684,1,'BE',1,0,6,'pages','{\"doktype\":\"1\",\"slug\":\"\\/team-lena\",\"categories\":\"0\",\"layout\":\"0\",\"lastUpdated\":0,\"newUntil\":0,\"cache_timeout\":\"0\",\"shortcut\":0,\"shortcut_mode\":\"0\",\"content_from_pid\":0,\"mount_pid\":0,\"module\":\"\",\"hidden\":1,\"starttime\":0,\"endtime\":0,\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"sitemap_priority\":\"0.5\",\"twitter_card\":\"\",\"pid\":1,\"sorting\":96,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"Team Lena\",\"sys_language_uid\":0,\"crdate\":1734118684,\"t3ver_stage\":0,\"tstamp\":1734118684,\"uid\":6}',0,'0400$81a38414e1aec2c9d7b5e46c3687efa5:c75354c439a48dbde16b03ac553a080d'),
(101,1734118687,3,'BE',1,0,4,'pages','{\"oldPageId\":1,\"newPageId\":1,\"oldData\":{\"header\":\"News\",\"pid\":1,\"event_pid\":4,\"t3ver_state\":0},\"newData\":{\"tstamp\":1734118687,\"pid\":1,\"sorting\":512}}',0,'0400$c938ced540ba9fa3e890256e52035283:412add0b3eb6ec8f1cb6710aea92e21e'),
(102,1734118692,3,'BE',1,0,4,'pages','{\"oldPageId\":1,\"newPageId\":1,\"oldData\":{\"header\":\"News\",\"pid\":1,\"event_pid\":4,\"t3ver_state\":0},\"newData\":{\"tstamp\":1734118692,\"pid\":1,\"sorting\":48}}',0,'0400$6761947a6a3630e828b39f7b5d3ea881:412add0b3eb6ec8f1cb6710aea92e21e'),
(103,1734118694,2,'BE',1,0,6,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$ded9f9dd457c7bfc128acc614fe962ce:c75354c439a48dbde16b03ac553a080d'),
(104,1734118696,2,'BE',1,0,5,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$15371d25e1817ecfbe679d162060d398:7ef5a4e3e11db8ac3fea4d7a75468161'),
(105,1734118803,1,'BE',1,0,15,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":4,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"11\",\"sys_language_uid\":0,\"crdate\":1734118803,\"t3ver_stage\":0,\"tstamp\":1734118803,\"uid\":15}',0,'0400$ace7263d2ada221fee50024519b5585e:53cbb769126fb106e07a09de5e196b60'),
(106,1734118803,4,'BE',1,0,5,'sys_file_reference',NULL,0,'0400$ace7263d2ada221fee50024519b5585e:5f15a1453f67b933ed3314381f5d67e4'),
(107,1734118806,4,'BE',1,0,6,'sys_file_reference',NULL,0,'0400$87486c218323e36e2001dbd527b748e2:768f9cd4e98812f969df7ebe17f11b50'),
(108,1734118806,4,'BE',1,0,5,'tx_news_domain_model_news',NULL,0,'0400$87486c218323e36e2001dbd527b748e2:bc83755a03cca2ca5c8daa03e9d6e32e'),
(109,1734118808,4,'BE',1,0,7,'sys_file_reference',NULL,0,'0400$92cafcf0e56212aabc6dc7931c0b82db:117c97010b9af15cb554d115dba4e316'),
(110,1734118808,4,'BE',1,0,6,'tx_news_domain_model_news',NULL,0,'0400$92cafcf0e56212aabc6dc7931c0b82db:7e4fc5d3ec5edd1f76b0a3820eb3fb47'),
(111,1734118814,4,'BE',1,0,8,'sys_file_reference',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:5ff44a4f59fb3bfbe13a2c3ed1d0bd8b'),
(112,1734118814,4,'BE',1,0,7,'tx_news_domain_model_news',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:31860b4bf14b13d2dc895987af663784'),
(113,1734118814,4,'BE',1,0,9,'sys_file_reference',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:729356755eb8ee035abf6b9b02e20c8f'),
(114,1734118814,4,'BE',1,0,8,'tx_news_domain_model_news',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:ff635a07b31923a6d7cd863a31313787'),
(115,1734118814,4,'BE',1,0,10,'sys_file_reference',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:b34a074e38840d41041eaee66c42bb0d'),
(116,1734118814,4,'BE',1,0,9,'tx_news_domain_model_news',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:ea59bb16023727fc0c0128366bbe4ed3'),
(117,1734118814,4,'BE',1,0,11,'sys_file_reference',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:b70904b959c6d327947fc437df028f6f'),
(118,1734118814,4,'BE',1,0,10,'tx_news_domain_model_news',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:74d687ec564a59b0360c2264c05d7a29'),
(119,1734118814,4,'BE',1,0,12,'sys_file_reference',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:fef2cecc4ff45c64d73fc27195ee5748'),
(120,1734118814,4,'BE',1,0,11,'tx_news_domain_model_news',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:a7708bdfd76f24b1743f6d30ac679090'),
(121,1734118814,4,'BE',1,0,13,'sys_file_reference',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:5e1f4fea56ad8d21a419f2b59b059abf'),
(122,1734118814,4,'BE',1,0,12,'tx_news_domain_model_news',NULL,0,'0400$8f98de02f06654ee2dcb7fa496d7c932:6c6005b66e9191f57d7fa62294c401ca'),
(123,1734118826,1,'BE',1,0,16,'sys_file_reference','{\"pid\":4,\"tstamp\":1734118826,\"crdate\":1734118826,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":16}',0,'0400$05036bf07d6295d8974706a209f928b3:5a9ade48273ee95d803333aed1c78820'),
(124,1734118826,1,'BE',1,0,13,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-1\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734118826,\"crdate\":1734118826,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 1)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":13}',0,'0400$8ca68b6d6194fe282409c150486a995d:b01640b8cfd71f6a58c6ac688cc2a238'),
(125,1734118828,1,'BE',1,0,17,'sys_file_reference','{\"pid\":4,\"tstamp\":1734118828,\"crdate\":1734118828,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":17}',0,'0400$46f0adee21b395f0f23dc057ec121bde:78ba90db28917b77e8d54ca398316d0e'),
(126,1734118828,1,'BE',1,0,14,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-2\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734118828,\"crdate\":1734118828,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 2)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":14}',0,'0400$28b3b8004614ca624862a35c5535b65b:c4df3248ab1f66dd5e0277da2fc121b2'),
(127,1734118830,1,'BE',1,0,18,'sys_file_reference','{\"pid\":4,\"tstamp\":1734118830,\"crdate\":1734118830,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":18}',0,'0400$9b1e8a1ff7e0dbb11dab43e3f058425b:c9d27ac33ea45c5163a9ef7a25d8e7c7'),
(128,1734118830,1,'BE',1,0,15,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-3\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734118830,\"crdate\":1734118830,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 3)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":15}',0,'0400$ec092cdce053d6ae4a22b889f425bd6d:2c6767f551d88c43f744b60f3d444264'),
(129,1734118832,1,'BE',1,0,19,'sys_file_reference','{\"pid\":4,\"tstamp\":1734118832,\"crdate\":1734118832,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":19}',0,'0400$8a007d2daa6caced353d6173b44eadc5:7008e0248119dc3a255a0170bf6e9370'),
(130,1734118832,1,'BE',1,0,16,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-4\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734118832,\"crdate\":1734118832,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 4)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":16}',0,'0400$2d8a0425cdb5ff3a15486ec280981cc2:65f3058cfe692b682d310c1a87935841'),
(131,1734118834,1,'BE',1,0,20,'sys_file_reference','{\"pid\":4,\"tstamp\":1734118834,\"crdate\":1734118834,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":20}',0,'0400$b11a9f5da06e7e7905b394c59273ea83:97d0d1c7a42cd9603b2010379c1e4e4d'),
(132,1734118834,1,'BE',1,0,17,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-5\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734118834,\"crdate\":1734118834,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 5)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":17}',0,'0400$b8fe3d3babfcdc71f5b954d2c4a1b628:dd0078610e5fffccc9ead4c4f493a60a'),
(133,1734118837,1,'BE',1,0,21,'sys_file_reference','{\"pid\":4,\"tstamp\":1734118837,\"crdate\":1734118837,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":21}',0,'0400$e8b64326580a9f7ae732af7c06a27b3d:bd8e6a36b477d61e04d92cfd10d00f96'),
(134,1734118837,1,'BE',1,0,18,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-6\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734118837,\"crdate\":1734118837,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 6)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":18}',0,'0400$6b52065afbfed235fee125b82491ce5a:c5280ac6fd47b1c38c0a6bfbf7e102ad'),
(135,1734118839,1,'BE',1,0,22,'sys_file_reference','{\"pid\":4,\"tstamp\":1734118839,\"crdate\":1734118839,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":22}',0,'0400$9cd1ae6c4397be1ccbf196981a730a5a:d6a5725e5b31cdd97b9c53c992e81850'),
(136,1734118839,1,'BE',1,0,19,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-7\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734118839,\"crdate\":1734118839,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 7)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":19}',0,'0400$991dc218ca616ca54460492d5915baac:b3bb85e5f9734ca775c8443d6c623425'),
(137,1734118841,1,'BE',1,0,23,'sys_file_reference','{\"pid\":4,\"tstamp\":1734118841,\"crdate\":1734118841,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":23}',0,'0400$06e6fcc1bcc92bb0bafe09de8c890386:a4b81cbb471961a3c12b21861b94f4e1'),
(138,1734118841,1,'BE',1,0,20,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-8\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734118841,\"crdate\":1734118841,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 8)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":20}',0,'0400$bc3bcd98c69d8d04e5ee325bab5872b3:4722b2448adc16c06c642f1de667d5d2'),
(139,1734118843,1,'BE',1,0,24,'sys_file_reference','{\"pid\":4,\"tstamp\":1734118843,\"crdate\":1734118843,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":24}',0,'0400$47e32aa409ef2ade2de439b3d756588e:ec378d8e96f494986de35c9be84dff5c'),
(140,1734118843,1,'BE',1,0,21,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-9\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734118843,\"crdate\":1734118843,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 9)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":21}',0,'0400$203ac0034e61eb5e4a53253249423536:56bb1bc7c1dc564b52a96b05010ef712'),
(141,1734118845,1,'BE',1,0,25,'sys_file_reference','{\"pid\":4,\"tstamp\":1734118845,\"crdate\":1734118845,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":25}',0,'0400$83ee689a362ddb72ef609ad02df83656:5ce305fb03b44e2e5ced3360656e263a'),
(142,1734118845,1,'BE',1,0,22,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-10\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734118845,\"crdate\":1734118845,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 10)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":22}',0,'0400$cac284d943c1b02ae1787cf340d54dd9:8bec6f4b2d1db8231cf9b95e6c8d38b1'),
(143,1734118847,1,'BE',1,0,26,'sys_file_reference','{\"pid\":4,\"tstamp\":1734118847,\"crdate\":1734118847,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":1,\"tablenames\":\"tx_news_domain_model_news\",\"fieldname\":\"fal_media\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":26}',0,'0400$643cf2d78a79f784f1dbf1bf9180fb28:2190384e72cbe31d01b0259338cca742'),
(144,1734118847,1,'BE',1,0,23,'tx_news_domain_model_news','{\"l10n_parent\":0,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\",\"hidden\":1,\"istopnews\":0,\"editlock\":0,\"path_segment\":\"test-1-11\",\"sitemap_priority\":\"0.5\",\"pid\":4,\"tstamp\":1734118847,\"crdate\":1734118847,\"t3_origuid\":1,\"sys_language_uid\":0,\"l10n_source\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"notes\":\"\",\"l10n_state\":null,\"sorting\":0,\"title\":\"Test 1 (copy 11)\",\"teaser\":\"test\",\"bodytext\":\"<p>test<\\/p>\",\"datetime\":1734046393,\"archive\":0,\"author\":\"\",\"author_email\":\"\",\"categories\":\"0\",\"related\":\"0\",\"related_from\":\"0\",\"type\":\"0\",\"keywords\":\"\",\"description\":\"\",\"tags\":\"0\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"import_id\":\"\",\"import_source\":\"\",\"t3ver_stage\":0,\"uid\":23}',0,'0400$eee8b1aaee7c8835a0fe5885f8cdf264:78c7133dfa944a24c0f7a5acb9f330d3'),
(145,1734118875,2,'BE',1,0,13,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$843c580a028be20c96691930df4669bf:b01640b8cfd71f6a58c6ac688cc2a238'),
(146,1734118876,2,'BE',1,0,14,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$80f1e1182b02856ee191c0d1cf8b8aef:c4df3248ab1f66dd5e0277da2fc121b2'),
(147,1734118877,2,'BE',1,0,15,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$f0901b0169c4fe3ff83e8db15cc158de:2c6767f551d88c43f744b60f3d444264'),
(148,1734118877,2,'BE',1,0,16,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$42527ff74920814c4c2da98cc72658d9:65f3058cfe692b682d310c1a87935841'),
(149,1734118878,2,'BE',1,0,17,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$acbfb332c00c781696aded50fd9d2aa6:dd0078610e5fffccc9ead4c4f493a60a'),
(150,1734118879,2,'BE',1,0,18,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$0376d4fba300738fc7088c5368579f60:c5280ac6fd47b1c38c0a6bfbf7e102ad'),
(151,1734118879,2,'BE',1,0,19,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$50f1ec88708c0169c40f7fc7f1d95c38:b3bb85e5f9734ca775c8443d6c623425'),
(152,1734118882,2,'BE',1,0,20,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$1e43e219a8abdc4df01e4a7f033dd130:4722b2448adc16c06c642f1de667d5d2'),
(153,1734118882,2,'BE',1,0,21,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$81328a0079270cb80a051d56cd87fecb:56bb1bc7c1dc564b52a96b05010ef712'),
(154,1734118883,2,'BE',1,0,22,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$8799c50428e139f05f570218a408c1cc:8bec6f4b2d1db8231cf9b95e6c8d38b1'),
(155,1734118883,2,'BE',1,0,23,'tx_news_domain_model_news','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$a6b0fd2017017b280a0fe828876da490:78c7133dfa944a24c0f7a5acb9f330d3'),
(156,1734118928,2,'BE',1,0,7,'tt_content','{\"oldRecord\":{\"pi_flexform\":\"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\" ?>\\n<T3FlexForms>\\n <data>\\n <sheet index=\\\"sDEF\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.orderBy\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.orderDirection\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.dateField\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categoryConjunction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categories\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.includeSubCategories\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.archiveRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestrictionHigh\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.previewHiddenRecords\\\">\\n <value index=\\\"vDEF\\\">2<\\/value>\\n <\\/field>\\n <field index=\\\"settings.startingpoint\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.recursive\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"additional\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.detailPid\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.listPid\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.backPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.limit\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.offset\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.tags\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.hidePagination\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.list.paginate.itemsPerPage\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsFirst\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.excludeAlreadyDisplayedNews\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.disableOverrideDemand\\\">\\n <value index=\\\"vDEF\\\">1<\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"template\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.media.maxWidth\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.media.maxHeight\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.cropMaxCharacters\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.templateLayout\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <\\/data>\\n<\\/T3FlexForms>\"},\"newRecord\":{\"pi_flexform\":\"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\" ?>\\n<T3FlexForms>\\n <data>\\n <sheet index=\\\"sDEF\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.orderBy\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.orderDirection\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.dateField\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categoryConjunction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categories\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.includeSubCategories\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.archiveRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestrictionHigh\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.previewHiddenRecords\\\">\\n <value index=\\\"vDEF\\\">2<\\/value>\\n <\\/field>\\n <field index=\\\"settings.startingpoint\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.recursive\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"additional\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.detailPid\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.listPid\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.backPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.limit\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.offset\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.tags\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.hidePagination\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.list.paginate.itemsPerPage\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsFirst\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.excludeAlreadyDisplayedNews\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.disableOverrideDemand\\\">\\n <value index=\\\"vDEF\\\">1<\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"template\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.media.maxWidth\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.media.maxHeight\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.cropMaxCharacters\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.templateLayout\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <\\/data>\\n<\\/T3FlexForms>\"}}',0,'0400$9375dafafb716fb0e7e6af69c03acfa8:ea41b626baac59a1fe0716bc344af5d9'),
(157,1734118969,2,'BE',1,0,1,'tx_news_domain_model_news','{\"oldRecord\":{\"title\":\"Test 1\"},\"newRecord\":{\"title\":\"Qorem ipsum dolor sit \"}}',0,'0400$cb5a6c26dba15f5c3f0debed99c115d2:fccd16ea3664ec003726b2a72ea38f4b'),
(158,1734118969,2,'BE',1,0,15,'sys_file_reference','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"showinpreview\\\":\\\"\\\",\\\"alternative\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"link\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"crop\\\":\\\"\\\",\\\"uid_local\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\"}\"}}',0,'0400$cb5a6c26dba15f5c3f0debed99c115d2:53cbb769126fb106e07a09de5e196b60'),
(159,1734118974,2,'BE',1,0,13,'tx_news_domain_model_news','{\"oldRecord\":{\"title\":\"Test 1 (copy 1)\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"},\"newRecord\":{\"title\":\"Qorem ipsum dolor sit \",\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"}}',0,'0400$805dc1256de927afd1600fbb4295841b:b01640b8cfd71f6a58c6ac688cc2a238'),
(160,1734118974,2,'BE',1,0,16,'sys_file_reference','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$805dc1256de927afd1600fbb4295841b:5a9ade48273ee95d803333aed1c78820'),
(161,1734118981,2,'BE',1,0,23,'tx_news_domain_model_news','{\"oldRecord\":{\"title\":\"Test 1 (copy 11)\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"},\"newRecord\":{\"title\":\"Qorem ipsum dolor sit \",\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"}}',0,'0400$e6fb63e4d0f312579794d05992d1e16d:78c7133dfa944a24c0f7a5acb9f330d3'),
(162,1734118981,2,'BE',1,0,26,'sys_file_reference','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$e6fb63e4d0f312579794d05992d1e16d:2190384e72cbe31d01b0259338cca742'),
(163,1734118987,2,'BE',1,0,22,'tx_news_domain_model_news','{\"oldRecord\":{\"title\":\"Test 1 (copy 10)\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"},\"newRecord\":{\"title\":\"Qorem ipsum dolor sit \",\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"}}',0,'0400$2451cd974fff371edf034af6edc68ba2:8bec6f4b2d1db8231cf9b95e6c8d38b1'),
(164,1734118987,2,'BE',1,0,25,'sys_file_reference','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$2451cd974fff371edf034af6edc68ba2:5ce305fb03b44e2e5ced3360656e263a'),
(165,1734118993,2,'BE',1,0,21,'tx_news_domain_model_news','{\"oldRecord\":{\"title\":\"Test 1 (copy 9)\",\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"},\"newRecord\":{\"title\":\"Qorem ipsum dolor sit \",\"l10n_diffsource\":\"{\\\"type\\\":\\\"\\\",\\\"istopnews\\\":\\\"\\\",\\\"title\\\":\\\"\\\",\\\"path_segment\\\":\\\"\\\",\\\"teaser\\\":\\\"\\\",\\\"datetime\\\":\\\"\\\",\\\"archive\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"content_elements\\\":\\\"\\\",\\\"fal_media\\\":\\\"\\\",\\\"fal_related_files\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"related\\\":\\\"\\\",\\\"related_links\\\":\\\"\\\",\\\"tags\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"author_email\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"alternative_title\\\":\\\"\\\",\\\"sitemap_changefreq\\\":\\\"\\\",\\\"sitemap_priority\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"notes\\\":\\\"\\\"}\"}}',0,'0400$11f4ffc2a9ad8f68d383c895351e4e9a:56bb1bc7c1dc564b52a96b05010ef712'),
(166,1734118993,2,'BE',1,0,24,'sys_file_reference','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$11f4ffc2a9ad8f68d383c895351e4e9a:ec378d8e96f494986de35c9be84dff5c'),
(167,1734120286,1,'BE',1,0,27,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":1,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"11\",\"sys_language_uid\":0,\"crdate\":1734120286,\"t3ver_stage\":0,\"tstamp\":1734120286,\"uid\":27}',0,'0400$87fa2d9079b43741636372321b015605:dd318efa0f8b108e87c8725b284b77c4'),
(168,1734120286,4,'BE',1,0,3,'sys_file_reference',NULL,0,'0400$87fa2d9079b43741636372321b015605:d2c609347a4764200256b39b9425159a'),
(169,1734120296,1,'BE',1,0,28,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":1,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"11\",\"sys_language_uid\":0,\"crdate\":1734120296,\"t3ver_stage\":0,\"tstamp\":1734120296,\"uid\":28}',0,'0400$2d1d79e85c974a1dc4a29f18b43ae369:59425f1ffdef0b99239b8bcfbe5ba5e9'),
(170,1734120296,4,'BE',1,0,4,'sys_file_reference',NULL,0,'0400$2d1d79e85c974a1dc4a29f18b43ae369:cea5fcd7b97871880cfe3717d6b52ef4'),
(171,1734134090,2,'BE',1,0,7,'tt_content','{\"oldRecord\":{\"pi_flexform\":\"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\" ?>\\n<T3FlexForms>\\n <data>\\n <sheet index=\\\"sDEF\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.orderBy\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.orderDirection\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.dateField\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categoryConjunction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categories\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.includeSubCategories\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.archiveRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestrictionHigh\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.previewHiddenRecords\\\">\\n <value index=\\\"vDEF\\\">2<\\/value>\\n <\\/field>\\n <field index=\\\"settings.startingpoint\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.recursive\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"additional\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.detailPid\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.listPid\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.backPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.limit\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.offset\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.tags\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.hidePagination\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.list.paginate.itemsPerPage\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsFirst\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.excludeAlreadyDisplayedNews\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.disableOverrideDemand\\\">\\n <value index=\\\"vDEF\\\">1<\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"template\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.media.maxWidth\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.media.maxHeight\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.cropMaxCharacters\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.templateLayout\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <\\/data>\\n<\\/T3FlexForms>\"},\"newRecord\":{\"pi_flexform\":\"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\" ?>\\n<T3FlexForms>\\n <data>\\n <sheet index=\\\"sDEF\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.orderBy\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.orderDirection\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.dateField\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categoryConjunction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.categories\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.includeSubCategories\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.archiveRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.timeRestrictionHigh\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsRestriction\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.previewHiddenRecords\\\">\\n <value index=\\\"vDEF\\\">2<\\/value>\\n <\\/field>\\n <field index=\\\"settings.startingpoint\\\">\\n <value index=\\\"vDEF\\\">4<\\/value>\\n <\\/field>\\n <field index=\\\"settings.recursive\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"additional\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.detailPid\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.listPid\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.backPid\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.limit\\\">\\n <value index=\\\"vDEF\\\">3<\\/value>\\n <\\/field>\\n <field index=\\\"settings.offset\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.tags\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.hidePagination\\\">\\n <value index=\\\"vDEF\\\">1<\\/value>\\n <\\/field>\\n <field index=\\\"settings.list.paginate.itemsPerPage\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.topNewsFirst\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.excludeAlreadyDisplayedNews\\\">\\n <value index=\\\"vDEF\\\">0<\\/value>\\n <\\/field>\\n <field index=\\\"settings.disableOverrideDemand\\\">\\n <value index=\\\"vDEF\\\">1<\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <sheet index=\\\"template\\\">\\n <language index=\\\"lDEF\\\">\\n <field index=\\\"settings.media.maxWidth\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.media.maxHeight\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.cropMaxCharacters\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <field index=\\\"settings.templateLayout\\\">\\n <value index=\\\"vDEF\\\"><\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <\\/data>\\n<\\/T3FlexForms>\"}}',0,'0400$acaecaf7816e854e52bb5d1f315ef6b3:ea41b626baac59a1fe0716bc344af5d9'),
(172,1734138367,2,'BE',1,0,8,'tt_content','{\"oldRecord\":{\"bodytext\":\"<p>test 1<\\/p>\",\"l18n_diffsource\":\"\"},\"newRecord\":{\"bodytext\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vitae blandit lectus. Praesent at hendrerit.<\\/p>\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"header_layout\\\":\\\"\\\",\\\"header_position\\\":\\\"\\\",\\\"date\\\":\\\"\\\",\\\"header_link\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"frame_class\\\":\\\"\\\",\\\"space_before_class\\\":\\\"\\\",\\\"space_after_class\\\":\\\"\\\",\\\"sectionIndex\\\":\\\"\\\",\\\"linkToTop\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$4eb25f6ac2de3c279d5ad2fd5ef19af6:2097d84972a039cb6bfe093b17089287'),
(173,1734138450,2,'BE',1,0,9,'tt_content','{\"oldRecord\":{\"bodytext\":\"<p>test 2<\\/p>\",\"l18n_diffsource\":\"\"},\"newRecord\":{\"bodytext\":\"<p><a href=\\\"mailto:lena.schilling@europarl.europa.eu\\\">lena.schilling@europarl.europa.eu<\\/a><\\/p>\\r\\n<p><a href=\\\"tel:+4312313435\\\">+43 1231 3435<\\/a><\\/p>\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"header_layout\\\":\\\"\\\",\\\"header_position\\\":\\\"\\\",\\\"date\\\":\\\"\\\",\\\"header_link\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"frame_class\\\":\\\"\\\",\\\"space_before_class\\\":\\\"\\\",\\\"space_after_class\\\":\\\"\\\",\\\"sectionIndex\\\":\\\"\\\",\\\"linkToTop\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$c27ee44d78e88eabf7a5ca9b7971ebce:367f4f227870d8e2a11496a182574aa3'),
(174,1734193266,4,'BE',1,0,27,'sys_file_reference',NULL,0,'0400$edda2ce7e876f30624c61295516a984a:dd318efa0f8b108e87c8725b284b77c4'),
(175,1734193266,4,'BE',1,0,5,'tt_content',NULL,0,'0400$edda2ce7e876f30624c61295516a984a:c7626fc9bcba6f70beb6ebc085a400db'),
(176,1734193266,4,'BE',1,0,28,'sys_file_reference',NULL,0,'0400$edda2ce7e876f30624c61295516a984a:59425f1ffdef0b99239b8bcfbe5ba5e9'),
(177,1734193266,4,'BE',1,0,6,'tt_content',NULL,0,'0400$edda2ce7e876f30624c61295516a984a:c0db6803ab1ec5f70c36e2a72187867b'),
(178,1734193546,1,'BE',1,0,11,'tt_content','{\"CType\":\"textpic\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"1\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":\"1\",\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":1152,\"header\":\"Projekt 01\",\"header_link\":\"\",\"subheader\":\"Yorem ipsum dolor sit amet!\",\"bodytext\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Viverra in malesuada id consectetur morbi placerat amet sed orci. Non mauris nisi elementum et. Nisi id erat proin leo et. Phasellus augue justo, a rutrum gravida proin duis fringilla dictum. Risus, magna orci feugiat urna condimentum vulputate sed sit dui. Tristique felis, pretium elit quisque non nec, rutrum massa. Accumsan, diam<\\/p>\",\"imageborder\":\"0\",\"imageorient\":\"26\",\"image_zoom\":\"0\",\"linkToTop\":\"0\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734193546,\"t3ver_stage\":0,\"tstamp\":1734193546,\"uid\":11}',0,'0400$a7a084915b9377f838fda54655f426c4:7a14c618500ae24604910dfdd2f8ff12'),
(179,1734193546,1,'BE',1,0,29,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":1,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"11\",\"sys_language_uid\":0,\"crdate\":1734193546,\"t3ver_stage\":0,\"tstamp\":1734193546,\"uid\":29}',0,'0400$a7a084915b9377f838fda54655f426c4:b242d4aecdf71ef1fd418f92b6b759e2'),
(180,1734194797,1,'BE',1,0,30,'sys_file_reference','{\"pid\":1,\"tstamp\":1734194797,\"crdate\":1734194797,\"deleted\":0,\"hidden\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_state\":null,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"uid_local\":\"11\",\"uid_foreign\":11,\"tablenames\":\"tt_content\",\"fieldname\":\"image\",\"sorting_foreign\":1,\"title\":null,\"description\":null,\"alternative\":null,\"link\":\"\",\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"autoplay\":0,\"showinpreview\":\"0\",\"uid\":30}',0,'0400$54aa5889437414cd7d73dcea78109a56:8567b700a7babdbf06fe14b610c41b11'),
(181,1734194797,1,'BE',1,0,12,'tt_content','{\"CType\":\"textpic\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"1\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"hidden\":1,\"starttime\":0,\"endtime\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":1,\"sorting\":1408,\"rowDescription\":\"\",\"tstamp\":1734194797,\"crdate\":1734194797,\"fe_group\":\"\",\"editlock\":0,\"sys_language_uid\":0,\"l10n_source\":0,\"l10n_state\":null,\"header\":\"Projekt 01 (copy 1)\",\"bodytext\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Viverra in malesuada id consectetur morbi placerat amet sed orci. Non mauris nisi elementum et. Nisi id erat proin leo et. Phasellus augue justo, a rutrum gravida proin duis fringilla dictum. Risus, magna orci feugiat urna condimentum vulputate sed sit dui. Tristique felis, pretium elit quisque non nec, rutrum massa. Accumsan, diam<\\/p>\",\"imageorient\":\"26\",\"imageborder\":0,\"records\":\"\",\"pages\":\"\",\"subheader\":\"Yorem ipsum dolor sit amet!\",\"header_link\":\"\",\"image_zoom\":0,\"linkToTop\":0,\"file_collections\":\"\",\"filelink_size\":0,\"filelink_sorting\":\"\",\"filelink_sorting_direction\":\"\",\"pi_flexform\":null,\"category_field\":\"\",\"table_caption\":null,\"selected_categories\":0,\"tx_news_related_news\":0,\"t3ver_stage\":0,\"uid\":12}',0,'0400$e2b8e2d44526a84158743a16b9ff5e9f:b13bbccfb8e2fc277be02db62485ced6'),
(182,1734194797,2,'BE',1,0,12,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"colPos\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\"}\"}}',0,'0400$9fd023c3e1c5cf95b02111a09c86433b:b13bbccfb8e2fc277be02db62485ced6'),
(183,1734194805,2,'BE',1,0,12,'tt_content','{\"oldRecord\":{\"imageorient\":26,\"l18n_diffsource\":\"{\\\"colPos\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\"}\"},\"newRecord\":{\"imageorient\":\"25\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"header_layout\\\":\\\"\\\",\\\"header_position\\\":\\\"\\\",\\\"date\\\":\\\"\\\",\\\"header_link\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imagewidth\\\":\\\"\\\",\\\"imageheight\\\":\\\"\\\",\\\"imageborder\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"imagecols\\\":\\\"\\\",\\\"image_zoom\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"frame_class\\\":\\\"\\\",\\\"space_before_class\\\":\\\"\\\",\\\"space_after_class\\\":\\\"\\\",\\\"sectionIndex\\\":\\\"\\\",\\\"linkToTop\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$645b34b93dd43ab4086c61224a9c14ba:b13bbccfb8e2fc277be02db62485ced6'),
(184,1734194805,2,'BE',1,0,30,'sys_file_reference','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$645b34b93dd43ab4086c61224a9c14ba:8567b700a7babdbf06fe14b610c41b11'),
(185,1734194810,2,'BE',1,0,12,'tt_content','{\"oldRecord\":{\"hidden\":1,\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"header_layout\\\":\\\"\\\",\\\"header_position\\\":\\\"\\\",\\\"date\\\":\\\"\\\",\\\"header_link\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imagewidth\\\":\\\"\\\",\\\"imageheight\\\":\\\"\\\",\\\"imageborder\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"imagecols\\\":\\\"\\\",\\\"image_zoom\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"frame_class\\\":\\\"\\\",\\\"space_before_class\\\":\\\"\\\",\\\"space_after_class\\\":\\\"\\\",\\\"sectionIndex\\\":\\\"\\\",\\\"linkToTop\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"},\"newRecord\":{\"hidden\":\"0\",\"l18n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$ef40f38ecca7d825438d41217536048b:b13bbccfb8e2fc277be02db62485ced6'),
(186,1734198322,2,'BE',1,0,11,'tt_content','{\"oldRecord\":{\"CType\":\"textpic\",\"l18n_diffsource\":\"\"},\"newRecord\":{\"CType\":\"cloonar_textimage\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"header_layout\\\":\\\"\\\",\\\"header_position\\\":\\\"\\\",\\\"date\\\":\\\"\\\",\\\"header_link\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imagewidth\\\":\\\"\\\",\\\"imageheight\\\":\\\"\\\",\\\"imageborder\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"imagecols\\\":\\\"\\\",\\\"image_zoom\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"frame_class\\\":\\\"\\\",\\\"space_before_class\\\":\\\"\\\",\\\"space_after_class\\\":\\\"\\\",\\\"sectionIndex\\\":\\\"\\\",\\\"linkToTop\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$392e7c8ac223f04a394be03005eee8c8:7a14c618500ae24604910dfdd2f8ff12'),
(187,1734198322,2,'BE',1,0,29,'sys_file_reference','{\"oldRecord\":{\"l10n_diffsource\":\"\"},\"newRecord\":{\"l10n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"}}',0,'0400$392e7c8ac223f04a394be03005eee8c8:b242d4aecdf71ef1fd418f92b6b759e2'),
(188,1734198329,2,'BE',1,0,11,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"header_layout\\\":\\\"\\\",\\\"header_position\\\":\\\"\\\",\\\"date\\\":\\\"\\\",\\\"header_link\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imagewidth\\\":\\\"\\\",\\\"imageheight\\\":\\\"\\\",\\\"imageborder\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"imagecols\\\":\\\"\\\",\\\"image_zoom\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"frame_class\\\":\\\"\\\",\\\"space_before_class\\\":\\\"\\\",\\\"space_after_class\\\":\\\"\\\",\\\"sectionIndex\\\":\\\"\\\",\\\"linkToTop\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$ad6100a7e216ff15eb274f0d01975da6:7a14c618500ae24604910dfdd2f8ff12'),
(189,1734198340,2,'BE',1,0,12,'tt_content','{\"oldRecord\":{\"CType\":\"textpic\",\"l18n_diffsource\":\"{\\\"hidden\\\":\\\"\\\"}\"},\"newRecord\":{\"CType\":\"cloonar_textimage\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"header_layout\\\":\\\"\\\",\\\"header_position\\\":\\\"\\\",\\\"date\\\":\\\"\\\",\\\"header_link\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imagewidth\\\":\\\"\\\",\\\"imageheight\\\":\\\"\\\",\\\"imageborder\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"imagecols\\\":\\\"\\\",\\\"image_zoom\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"frame_class\\\":\\\"\\\",\\\"space_before_class\\\":\\\"\\\",\\\"space_after_class\\\":\\\"\\\",\\\"sectionIndex\\\":\\\"\\\",\\\"linkToTop\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$ba3553958392855ccd502432095c7e2c:b13bbccfb8e2fc277be02db62485ced6'),
(190,1734198342,2,'BE',1,0,12,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"header_layout\\\":\\\"\\\",\\\"header_position\\\":\\\"\\\",\\\"date\\\":\\\"\\\",\\\"header_link\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imagewidth\\\":\\\"\\\",\\\"imageheight\\\":\\\"\\\",\\\"imageborder\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"imagecols\\\":\\\"\\\",\\\"image_zoom\\\":\\\"\\\",\\\"layout\\\":\\\"\\\",\\\"frame_class\\\":\\\"\\\",\\\"space_before_class\\\":\\\"\\\",\\\"space_after_class\\\":\\\"\\\",\\\"sectionIndex\\\":\\\"\\\",\\\"linkToTop\\\":\\\"\\\",\\\"categories\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"},\"newRecord\":{\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$a58d690fa379c6a57e9c70a27f26741e:b13bbccfb8e2fc277be02db62485ced6'),
(191,1734211098,2,'BE',1,0,11,'tt_content','{\"oldRecord\":{\"imagesize\":\"\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"},\"newRecord\":{\"imagesize\":\"2\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"imagesize\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$b97e4631d701eb5d2170b991a99dcd8e:7a14c618500ae24604910dfdd2f8ff12'),
(192,1734211105,2,'BE',1,0,12,'tt_content','{\"oldRecord\":{\"imagesize\":\"\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"},\"newRecord\":{\"imagesize\":\"2\",\"l18n_diffsource\":\"{\\\"CType\\\":\\\"\\\",\\\"colPos\\\":\\\"\\\",\\\"header\\\":\\\"\\\",\\\"subheader\\\":\\\"\\\",\\\"bodytext\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"imageorient\\\":\\\"\\\",\\\"imagesize\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"hidden\\\":\\\"\\\",\\\"starttime\\\":\\\"\\\",\\\"endtime\\\":\\\"\\\",\\\"fe_group\\\":\\\"\\\",\\\"editlock\\\":\\\"\\\",\\\"rowDescription\\\":\\\"\\\"}\"}}',0,'0400$7c47e6598194c6b84dc13853ffa0fccf:b13bbccfb8e2fc277be02db62485ced6'),
(193,1734211140,1,'BE',1,0,13,'tt_content','{\"CType\":\"cloonar_textimage\",\"categories\":\"0\",\"layout\":\"0\",\"frame_class\":\"default\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"colPos\":\"0\",\"date\":0,\"header_layout\":\"0\",\"header_position\":\"\",\"imagewidth\":0,\"imageheight\":0,\"imagecols\":\"2\",\"recursive\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"hidden\":\"0\",\"starttime\":0,\"endtime\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l18n_diffsource\":\"\",\"bullets_type\":\"0\",\"cols\":\"0\",\"table_class\":\"\",\"table_delimiter\":\"124\",\"table_enclosure\":\"0\",\"table_header_position\":\"0\",\"table_tfoot\":0,\"target\":\"\",\"uploads_description\":0,\"uploads_type\":\"0\",\"pid\":6,\"sorting\":256,\"header\":\"Lena Schilling\",\"subheader\":\"\",\"bodytext\":\"<p>Test<\\/p>\",\"imageorient\":\"25\",\"imagesize\":\"1\",\"fe_group\":\"\",\"editlock\":\"0\",\"rowDescription\":\"\",\"crdate\":1734211140,\"t3ver_stage\":0,\"tstamp\":1734211140,\"uid\":13}',0,'0400$a2c8a0fbdae1700cb3f7c793b5ddb914:aa58d78b4f5fe95c0d2d1cb36d041737'),
(194,1734211140,1,'BE',1,0,31,'sys_file_reference','{\"sorting_foreign\":0,\"autoplay\":0,\"hidden\":\"0\",\"l10n_parent\":0,\"l10n_diffsource\":\"\",\"showinpreview\":\"0\",\"pid\":6,\"alternative\":null,\"description\":null,\"link\":\"\",\"title\":null,\"crop\":\"{\\\"default\\\":{\\\"cropArea\\\":{\\\"x\\\":0,\\\"y\\\":0,\\\"width\\\":1,\\\"height\\\":1},\\\"selectedRatio\\\":\\\"NaN\\\",\\\"focusArea\\\":null}}\",\"uid_local\":\"9\",\"sys_language_uid\":0,\"crdate\":1734211140,\"t3ver_stage\":0,\"tstamp\":1734211140,\"uid\":31}',0,'0400$a2c8a0fbdae1700cb3f7c793b5ddb914:a49807a2b4589c06cba1b54ee8ff5b0b'),
(195,1734218228,2,'BE',1,0,11,'sys_file_metadata','{\"oldRecord\":{\"alternative\":null,\"status\":\"\",\"l10n_diffsource\":\"\"},\"newRecord\":{\"alternative\":\"A cool image\",\"status\":\"1\",\"l10n_diffsource\":\"{\\\"title\\\":\\\"\\\",\\\"description\\\":\\\"\\\",\\\"ranking\\\":\\\"\\\",\\\"keywords\\\":\\\"\\\",\\\"alternative\\\":\\\"\\\",\\\"caption\\\":\\\"\\\",\\\"download_name\\\":\\\"\\\",\\\"sys_language_uid\\\":\\\"\\\",\\\"creator\\\":\\\"\\\",\\\"creator_tool\\\":\\\"\\\",\\\"publisher\\\":\\\"\\\",\\\"source\\\":\\\"\\\",\\\"copyright\\\":\\\"\\\",\\\"language\\\":\\\"\\\",\\\"location_country\\\":\\\"\\\",\\\"location_region\\\":\\\"\\\",\\\"location_city\\\":\\\"\\\",\\\"latitude\\\":\\\"\\\",\\\"longitude\\\":\\\"\\\",\\\"content_creation_date\\\":\\\"\\\",\\\"content_modification_date\\\":\\\"\\\",\\\"visible\\\":\\\"\\\",\\\"status\\\":\\\"\\\",\\\"fe_groups\\\":\\\"\\\",\\\"categories\\\":\\\"\\\"}\"}}',0,'0400$d491a47b77886ba3ee86d31d09c24288:588bcbd2f0edbe4c98490f0af36f9e9a');
/*!40000 ALTER TABLE `sys_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_http_report`
--
DROP TABLE IF EXISTS `sys_http_report`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_http_report` (
`uuid` varchar(36) NOT NULL,
`status` smallint(5) unsigned NOT NULL DEFAULT 0,
`created` int(10) unsigned NOT NULL,
`changed` int(10) unsigned NOT NULL,
`type` varchar(32) NOT NULL,
`scope` varchar(100) NOT NULL,
`request_time` bigint(20) unsigned NOT NULL,
`meta` mediumtext DEFAULT NULL,
`details` mediumtext DEFAULT NULL,
`summary` varchar(40) NOT NULL,
PRIMARY KEY (`uuid`),
KEY `type_scope` (`type`,`scope`),
KEY `created` (`created`),
KEY `changed` (`changed`),
KEY `request_time` (`request_time`),
KEY `summary_created` (`summary`,`created`),
KEY `all_conditions` (`type`,`status`,`scope`,`summary`,`request_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_http_report`
--
LOCK TABLES `sys_http_report` WRITE;
/*!40000 ALTER TABLE `sys_http_report` DISABLE KEYS */;
INSERT INTO `sys_http_report` VALUES
('0014fbe0-1551-4221-8e6e-85902d571217',0,1734105044,1734105044,'csp-report','frontend.default',1734105043896645,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1WId8gHrUWUOMLBxrNtlONxyrR9nbfOJq8oezp0Ottr4Qdoehdt5tQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734105043896645\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":380,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('00493af5-0318-4d05-9049-e0c6c64a8dab',0,1734011120,1734011120,'csp-report','frontend.default',1734011120383766,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-mZ6k2wjge-q5hCLWPkJ8UGaoavjyN32A9yx77Xk5sOyGrIWcnMXWUg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734011120383766\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('017e591b-c8f1-4bed-9a51-a1e24441d481',0,1734053008,1734053008,'csp-report','frontend.default',1734053007973333,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-98winHp0ICkTzle6nIcniplfiC9zQyz3f33UKZhPyEoTjAOaxwdxlw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053007973333\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0269085f-0c4b-4d86-bd21-4fbb139f1360',0,1734039772,1734039772,'csp-report','frontend.default',1734039771972637,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-xptS-5tkR_rsWc2WgmdszyoHUqcLEav_h6pHzN9UgAdn0cZSWdSU1Q\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734039771972637\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('028d1f61-dccf-42df-8a9e-2d3f3416e638',0,1733968739,1733968739,'csp-report','frontend.default',1733968738873891,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-oPWFV0fOUtIY_4msO6s_JPiVUdxzk75LdxHMrF9NAuCJBJpgbj2eIw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968738873891\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":120,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0316bedf-2a26-4e8e-912a-fb68949cb257',0,1734054743,1734054743,'csp-report','frontend.default',1734054743345560,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Qydb3FJ7a6lFaf6wYcTB5bJvRXm9rWAl90XirQHSaV2Yn6gd_gMY1w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054743345560\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('037cc536-72ae-4ff6-b213-8f51da96b068',0,1734024210,1734024210,'csp-report','frontend.default',1734024209597634,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-EGq7peKUAz5_3i83Vq9QzggYhGdhQg7jJ8e7H-kYnWhBLmMudaSQyA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024209597634\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":136,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('03867502-9a69-463b-8564-5a43508c54de',0,1734020592,1734020592,'csp-report','frontend.default',1734020591917196,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-nHCdWe2w8tti_2Ll7FkNK7S_j4Itjfqx3PYqdY0yVTzo4fGH7SkW0g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020591917196\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0481c974-e75c-4d00-b7f0-9377b03658a6',0,1734024378,1734024378,'csp-report','frontend.default',1734024378110439,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-AcUgT-ZK7j9s55JyLLyKH4D_pGeFDRjUqBfUg5Y1pmbkZnMHaCY3aA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024378110439\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('064a1bc5-72d1-4391-8a93-7c473709839f',0,1734048364,1734048364,'csp-report','frontend.default',1734048364715197,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-PS_1fkf1JhqWZWM1UcNSb0PLbSq0VP0HrJBan0LaJ_tIP-Jz2L-ZvA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734048364715197\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":362,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('069027c8-01d9-4b62-b374-be38b9d0f4c8',0,1734045089,1734045089,'csp-report','frontend.default',1734045089545801,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Nxfi5byBvNqYhC_FMTqH5TNgWUl0DNV8K1cCM6G_ziBxU1SNWRAToQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045089545801\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":189,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('076896a7-fa47-4df3-b7e5-ce74e0a49d6a',0,1734044415,1734044415,'csp-report','frontend.default',1734044415512598,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tCih3nCiOClIJYx-nrn4f-_QX4sUon0bTkJZUT10Y0kpTSxXE15zgw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044415512598\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('07b55e25-0336-4ccc-ab53-3a97e566286d',0,1734054912,1734054912,'csp-report','frontend.default',1734054911928512,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-voeuOQFNTzdoQwkXtOtVJ5QZGBCuIs6MGWZDiZXmAbVsIRoT2vknvQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054911928512\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('07c7ac7b-0675-4c3d-9c33-0a69e971ac1d',0,1734218180,1734218180,'csp-report','frontend.default',1734218180032209,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-g3LZ_tiXUiNZddjTRS87tinJgXzey82_wanZBVLz4p5C1P26HSb3pw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734218180032209\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('081bb0c7-50fb-4340-8b5c-a578420e0d97',0,1734043975,1734043975,'csp-report','frontend.default',1734043975184409,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-5cWx2wPA3KyjOmHWFwuThmILE77vYQXqQr9VJ3ygr4iDcRIuD9xNsA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734043975184409\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('08946c68-1604-4980-93ff-68e5ebe49b01',0,1734024018,1734024018,'csp-report','frontend.default',1734024017661557,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce--Rd-wDVgqzmuY7PRJNzZdDHIqkn29zO1accXazABxDKyR-ptnApMkA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024017661557\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('08cdc8f3-bef3-467e-b769-309c3e94a201',0,1734053866,1734053866,'csp-report','frontend.default',1734053865465698,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-3cCXc9mk03nAU1BvWmRADEHOXXplYYq0Wi37_uXADQJ67rsON4L4QQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053865465698\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":323,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('08e597bb-8c38-43ec-8fd1-7103898dd118',0,1734044395,1734044395,'csp-report','frontend.default',1734044395221099,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-s7VnULgZ96PiFhjXkCbXFKbaPEBGPiTwG50f-JJeIwcabfUF-ne_hQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044395221099\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('09cb3c99-bdae-4d59-820d-d580a8a26b9f',0,1734046764,1734046764,'csp-report','frontend.default',1734046763847893,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-4E_jX2Qbs_OHc3tCppdhLsUJtmbj2ynM8Bfod5h88665fklJrmNAPA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046763847893\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0a3839c6-3428-48f8-8519-b091fe85f318',0,1734054784,1734054784,'csp-report','frontend.default',1734054783764635,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-afEPe5aX0s7Ez9Yuo-i8eNsCBKpDIaQfS7kKULDYIt9zpKBnTqLMLg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054783764635\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0b09c55b-f4ef-4ed9-b7cb-f2db21464168',0,1734052667,1734052667,'csp-report','frontend.default',1734052667102958,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6GZisth8J56gFPcs5yH-ErsLK6VYbqoKUxiR8rgVFajddtcWB95ziw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052667102958\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0be1c7a7-a204-481c-bd71-3fce29f6e76d',0,1734036098,1734036098,'csp-report','frontend.default',1734036098216638,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-65SaVt2HgrBxZsHGULF-9efX2df8zYO8_z2feKIveRqdbN58atulKg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734036098216638\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":134,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0bf125bb-db97-464a-b30d-d6df0f5e3f14',0,1733968919,1733968919,'csp-report','frontend.default',1733968919157765,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Lxjk9ZD9Lmd8lCC2J-rE9hJGsvHeqrLuB__2hmuQehza5Kfe1GifMw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968919157765\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0c24acdb-747f-4453-bac6-adb0386dc480',0,1734010333,1734010333,'csp-report','frontend.default',1734010329527330,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-OkkWILXwTUK10-XDC98hOpjnsY9j1OY3Z9HDbBU8lXiLTkksjQq7Ug\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010329527330\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":4531,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0c4b83f7-636c-4d50-80c9-c5775952232f',0,1734050664,1734050664,'csp-report','frontend.default',1734050664319103,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-JyHq7b_5kKZuiFdcJsE3gzmnJRSXpbf-TygeSsB20b_o_b8kqAzaVw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734050664319103\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0d0f7f2f-56c2-445d-9528-09768e3f050e',0,1734025412,1734025412,'csp-report','frontend.default',1734025412402499,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-rwGN57ArFr5CRWy8YN8XCxac_10YqPw9V9VpYEX9m5287DZ5zznJmA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734025412402499\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0d6e1756-a1e5-4385-96bf-de7b4be5d228',0,1734012294,1734012294,'csp-report','frontend.default',1734012293769785,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-cqoCtP72r5YJv-V6fNR3HL3Pnfaf2-y80rTaENnEpNcjeMl5WYYdJA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734012293769785\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0e6454b7-d2ff-4c06-ba31-c722419f5fb8',0,1734020171,1734020171,'csp-report','frontend.default',1734020171027307,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-LUPLwtgS9AEfvZaRk_mSpPU0Wr2-StORyS-rSrL1YTT4ABFAjvOoaA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020171027307\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('0f9fa6cd-a8a8-4533-a153-910ad3252ada',0,1734052667,1734052667,'csp-report','frontend.default',1734052667102958,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6GZisth8J56gFPcs5yH-ErsLK6VYbqoKUxiR8rgVFajddtcWB95ziw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052667102958\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('0ff61105-cf91-4d6f-8ee2-2eef3a4f3b04',0,1734021277,1734021277,'csp-report','frontend.default',1734021276877683,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-eqayXNOcIjDthuSqtmDFdzRPr82_OC6XS3tES1FgFL51EvtoLOMj5A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734021276877683\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('116d3562-6ee2-4564-8df6-950d1be09be9',0,1734043690,1734043690,'csp-report','frontend.default',1734043690631206,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-v5azO7wzfLpMnNQai6PIFOtiUZTZksppn_kyYAZOe4J2X7FSPZclwA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734043690631206\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1185dc39-fb44-4c79-ab19-c79b323bff59',0,1733968490,1733968490,'csp-report','frontend.default',1733968489886217,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-N1iBWCMIUe6NJXWTmJ_yMrSu4j6mzwAJd1fuYpL-FykcLR15k8QakA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968489886217\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":5938,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('118b415e-e9d4-4f87-99e8-f80ae6fe93f9',0,1734052082,1734052082,'csp-report','frontend.default',1734052082488519,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-F6oqbJENuHommKA8PUSajQ7GoJOj-JhOQu9b_ISDdhSPZ3RNVaFA-A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052082488519\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('119d5470-3d49-422d-80a9-c1b979b1db7e',0,1734010167,1734010167,'csp-report','frontend.default',1734010167103877,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-UqFuxcKl1RlgDRVp81nf1uvQ46Eixd2jVnMcvQLlX1Y-tIri4qgYbw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010167103877\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":128,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('13046391-d441-4024-bab8-e43602c5cd69',0,1734043966,1734043966,'csp-report','frontend.default',1734043966150596,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-uL6jzrPBTTGgxgy4-SuNXDUC4b-FVEqasy89J01t7wvtR8ofUg6PBQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734043966150596\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('140555bc-554d-43ab-8659-ab6d2bfd622e',0,1734052720,1734052720,'csp-report','frontend.default',1734052720208292,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-G1xOUkHUk64s7zyHcryd83xp2riSCnJFX2Lwcw4V9mEk8ZFMhQFvtA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052720208292\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":350,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('148bec18-e375-4e4f-ac9b-14e50da31d49',0,1734024378,1734024378,'csp-report','frontend.default',1734024378110439,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-AcUgT-ZK7j9s55JyLLyKH4D_pGeFDRjUqBfUg5Y1pmbkZnMHaCY3aA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024378110439\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('155ce09d-4cc2-43ad-bcb8-c649c3a9f38a',0,1734024182,1734024182,'csp-report','frontend.default',1734024182281557,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Linux; Android 13; Pixel 7) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/116.0.0.0 Mobile Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-TeWY19bKPkH51MeAZdDtWT2Vg7oNLMHI4SmxsNwaR7u6QSy5qkV9gw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024182281557\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('15611374-dc4c-476c-89bd-b8008c02c23c',0,1734010244,1734010244,'csp-report','frontend.default',1734010243787534,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Gm24uaYncgYzmFn6HTD-lJqO0-J358ujgpA4Qmxm6Bt8ZwYjzXQ9Jw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010243787534\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('160ed474-c8ae-4c2d-a736-23202b9e14d3',0,1734009958,1734009958,'csp-report','frontend.default',1734009958318474,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-lKQELPklixquvzi3wgHGjtbJmzWWfSxT2pj2BAci9-F1BGHRYP7RZg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734009958318474\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":128,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1667e61a-5172-48e0-b260-b3071123d9a8',0,1734052667,1734052667,'csp-report','frontend.default',1734052667102958,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6GZisth8J56gFPcs5yH-ErsLK6VYbqoKUxiR8rgVFajddtcWB95ziw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052667102958\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('17007103-babb-4f9b-bd14-e49881b83ed4',0,1734105290,1734105290,'csp-report','frontend.default',1734105290616009,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-dpUavpnQu0imBanic-b7sahNmXVt6vJZSMgRroCJHpU-5Q_GaELZEw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734105290616009\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('175d4889-5974-4f2b-9658-a9a0ab8b5c69',0,1734053866,1734053866,'csp-report','frontend.default',1734053865465698,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-3cCXc9mk03nAU1BvWmRADEHOXXplYYq0Wi37_uXADQJ67rsON4L4QQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053865465698\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":323,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('17ead9cb-3474-41f2-9a83-8b63907c682c',0,1734045411,1734045411,'csp-report','frontend.default',1734045411612787,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-dWuGY0ZGgIftdLiOHDexHWs6q4TvSIce8oK-BEmEdyu517pgaYpGMw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045411612787\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('181e1689-6a89-464d-a337-55cefb7b730e',0,1734104912,1734104912,'csp-report','frontend.default',1734104912240296,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tHWN27wbBvCACimuL5an3X4ZDdA_Ij1Dt_tMsCasB5Jpgf1C3PcXog\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734104912240296\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":380,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1892e463-b033-48a0-80b9-2d7ff012cff6',0,1734045125,1734045125,'csp-report','frontend.default',1734045125368918,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-7a82ZGvruJkLa8UnXlifj1PcGlurpv7COG2Yp_24NRdgutJso7S8tw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045125368918\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('19668a73-5f57-4e4a-9f51-556d4f26a065',0,1734051352,1734051352,'csp-report','frontend.default',1734051352102235,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-orAfDAmbo5OSYkIYsN83n_5KK1J9VamZ6uK0sQ8gGXwBpBOIkHhPxw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051352102235\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":369,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1ad0f975-4603-4af8-a9a7-ce6d09ea2fb2',0,1734052685,1734052685,'csp-report','frontend.default',1734052684857665,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hOeinX8_K92nWAL0jP-pmIf64Y92G_8bT55OF00NVuM5YzuSDxbiLw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052684857665\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":382,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1c78d3b8-fe8f-4894-8024-7e34b70baa75',0,1733968739,1733968739,'csp-report','frontend.default',1733968738873891,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-oPWFV0fOUtIY_4msO6s_JPiVUdxzk75LdxHMrF9NAuCJBJpgbj2eIw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968738873891\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":120,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1d14227c-dba2-4e47-8845-b271df933e6f',0,1734050902,1734050902,'csp-report','frontend.default',1734050902622328,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-goZCc2zspTV5Lmq9IRb8fGDtgv8XNCmssVyAGARvYJ1gswbVDVYlEA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734050902622328\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":351,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1d7e6fc5-d12e-465c-bf03-55cc5deca18b',0,1734010164,1734010164,'csp-report','frontend.default',1734010164443708,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-DQOcTSHs2Scks8D0h1UhenmefekpGTbZzuVLh65kVeop9pcyOiAVNA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010164443708\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":128,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1d8e2d7f-7f92-4ed4-93da-9cfad65166e3',0,1734011120,1734011120,'csp-report','frontend.default',1734011120383766,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-mZ6k2wjge-q5hCLWPkJ8UGaoavjyN32A9yx77Xk5sOyGrIWcnMXWUg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734011120383766\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1dac6e11-bc1a-476d-bbb5-c17c5ecc2803',0,1734045411,1734045411,'csp-report','frontend.default',1734045411612787,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-dWuGY0ZGgIftdLiOHDexHWs6q4TvSIce8oK-BEmEdyu517pgaYpGMw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045411612787\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1ddd9dc4-c9c0-4e02-a926-1b4496d3cfc5',0,1734054231,1734054231,'csp-report','frontend.default',1734054231385438,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce--NlQT6PTyvj0o1kPPQnmtbKnQ78GHsTjpP4gahhYi-thHULly6941A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054231385438\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1e90bd29-7f5f-4c60-ae6a-63591ef3b76a',0,1734053191,1734053191,'csp-report','frontend.default',1734053189952506,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-oRHXWQoskMZ_O2SVuJ8pjaxRrPF1qfA3KJkUwEkWH_qgtT0W7aMVVw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053189952506\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1f408837-03d6-4e45-9b3b-6b9247fafd4a',0,1734052093,1734052093,'csp-report','frontend.default',1734052093214327,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-qmH79_gmBlyq6Dt0gQy9DpnX6WOxHB4kgzEqCyPtseXBZ9glT6wadw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052093214327\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":358,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('1fd1de5c-d17e-4234-a6c6-7fee2b4187ac',0,1734020322,1734020322,'csp-report','frontend.default',1734020317803278,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-D9V1dKbIBJI_vgBkEo01gQfiAzgENbXdtxsYnz33D-x6CECQgThAKQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020317803278\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":4266,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('20fc541d-8319-48ba-ad9b-ca68029974c9',0,1734053235,1734053235,'csp-report','frontend.default',1734053235017114,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-pxQp5j7LwDlVCFAaBTc9eDB_j9fDLs3y5q3N6qfzbBo136YxpulCDg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053235017114\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('220d9910-f31f-446c-a2c6-498f2e86994a',0,1734105292,1734105292,'csp-report','frontend.default',1734105291889939,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-_uxNF58QTJQi4nUL74FPfH-tpMx5XmLuRSycRFo4VGgzIp3m6gFERw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734105291889939\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":381,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('22113624-b9cf-48f5-b10c-0ca6466258d1',0,1734024222,1734024222,'csp-report','frontend.default',1734024221950716,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hU4JXythTvk5isxtGzZa1enPYvXF054sfuh4vyn-bs8bulicbj0QXA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024221950716\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('237152b0-7a00-4081-947d-6c2772646a05',0,1734010376,1734010376,'csp-report','frontend.default',1734010376409794,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hprv9IAPhUYHZv_iJtybHHDcnhuZgqpYy-WhQg4b8KmF5Pr4P3wZeg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010376409794\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('23936bde-8b6e-44f4-8742-f1105fc8e549',0,1734054287,1734054287,'csp-report','frontend.default',1734054286728413,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-HVrAz54gnv8p3X5Kiu1GfUh14EvXJmOIk4zBPalQMFJrnWElQ4z1Tg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054286728413\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('24e32f25-11ac-4ef6-9550-5b4d864d67cc',0,1734010376,1734010376,'csp-report','frontend.default',1734010376409794,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hprv9IAPhUYHZv_iJtybHHDcnhuZgqpYy-WhQg4b8KmF5Pr4P3wZeg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010376409794\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('257f2ff5-e83f-4829-a1b2-276ff11ac057',0,1734047613,1734047613,'csp-report','frontend.default',1734047613133920,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Linux; Android 13; Pixel 7) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/116.0.0.0 Mobile Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-YymZVXgkoXFC6LbcSYEUB43s5OEczG5G96hg0fY5z_ZnIEzeyDUclA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047613133920\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":584,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('259c523d-0d29-4453-9a89-734fd3afac11',0,1734010244,1734010244,'csp-report','frontend.default',1734010243787534,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Gm24uaYncgYzmFn6HTD-lJqO0-J358ujgpA4Qmxm6Bt8ZwYjzXQ9Jw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010243787534\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('25a5827d-eb33-4a65-82ef-4cd554912653',0,1734051361,1734051361,'csp-report','frontend.default',1734051361669001,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-ghaoHUpHrQ53T3CmYAFxKsCZT6U3tCJylUaEv4t_7G3pHD7y_vpBTA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051361669001\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('26c8455a-f3d8-4f0c-b67f-c77a0062f29b',0,1734044348,1734044348,'csp-report','frontend.default',1734044347962393,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-MgChNS54O5Eym7-OYQE_UIWlnWWg5xCwfFgNvS49bWx_PH8wMZ0L0g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044347962393\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('2775e7ad-58e2-459b-bb1a-b5d043796fa3',0,1734023788,1734023788,'csp-report','frontend.default',1734023788219907,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-7gszrsQQPRPjWf7Qtp4lcMIW7Cji1dL4HP0M3kPnRfZVnE_bCNhQVQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023788219907\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":136,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('27a06002-bc49-4b58-bb59-12553c860778',0,1734039733,1734039733,'csp-report','frontend.default',1734039728945538,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6npB4m4uvvB-vYtP0P_ejTVNMlg8et1OtvstTb1_wncVWAL-HJwcKw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734039728945538\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('292a2e5f-1caa-49bc-bd38-15a9d3671a3c',0,1734011086,1734011086,'csp-report','frontend.default',1734011086348300,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Z1hIPSdVAgJEdMKdZRGTkq3edHLbW6akBtfaflzgfpFPqPpyWSka1A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734011086348300\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('29c88e0c-4f66-4f5f-a1e7-15d51e5394e4',0,1734010403,1734010403,'csp-report','frontend.default',1734010403337524,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-4FuKs2zTFzWaHPVKKZHf5pbA3CY2T9TwKNVk_KlzmIU7AKYL9ps8fg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010403337524\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":128,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('2bfb0532-f60a-4efa-95cb-888c2341a0d9',0,1734041851,1734041851,'csp-report','frontend.default',1734041850829776,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-VuM3S0jVo00-wr62NlNbbwIV9MgErUE-iX_rKlBLE0It-Vp0DNIfdw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734041850829776\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('2c91d64b-0359-4f39-832d-2fed740a2a37',0,1734044434,1734044434,'csp-report','frontend.default',1734044434011990,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-KC2QuD5M4JDpZyEbS_Zgez5WpWU7ustjemcEt6I_CWo0bL30mRoQ2Q\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044434011990\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('2cb248ae-ec37-44ea-a339-8d00ae103f7f',0,1734046953,1734046953,'csp-report','frontend.default',1734046953464425,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-08ONNYY0_B9JTwdlDW0U-Jsd4UGEGSnLeD-StQirROJOYwHY42sfpw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046953464425\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('2d1b1f3d-0e95-492a-8784-1ee3c0ad21d7',0,1734053900,1734053900,'csp-report','frontend.default',1734053899745842,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-x-4n2baoxO65TJss3KfrZxqt0HAViXFk9aUsDTiOStt99Y5jrJ6DEA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053899745842\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('2d20f7e0-27cb-4612-a592-437e9b5e10f9',0,1734051865,1734051865,'csp-report','frontend.default',1734051865364439,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-MHQsGlAwCZ_M0buZf5aTHbl2IRfcFtVsFpr7pMjmfn1DjTXghK-J7w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051865364439\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":358,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('2d3a5f54-2a1f-4140-98eb-35abd74cf4a2',0,1734023991,1734023991,'csp-report','frontend.default',1734023990269235,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-s3fUqnvYxW6Guo6BdzbzNWv60iarMpzkgKGLC2jZH6Aq6Ky7dXtxDA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023990269235\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":136,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('2d46ec6b-99f1-492b-b346-c506a202528a',0,1734104913,1734104913,'csp-report','frontend.default',1734104913658495,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-911uiGQ9roviVrbRrcCfXOZOvic1kVrcxANqw6iuDLCX5AcVc6bcXw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734104913658495\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":380,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('2da50c9f-c25b-411d-9069-6858202269e9',0,1734051404,1734051404,'csp-report','frontend.default',1734051404440248,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-DCyfgsB6Iw9NNWgBYf8R7VK3ia-VboraWn3tGD0pfimED07A_ExTuQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051404440248\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('2e11bd5f-a67b-499d-8bec-5b61b28c847a',0,1734023161,1734023161,'csp-report','frontend.default',1734023142329236,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tOIk2HmtmaSFS0CenWU5iwS9YbzbddS0KbgkE0Gn1slI1E7DvbYa5w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023142329236\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('2e86b98f-b955-49ca-aca3-5f9393b882bb',0,1734041616,1734041616,'csp-report','frontend.default',1734041616760842,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-TcNYX01Uye8s9i7mIBKu_3_nIs3dEv3voKT7FikmlflXzZdYVzAHRw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734041616760842\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('2f481426-cf4a-4b96-a442-309179a109ca',0,1734053980,1734053980,'csp-report','frontend.default',1734053980259236,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-CarQ0oEyLFhP_ucxq6dtUh7w03ILBZbBA2P4CyJPbF7DgbPMcD2vIw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053980259236\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":234,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('30658fa2-302b-4bff-89ac-a5888f6956a4',0,1734051636,1734051636,'csp-report','frontend.default',1734051636545415,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-RMYkejoXRvcde_aXQpT5cuCr6tJ346Yk36ObvCrp5zX1nY5iygSXtw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051636545415\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":363,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3226ee11-7727-4e99-9bbe-122cf3849aca',0,1734010333,1734010333,'csp-report','frontend.default',1734010329527330,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-OkkWILXwTUK10-XDC98hOpjnsY9j1OY3Z9HDbBU8lXiLTkksjQq7Ug\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010329527330\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":4531,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('325008bb-d836-4b7c-ab7b-20927a7af465',0,1734053967,1734053967,'csp-report','frontend.default',1734053967272940,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-TjDlggEcveX-Nf4n871PbHSsLD1gg3F29bNS0p8ea2iDbgQuo1Pd_w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053967272940\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('329dbf9d-4efd-461b-b4fc-036555f37ee6',0,1734010167,1734010167,'csp-report','frontend.default',1734010167103877,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-UqFuxcKl1RlgDRVp81nf1uvQ46Eixd2jVnMcvQLlX1Y-tIri4qgYbw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010167103877\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":128,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('364b17c5-1387-43bd-a566-6d39b22651de',0,1734052089,1734052089,'csp-report','frontend.default',1734052089568257,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6p87LnHV2I2ufMl6iHsoAo9Ybc4R59Tt0JLUtSs7mQO4-68xVMGhtg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052089568257\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":358,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3687aec8-2a05-4706-b5de-9d7dee10cd67',0,1734053926,1734053926,'csp-report','frontend.default',1734053926264963,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-0vSWHRK4LFD84pub0BGM3cqdAwGlFb-uhOBCOunULaWHd8yjnUwUcQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053926264963\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('36c93b25-7e11-4138-8198-cc93afe7087b',0,1734047133,1734047133,'csp-report','frontend.default',1734047132809340,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-btHFh4AMOpAZHEHtAcEfE9kA8VDHehIdxd9ljEJiPnZakiGaPReoIg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047132809340\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('3766a5ae-868d-4a3e-9744-6447ac67432c',0,1734010618,1734010618,'csp-report','frontend.default',1734010618138661,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-W79aBmDQGUTJti2kLosrebBt9VRY7Wi8g2GTfZDwr5VJN8sF7y4Hvw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010618138661\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('376a5dfd-9970-4b90-98a6-36fc9051f9fa',0,1734047613,1734047613,'csp-report','frontend.default',1734047613133920,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Linux; Android 13; Pixel 7) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/116.0.0.0 Mobile Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-YymZVXgkoXFC6LbcSYEUB43s5OEczG5G96hg0fY5z_ZnIEzeyDUclA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047613133920\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('37c8d15b-b74c-4737-8ef5-15e36f30b966',0,1734053984,1734053984,'csp-report','frontend.default',1734053984199543,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-0FmKWIIYdI8irhMetdwLkRukKrti-pE0sa2vhrVLGP2ntvL2f0dY7w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053984199543\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('389d62fa-6632-4791-9072-6ec8bd5f6902',0,1734218180,1734218180,'csp-report','frontend.default',1734218180032209,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-g3LZ_tiXUiNZddjTRS87tinJgXzey82_wanZBVLz4p5C1P26HSb3pw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734218180032209\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('3971abaa-5316-40b7-8d28-97285ad0bf81',0,1734010450,1734010450,'csp-report','frontend.default',1734010449432598,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-8zfCT8gxniNfXNXHA1Z6LnfONOz5Pb0M7GQ6fochzNAWmpGo44JU_w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010449432598\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":167,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('39fe5f2f-ac36-4413-9a7d-ceb901ad6f1f',0,1734048332,1734048332,'csp-report','frontend.default',1734048332454078,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-TLrFHi_0bDyixMTbi4PEixtQYHhmfIh2yaSlY4_1jdVRchenk24o2w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734048332454078\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3a1e8d9b-fad2-4025-8db8-4f698fa1ebde',0,1734046846,1734046846,'csp-report','frontend.default',1734046846529275,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Vlu2l7W0FPCp66OUqVZy3nV93A56zQv4ZK3oPowNYcn4c8bBKWevnA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046846529275\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3a9392ec-8464-48d1-85f1-6cce4d9ea6a8',0,1734020484,1734020484,'csp-report','frontend.default',1734020480376102,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-AgS0hlkT0jHr_TuZ3ANia4ZTiU8H_CCZxK_vdrf82gm6hGPFo1zMQw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020480376102\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":4867,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3aca9f41-de62-4eba-be36-8f8dc8a6b012',0,1734054926,1734054926,'csp-report','frontend.default',1734054925540315,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-QMYe3qmHVomDiianDMopMALNiMUPWlIRr3j9hlTsj2mfHdyQj583UQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054925540315\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":381,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3b4cf91e-3655-4eb8-9442-19d212096181',0,1734054580,1734054580,'csp-report','frontend.default',1734054579878348,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-69s05GTrUqh0bMkw5qx2db9tm3ZkBGmBmFL7yfLf7h8aTE7QHSaRkg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054579878348\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3c136de5-1687-4aea-859e-3eb3153f0844',0,1734105412,1734105412,'csp-report','frontend.default',1734105412735753,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-s8LqmFYlgBU2ka-A0lLSeEKeLY-zbKLjQJTEzfbetBFpwzyua4Escw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734105412735753\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":381,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3c6f00e5-3439-4296-baac-24c42fcc4d97',0,1734052082,1734052082,'csp-report','frontend.default',1734052082488519,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-F6oqbJENuHommKA8PUSajQ7GoJOj-JhOQu9b_ISDdhSPZ3RNVaFA-A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052082488519\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3c751834-5da1-434c-996c-2e328a7bedfd',0,1734051352,1734051352,'csp-report','frontend.default',1734051352102235,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-orAfDAmbo5OSYkIYsN83n_5KK1J9VamZ6uK0sQ8gGXwBpBOIkHhPxw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051352102235\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":369,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3d26adbe-4846-4d4b-98d5-ed03be7800ad',0,1734053846,1734053846,'csp-report','frontend.default',1734053845790463,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1xkz-HYAwwc7jXdcubE7kWXeiJWs67_kk2uLDe9DKgn8kLUPZYM44g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053845790463\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3df60630-4033-4d19-addf-da48b4977317',0,1733968649,1733968649,'csp-report','frontend.default',1733968647609166,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-LZXj00v6k6Dio4fLBDEvRz13fKS0k_aZHaJ2MYGU-r16PGXmTWdSPA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968647609166\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":178,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('3f2321b7-75be-4f27-8cf0-d7eeb4eb465d',0,1734053967,1734053967,'csp-report','frontend.default',1734053967272940,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-TjDlggEcveX-Nf4n871PbHSsLD1gg3F29bNS0p8ea2iDbgQuo1Pd_w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053967272940\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('4002d416-d511-4497-8edb-cd4bc2b9a69a',0,1734023529,1734023529,'csp-report','frontend.default',1734023529011627,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-l2J2Ny1mkM7u4496scwZChcD-aUftoS89Hr1tr6PqZo-USZJF7XYSw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023529011627\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('400fee3e-65ec-4788-a210-fcc624495457',0,1734046953,1734046953,'csp-report','frontend.default',1734046953464425,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-08ONNYY0_B9JTwdlDW0U-Jsd4UGEGSnLeD-StQirROJOYwHY42sfpw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046953464425\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('41b223d6-76cf-4bbc-b696-c3670064dd07',0,1734009957,1734009957,'csp-report','frontend.default',1734009956732825,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-lfcOxPNTGM7x286k3ZJKg8xMTtrbcu52FiJAdl3uA76wy5VgooRSQA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734009956732825\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('41f186ba-3f6a-43ba-9ad8-83f4615b6619',0,1734045079,1734045079,'csp-report','frontend.default',1734045079784257,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-CgReU5r_yl-K8K52U1I93vjSBQk-UvOgON3HJIKMrOJk30IFw3obbQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045079784257\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":189,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('4534ca66-648b-4821-8945-6a4a4d24ea3f',0,1734053828,1734053828,'csp-report','frontend.default',1734053828226318,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-fBnv7WFaC8rYWimmtw3x96_3yf8lRvpT0upo7S5RABWtt7gdJM9QeA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053828226318\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('46833ce6-d31f-4474-a92c-8d7e116ab158',0,1734053846,1734053846,'csp-report','frontend.default',1734053845790463,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1xkz-HYAwwc7jXdcubE7kWXeiJWs67_kk2uLDe9DKgn8kLUPZYM44g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053845790463\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('474a7feb-39d8-4f77-82ce-6ecaff228ae5',0,1734010403,1734010403,'csp-report','frontend.default',1734010403337524,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-4FuKs2zTFzWaHPVKKZHf5pbA3CY2T9TwKNVk_KlzmIU7AKYL9ps8fg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010403337524\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":128,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('47505fa3-365d-4fd0-aa4e-b06ba5bcc228',0,1734052086,1734052086,'csp-report','frontend.default',1734052086677215,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-ELrSipVcH_8hTjwtisj3QBkHDuePsFcUpa26VHVHM34OEBla9xYkdA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052086677215\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('47560d27-1a7c-44c1-b7fe-94cc0709dd3c',0,1734009418,1734009418,'csp-report','frontend.default',1734009417923233,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-LwZ3Tx6gu4wKRA_IumQN6AuIC6huOWfE751kbzv_lTEuA1h29ADleA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734009417923233\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('47abb774-4812-4070-b2be-bdfb19804a5d',0,1734051404,1734051404,'csp-report','frontend.default',1734051404440248,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-DCyfgsB6Iw9NNWgBYf8R7VK3ia-VboraWn3tGD0pfimED07A_ExTuQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051404440248\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('47f9475b-abdc-401e-8836-891ed3d7e1a8',0,1734051142,1734051142,'csp-report','frontend.default',1734051142446211,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6v4EbKl00qmUvOkeNxMi3inpePIM5JZFMRDeu9bIdSFUflw5P6EfuQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051142446211\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('48f6add6-94fc-4441-87e4-2d8deefae9cb',0,1734105290,1734105290,'csp-report','frontend.default',1734105290616009,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-dpUavpnQu0imBanic-b7sahNmXVt6vJZSMgRroCJHpU-5Q_GaELZEw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734105290616009\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('498014e1-806a-4839-84a0-ada6db883429',0,1734045125,1734045125,'csp-report','frontend.default',1734045125368918,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-7a82ZGvruJkLa8UnXlifj1PcGlurpv7COG2Yp_24NRdgutJso7S8tw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045125368918\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('49bff1fe-9527-43ed-9e6b-33bdd16448be',0,1734054912,1734054912,'csp-report','frontend.default',1734054911928512,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-voeuOQFNTzdoQwkXtOtVJ5QZGBCuIs6MGWZDiZXmAbVsIRoT2vknvQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054911928512\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('4a86cd04-cdb4-4099-9b20-a9bb3e32635e',0,1734218202,1734218202,'csp-report','frontend.default',1734218202698507,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-gZZIG2Sm2akuIcVS8cR2GQKP7qmdo10rfzUkyjP4NsmI0ZVPLsppZA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734218202698507\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('4b2e0741-34a9-4c3b-b7c3-b45891f080c7',0,1734104738,1734104738,'csp-report','frontend.default',1734104738523545,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-l_OP74vRZ9FdI2obt4Ar-YkMDKk2j9pIGxdhKEue072kyxKLntY4sQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734104738523545\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":380,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('4ba48279-4e63-48e7-81f5-f26ab0373fe6',0,1734047344,1734047344,'csp-report','frontend.default',1734047344750192,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-OpiHnwQ_Y5BW7gSP8TbxUT5pitTNIJLP43-p520bNpivx_vtF5ZAJQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047344750192\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('4c07eb10-96d4-437f-8f9a-3f3dcfae9312',0,1734044395,1734044395,'csp-report','frontend.default',1734044395221099,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-s7VnULgZ96PiFhjXkCbXFKbaPEBGPiTwG50f-JJeIwcabfUF-ne_hQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044395221099\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('4c0b34d7-432b-4105-a7ff-514398a800b6',0,1733968713,1733968713,'csp-report','frontend.default',1733968712461868,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-j1uv3Nu9eY5tSgMMfZOeJZ52UnDZZmOYYhlT3Y5cFkpzJfYazDXPXg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968712461868\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":120,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('4c2b0d41-50e1-40f3-8910-99765201a063',0,1734020313,1734020313,'csp-report','frontend.default',1734020312483623,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-ZP75biSN-lsEE5iiiV4b6iF7LDbTqEX51e7dW7EWRf0ZGK9RkIz-tw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020312483623\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('4c4afbd3-b744-4400-94f3-56a1ce842d73',0,1733968490,1733968490,'csp-report','frontend.default',1733968489886217,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-N1iBWCMIUe6NJXWTmJ_yMrSu4j6mzwAJd1fuYpL-FykcLR15k8QakA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968489886217\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":5938,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('4d3c08fc-f8fc-4ea8-9b5b-8abd63850ee9',0,1733968925,1733968925,'csp-report','frontend.default',1733968925517601,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-ee-indsGH68tWnTZQ8RQl6s1WmmEiiJ2LQ7HreUcyFpHDNp97JLaGA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968925517601\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('4ea2a37f-ee87-4dc3-86a2-01a24ef2bc0b',0,1733968942,1733968942,'csp-report','frontend.default',1733968942203277,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-WOljKtmFlPSRgJtdSIT03izTidGR-qnd7WLE_5_KG84C3uxahywcVQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968942203277\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('4ed8cc99-3297-424b-b5db-c62b3951f549',0,1734050655,1734050655,'csp-report','frontend.default',1734050655603690,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-lihx_qpXkLExzl207CRr-LGjW1TQycLd5_RyZbVxdjcX8nyVuAVDSg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734050655603690\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":366,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('4f2f85ca-9870-44fe-8a0e-d64beec3d8cc',0,1734021277,1734021277,'csp-report','frontend.default',1734021276877683,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-eqayXNOcIjDthuSqtmDFdzRPr82_OC6XS3tES1FgFL51EvtoLOMj5A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734021276877683\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('5112ebf5-7e26-4f4f-8c3e-fccac9101383',0,1734051356,1734051356,'csp-report','frontend.default',1734051356546822,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-2iowV3SqwS22qmAIZGHtzY7eiPxtHWgXNXMV3nw_hpqD8EVsReOftg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051356546822\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":348,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('520ffe97-d3ea-4fed-b873-a8c341d1b3fc',0,1734054746,1734054746,'csp-report','frontend.default',1734054745889724,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-js8XtNycYE01MJLY3vmge9c-JNvqXB5NUIK-etyXh7Her4BB_E2WDA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054745889724\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":323,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('530d5866-9c5d-4b34-8568-71097e063073',0,1734050913,1734050913,'csp-report','frontend.default',1734050913018210,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-TwHux3RNAOYTOhrX8ZwkcaMTt2SOHJc0Juf-DP3Q4UeCWYvE5sYNOw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734050913018210\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":372,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('53906871-a9f8-4f81-8282-dc5656eb9397',0,1734053184,1734053184,'csp-report','frontend.default',1734053184586749,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-i-ugeX0ApEGoXZ7QKPGitFpi-5LaNda2qpidDJNORLQkK3CFV0vuJA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053184586749\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('5393d6d4-b0bd-4006-8532-554283ce925d',0,1734047613,1734047613,'csp-report','frontend.default',1734047613133920,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Linux; Android 13; Pixel 7) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/116.0.0.0 Mobile Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-YymZVXgkoXFC6LbcSYEUB43s5OEczG5G96hg0fY5z_ZnIEzeyDUclA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047613133920\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('54454492-eb05-4ad9-acc8-a67c453c2df6',0,1734040537,1734040537,'csp-report','frontend.default',1734040537049193,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-xg2Ac_SpYo2CxAsCpXCdOVZ5QYsvOBtuPfEwYbFKAmckQ7EWRonPIQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734040537049193\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('55e73bae-af34-4bfd-bde3-24614b8e0f69',0,1734021897,1734021897,'csp-report','frontend.default',1734021896745234,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Q3tBxTgi-dXr3IDtNY5VOFaYlsoITHrVWqZiYlsQVundOLYyFeKrEQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734021896745234\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('56f56603-5b30-4446-8db5-a71e4325e212',0,1734024018,1734024018,'csp-report','frontend.default',1734024017661557,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce--Rd-wDVgqzmuY7PRJNzZdDHIqkn29zO1accXazABxDKyR-ptnApMkA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024017661557\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('57b524b1-f2b0-4cf2-b799-cce32bfeed78',0,1734044348,1734044348,'csp-report','frontend.default',1734044347962393,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-MgChNS54O5Eym7-OYQE_UIWlnWWg5xCwfFgNvS49bWx_PH8wMZ0L0g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044347962393\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('57ddd241-c578-4330-a909-dfd0fb0cf76f',0,1734044415,1734044415,'csp-report','frontend.default',1734044415512598,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tCih3nCiOClIJYx-nrn4f-_QX4sUon0bTkJZUT10Y0kpTSxXE15zgw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044415512598\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":189,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('582715a6-38d4-449d-a5ce-e8fff03170ba',0,1733968122,1733968122,'csp-report','frontend.default',1733968121804930,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-P1daJVS-Pe32HwrNt5ztURQLeUFpQJdyVeEQ2a7YSFDfulNAgEMVqg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968121804930\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('58a7cc72-7384-42b8-b453-00fb46f264e3',0,1734053875,1734053875,'csp-report','frontend.default',1734053874574633,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-l20NnZdIY6oLnmpEJmtOA4fqfYW6hGxT50hanx4NWhNeXoFU5dEFvg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053874574633\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('5aaf9054-c6d0-493e-83fa-d7f4e5fe54b6',0,1734044239,1734044239,'csp-report','frontend.default',1734044239693393,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1ULO-lFY1jbvDst8Ej2VJu7jHUzpzT284gZitQDGL-AlLPetG3iXDw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044239693393\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('5ad0bbb5-3d53-4b26-accb-daa8ab71dfff',0,1734052685,1734052685,'csp-report','frontend.default',1734052684857665,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hOeinX8_K92nWAL0jP-pmIf64Y92G_8bT55OF00NVuM5YzuSDxbiLw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052684857665\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('5b19ccaf-67c1-438c-9b59-19b149e20cb0',0,1734107989,1734107989,'csp-report','frontend.default',1734107989721616,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"font-src\",\"effective-directive\":\"font-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-VAE3-ZS7Oqaobsv8X4KSY0dF_3ND5FA8PewqSl8hL_L7940QYblZRg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734107989721616\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','c4381741aed62ecdbd1a21b4b241125f078dcd3f'),
('5d777103-6c01-48fe-b14b-c6bb9eec275f',0,1734010764,1734010764,'csp-report','frontend.default',1734010764127742,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Z4WRLJFY6UxunH8R8K0idGordJrcUJIjMGqicWr0KqJhmKca5aJadA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010764127742\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('5e42cabe-0d5b-4bcc-8ef6-f22513663c4f',0,1734010591,1734010591,'csp-report','frontend.default',1734010590832754,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-MWh1iTFeBfUy_gFg4sE2nQlSsvE8VjRTTLywTrlBCk_FFZ-wN6m2GQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010590832754\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('5e8268fe-3adc-4cdc-bc24-4235e2011c5e',0,1734048364,1734048364,'csp-report','frontend.default',1734048364715197,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-PS_1fkf1JhqWZWM1UcNSb0PLbSq0VP0HrJBan0LaJ_tIP-Jz2L-ZvA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734048364715197\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":362,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('61bdbf1c-a32f-4df9-bed1-b96633fdbd4a',0,1734047345,1734047345,'csp-report','frontend.default',1734047344750192,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-OpiHnwQ_Y5BW7gSP8TbxUT5pitTNIJLP43-p520bNpivx_vtF5ZAJQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047344750192\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":584,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('62408c27-e938-40db-b9ab-a1c3e9bb4299',0,1734041616,1734041616,'csp-report','frontend.default',1734041616760842,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-TcNYX01Uye8s9i7mIBKu_3_nIs3dEv3voKT7FikmlflXzZdYVzAHRw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734041616760842\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('62c12d04-ebed-4a61-be1b-3748d6cf1fff',0,1734040257,1734040257,'csp-report','frontend.default',1734040256791595,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-jMOuMUJ9TZMEvCPGmn7_PqbL1yO-w9GK1cKP80ANPsGLORv116JpBg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734040256791595\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('62f3a880-36ea-4ff7-acc9-d6a37c79e4a4',0,1734024185,1734024185,'csp-report','frontend.default',1734024185123744,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Linux; Android 13; Pixel 7) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/116.0.0.0 Mobile Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-5_QX9x9GvkYIcYtiUGNddRm48Sw1sJewNn3tYihJEcOLkXDNuM5cCA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024185123744\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('63763910-7282-443a-a60b-5985dc54433b',0,1734054743,1734054743,'csp-report','frontend.default',1734054743345560,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Qydb3FJ7a6lFaf6wYcTB5bJvRXm9rWAl90XirQHSaV2Yn6gd_gMY1w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054743345560\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6405af95-36be-440a-8148-6de7bcfac68a',0,1734045121,1734045121,'csp-report','frontend.default',1734045089545801,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Nxfi5byBvNqYhC_FMTqH5TNgWUl0DNV8K1cCM6G_ziBxU1SNWRAToQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045089545801\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6438861a-bfd5-470e-94c6-af010da92187',0,1734218202,1734218202,'csp-report','frontend.default',1734218202698507,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-gZZIG2Sm2akuIcVS8cR2GQKP7qmdo10rfzUkyjP4NsmI0ZVPLsppZA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734218202698507\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('6773b4e6-b789-4610-b39f-06a5f9f6046a',0,1733968924,1733968924,'csp-report','frontend.default',1733968923804232,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-NNFbb7RcYFQa1D5zdmUMP6bQm70CIcPgxR7Tu33PhRQUTjCBnY0Ohg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968923804232\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6833221f-83a1-484c-9648-95d46d001b3e',0,1734046897,1734046897,'csp-report','frontend.default',1734046897120612,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-CmjI9HLPgZADYDOvddkpykh_QPLROJ6qXjptwtnL7wbH_RnxcK5k8A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046897120612\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":222,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('683ebcd2-9ca0-4e21-bc87-085fdfaa33e0',0,1734043821,1734043821,'csp-report','frontend.default',1734043821074646,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-sx4TT5DQW13ZmuT6WaORSyr0dLeq9X2ip0YjnlqtLjpDa_6nGvaibw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734043821074646\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('69ab9239-a5b5-4d24-8ed5-8f7b95d1c2e5',0,1734045089,1734045089,'csp-report','frontend.default',1734045089545801,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Nxfi5byBvNqYhC_FMTqH5TNgWUl0DNV8K1cCM6G_ziBxU1SNWRAToQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045089545801\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":189,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6a336d43-30b7-4478-ac65-a3986d27cd6f',0,1734053984,1734053984,'csp-report','frontend.default',1734053984199543,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-0FmKWIIYdI8irhMetdwLkRukKrti-pE0sa2vhrVLGP2ntvL2f0dY7w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053984199543\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6b22a9e6-d1cd-41eb-b797-1a02e6122f1f',0,1734218242,1734218242,'csp-report','frontend.default',1734218242232862,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-JJonMClfgs5nJ8Uqkgx1DDhRsMLXgX7RgupcFEvFlnsYvt0i-ePApQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734218242232862\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('6b2a1520-8fbc-4830-8975-a9f367769d8d',0,1734023828,1734023828,'csp-report','frontend.default',1734023823742722,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1g5W9zB5mxKDQUxqrhbi-T8DXLjfGTi3IPVx9LTbuMalGVpq9MJy3A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023823742722\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6b564e49-4892-4455-ae8a-37cc746082ad',0,1734044795,1734044795,'csp-report','frontend.default',1734044776253679,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tAjnDYJxk8eTNerRwy4M8Xcy2r_dtJTWc5xOHJSJz_TkVUaYDfxf_g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044776253679\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6cae404c-e8b5-4301-a166-523bb24e0eb2',0,1734044776,1734044776,'csp-report','frontend.default',1734044776253679,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tAjnDYJxk8eTNerRwy4M8Xcy2r_dtJTWc5xOHJSJz_TkVUaYDfxf_g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044776253679\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":189,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6d02168b-2e00-47df-ac4a-da15131049f8',0,1734051361,1734051361,'csp-report','frontend.default',1734051361669001,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-ghaoHUpHrQ53T3CmYAFxKsCZT6U3tCJylUaEv4t_7G3pHD7y_vpBTA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051361669001\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6d2b9bcd-468f-4b2f-b41a-8b423fe8a395',0,1734054909,1734054909,'csp-report','frontend.default',1734054909053909,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-dcn83TP95N5Nq8RK8SnxSWWgr4Q4outEmWDtFvFZx6ICSoLjTkcd7A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054909053909\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6db0a97b-d855-4899-ad2f-73863a066896',0,1734044415,1734044415,'csp-report','frontend.default',1734044415512598,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tCih3nCiOClIJYx-nrn4f-_QX4sUon0bTkJZUT10Y0kpTSxXE15zgw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044415512598\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":189,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6e815216-44bf-469f-ad64-d6ed37ee238e',0,1734011115,1734011115,'csp-report','frontend.default',1734011114566456,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-ko5HLfcgHXLdxlFiLu4Q5woj0luoceTaRTpvlA-ahy831mtq9CFAlg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734011114566456\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":693,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('6ea696b5-9ec6-4df4-b422-41dcfdbbc284',0,1734047356,1734047356,'csp-report','frontend.default',1734047344750192,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-OpiHnwQ_Y5BW7gSP8TbxUT5pitTNIJLP43-p520bNpivx_vtF5ZAJQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047344750192\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('71578dbe-bb20-413f-b8ab-fcd2dbd27b83',0,1734052685,1734052685,'csp-report','frontend.default',1734052684857665,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hOeinX8_K92nWAL0jP-pmIf64Y92G_8bT55OF00NVuM5YzuSDxbiLw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052684857665\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('7170cf2f-e766-40aa-a0c6-4e33e6c3b54e',0,1734052720,1734052720,'csp-report','frontend.default',1734052720208292,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-G1xOUkHUk64s7zyHcryd83xp2riSCnJFX2Lwcw4V9mEk8ZFMhQFvtA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052720208292\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":350,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('72c1be5c-51e6-47ff-9bf1-5cd535e92c69',0,1734043975,1734043975,'csp-report','frontend.default',1734043975184409,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-5cWx2wPA3KyjOmHWFwuThmILE77vYQXqQr9VJ3ygr4iDcRIuD9xNsA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734043975184409\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('72c91014-bc57-4036-b9bb-9c8ce95dfc4e',0,1734040549,1734040549,'csp-report','frontend.default',1734040547959703,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-2RmdJbiTy5ShbLJLfSsCf863P6C-V-xWl9dcia5wK0Xx5P7dvSCxYw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734040547959703\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":156,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('73409a24-6bf6-4172-b571-97c870f4816c',0,1734040257,1734040257,'csp-report','frontend.default',1734040256791595,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-jMOuMUJ9TZMEvCPGmn7_PqbL1yO-w9GK1cKP80ANPsGLORv116JpBg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734040256791595\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('738a2a71-2f16-4e04-96a0-4e83b9ee2ddb',0,1734045080,1734045080,'csp-report','frontend.default',1734045080783496,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce--t3yr2i92Qoq7ER2COOxMrkwaBij92OuoJUzzU94UtFZu2PQnjZyyQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045080783496\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":189,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('73f0b24d-b01a-4d8c-bf94-ec93aa97e6ae',0,1734045446,1734045446,'csp-report','frontend.default',1734045446325522,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-k_grYU2bMf5VbYHsX7rROHOvcTXDDtfnAO8d9fMYgQA8vlu8htf1lA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045446325522\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7412d64f-84f6-4c99-a60f-fde89da8d405',0,1734023521,1734023521,'csp-report','frontend.default',1734023520795353,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-R7PW-BofnaYsPQ214jG-UG8pyyN8Th0__ezwfCkJWV0Et_YIFIjN2A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023520795353\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7459678b-01f2-41e6-a002-cc39f90bf02b',0,1733968908,1733968908,'csp-report','frontend.default',1733968908394661,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Jv963aawxU79Cbto6eguQTes3pThRdjB8FgbokH9N1ezmiJ8K61oBg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968908394661\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('748d62b2-f580-4236-b81f-71983946629b',0,1734218242,1734218242,'csp-report','frontend.default',1734218242232862,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-JJonMClfgs5nJ8Uqkgx1DDhRsMLXgX7RgupcFEvFlnsYvt0i-ePApQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734218242232862\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('74fdaf73-2914-48a7-955a-5b988e7d5145',0,1734043966,1734043966,'csp-report','frontend.default',1734043966150596,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-uL6jzrPBTTGgxgy4-SuNXDUC4b-FVEqasy89J01t7wvtR8ofUg6PBQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734043966150596\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('764d853d-c6db-4672-8322-71e42b75a873',0,1734041415,1734041415,'csp-report','frontend.default',1734041415759079,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-0WrhkVc1bTkvmdSUWaO8lVsMoZvQPkeTTm-BzLRhEIGwGb0lPNK7Aw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734041415759079\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('77d260b8-b004-4fda-91af-66bc423c3027',0,1734046856,1734046856,'csp-report','frontend.default',1734046855903974,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-zlb1LVZ4UmaQIRmgXA93tTbjQsUyhHAonDFwjqlo3vtMOe3yKgcEEA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046855903974\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('77f8ae1c-9c9a-49b0-afb0-a3f01b6efb44',0,1734024182,1734024182,'csp-report','frontend.default',1734024182281557,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Linux; Android 13; Pixel 7) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/116.0.0.0 Mobile Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-TeWY19bKPkH51MeAZdDtWT2Vg7oNLMHI4SmxsNwaR7u6QSy5qkV9gw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024182281557\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7833b8b0-82f7-427a-b216-cd7eff810fcd',0,1734046953,1734046953,'csp-report','frontend.default',1734046953464425,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-08ONNYY0_B9JTwdlDW0U-Jsd4UGEGSnLeD-StQirROJOYwHY42sfpw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046953464425\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":579,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7b35c1be-03e1-4942-986a-1a78b07790b1',0,1734051614,1734051614,'csp-report','frontend.default',1734051614725407,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-GGyJ8b42eS6KiYhXmwHWStVlXooglDAwraM-tlttkvoAm_GP_4b03g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051614725407\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":280,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7b4c3504-a0b3-4575-a4eb-03e510e1ceba',0,1734054287,1734054287,'csp-report','frontend.default',1734054286728413,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-HVrAz54gnv8p3X5Kiu1GfUh14EvXJmOIk4zBPalQMFJrnWElQ4z1Tg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054286728413\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7b6c3a1f-4469-476a-87de-57b7e5969882',0,1734053191,1734053191,'csp-report','frontend.default',1734053189952506,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-oRHXWQoskMZ_O2SVuJ8pjaxRrPF1qfA3KJkUwEkWH_qgtT0W7aMVVw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053189952506\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7c4d6164-e41d-471a-9280-090d96afdc7d',0,1734009958,1734009958,'csp-report','frontend.default',1734009958318474,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-lKQELPklixquvzi3wgHGjtbJmzWWfSxT2pj2BAci9-F1BGHRYP7RZg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734009958318474\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":128,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7cdc6d54-fc3f-46c1-bb20-afe6893a0732',0,1734047345,1734047345,'csp-report','frontend.default',1734047344750192,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-OpiHnwQ_Y5BW7gSP8TbxUT5pitTNIJLP43-p520bNpivx_vtF5ZAJQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047344750192\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":584,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7f28a7be-3e10-4d4b-8b76-b62a37d29689',0,1733968649,1733968649,'csp-report','frontend.default',1733968647609166,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-LZXj00v6k6Dio4fLBDEvRz13fKS0k_aZHaJ2MYGU-r16PGXmTWdSPA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968647609166\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":178,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7f869300-cdda-47ad-a8c9-64910b4948ac',0,1734048332,1734048332,'csp-report','frontend.default',1734048332454078,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-TLrFHi_0bDyixMTbi4PEixtQYHhmfIh2yaSlY4_1jdVRchenk24o2w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734048332454078\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7f9ddab6-9364-453d-bfc1-3c3d475f1654',0,1734022052,1734022052,'csp-report','frontend.default',1734022052171580,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-vQC5fn-ouEVUtMHXMMeAk7se3R2iy96VeX2duJlpgDgxGDL0q1q1Aw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734022052171580\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":137,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('7fe9b921-0d1c-4cc4-938a-feb148c34a23',0,1734023142,1734023142,'csp-report','frontend.default',1734023142329236,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tOIk2HmtmaSFS0CenWU5iwS9YbzbddS0KbgkE0Gn1slI1E7DvbYa5w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023142329236\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":142,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('80dbc8ce-9cb5-4592-b553-d43353449cec',0,1734046846,1734046846,'csp-report','frontend.default',1734046846529275,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Vlu2l7W0FPCp66OUqVZy3nV93A56zQv4ZK3oPowNYcn4c8bBKWevnA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046846529275\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('8169f803-7d4b-41f1-bbaa-6cf4a8373e09',0,1734024210,1734024210,'csp-report','frontend.default',1734024209597634,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-EGq7peKUAz5_3i83Vq9QzggYhGdhQg7jJ8e7H-kYnWhBLmMudaSQyA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024209597634\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":136,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('818785a1-44d0-4b77-83bf-72fec72541e4',0,1734010450,1734010450,'csp-report','frontend.default',1734010449432598,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-8zfCT8gxniNfXNXHA1Z6LnfONOz5Pb0M7GQ6fochzNAWmpGo44JU_w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010449432598\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('82894e47-39fc-4710-9e73-b00969aac857',0,1733968498,1733968498,'csp-report','frontend.default',1733968498545582,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-zDwdq1bb6Iz8vniM9aUQJiTT6VSeKHEPCmCWWd-0cdGf4-N3WyMS2w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968498545582\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":114,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('832eb02b-a620-4a95-8eee-7e43fc6343c6',0,1734020313,1734020313,'csp-report','frontend.default',1734020312483623,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-ZP75biSN-lsEE5iiiV4b6iF7LDbTqEX51e7dW7EWRf0ZGK9RkIz-tw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020312483623\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('83b40df8-3ec5-43e0-94d7-43167af15606',0,1734021289,1734021289,'csp-report','frontend.default',1734021276877683,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-eqayXNOcIjDthuSqtmDFdzRPr82_OC6XS3tES1FgFL51EvtoLOMj5A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734021276877683\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('85a59deb-d76a-44c1-9a56-690542f0be39',0,1734020474,1734020474,'csp-report','frontend.default',1734020474041699,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-LO3-gyupf3K7iby1NWZrXRJ8TVNOFCN7aL3dtd84yaWECH7HOCy6oA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020474041699\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('869a259e-d8d3-4c2c-a586-3e07360b4b44',0,1734051347,1734051347,'csp-report','frontend.default',1734051347507505,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-XCB5Zm6DX5CU964ZrTJ8Fuu-khd-8v5pkXUzxQwvLWa4XGtkBYE8rQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051347507505\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":348,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('86a63541-9827-45e3-a679-f02535bb2e5f',0,1734020484,1734020484,'csp-report','frontend.default',1734020480376102,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-AgS0hlkT0jHr_TuZ3ANia4ZTiU8H_CCZxK_vdrf82gm6hGPFo1zMQw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020480376102\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":4867,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('87573616-fa89-4193-891d-c24f003bb6b1',0,1734047133,1734047133,'csp-report','frontend.default',1734047132809340,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-btHFh4AMOpAZHEHtAcEfE9kA8VDHehIdxd9ljEJiPnZakiGaPReoIg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047132809340\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('88449ad0-7845-4cfa-84ee-f4490f719ef6',0,1734043690,1734043690,'csp-report','frontend.default',1734043690631206,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-v5azO7wzfLpMnNQai6PIFOtiUZTZksppn_kyYAZOe4J2X7FSPZclwA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734043690631206\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('889f055b-c0cf-4ec3-aee5-0da04731fe04',0,1734024960,1734024960,'csp-report','frontend.default',1734024960441129,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1Gz66bgI8y6JpX9q-HtUfko8pnWedofxggaECwRCtezl1XuB_rOOKQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024960441129\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('89ad57ff-27b1-484c-8b66-a08529c989ba',0,1733968916,1733968916,'csp-report','frontend.default',1733968916551805,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-YAtD9bCvWmZ_t82ubReq7a3xA6IlxFb_RO__jPGjHHL5tkHjhh7IMg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968916551805\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('8b2fa8a1-e302-439d-9ff9-2f760fc8298c',0,1734053064,1734053064,'csp-report','frontend.default',1734053064496790,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-amdwccaU_-5q72nXXmiRUJKSuofuUQTcBH8eYE4GrqtdUqABp8PE7w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053064496790\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('8b523260-fb76-45dd-bb64-1feeb0f61616',0,1734020474,1734020474,'csp-report','frontend.default',1734020474041699,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-LO3-gyupf3K7iby1NWZrXRJ8TVNOFCN7aL3dtd84yaWECH7HOCy6oA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020474041699\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('8c6a9785-e957-4ca9-898d-a7152bebd9b1',0,1734010764,1734010764,'csp-report','frontend.default',1734010764127742,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Z4WRLJFY6UxunH8R8K0idGordJrcUJIjMGqicWr0KqJhmKca5aJadA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010764127742\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('8ca2e1c1-20b4-45a9-a4c1-87e18e5b9c7b',0,1734010618,1734010618,'csp-report','frontend.default',1734010618138661,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-W79aBmDQGUTJti2kLosrebBt9VRY7Wi8g2GTfZDwr5VJN8sF7y4Hvw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010618138661\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('8d822810-21f5-4c8f-bcc8-277151c8c19a',0,1734107988,1734107988,'csp-report','frontend.default',1734107988407399,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"font-src\",\"effective-directive\":\"font-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-8Z5ZfqM8V1AEYYfOKiFzNaqknwh4RACI7_xt9jln7orWZSb3K16hdw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734107988407399\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":382,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','c4381741aed62ecdbd1a21b4b241125f078dcd3f'),
('8da05316-7477-457f-80f4-620b896758b9',0,1734044124,1734044124,'csp-report','frontend.default',1734044123917179,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-rteHz3G81PBsQwODcUZ_egPXHdVgEUqi30jK46ZgmDIN4qpZs4nPtg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044123917179\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('8df39d17-13ab-46ff-b9b9-d042c67c7487',0,1734011115,1734011115,'csp-report','frontend.default',1734011114566456,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-ko5HLfcgHXLdxlFiLu4Q5woj0luoceTaRTpvlA-ahy831mtq9CFAlg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734011114566456\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":693,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('8e36a687-37b4-4cf0-a9a6-149aa3cfc399',0,1734044776,1734044776,'csp-report','frontend.default',1734044776253679,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tAjnDYJxk8eTNerRwy4M8Xcy2r_dtJTWc5xOHJSJz_TkVUaYDfxf_g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044776253679\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":189,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('8ed14bb8-4681-4640-a1fd-d4ec9ca33fce',0,1734052086,1734052086,'csp-report','frontend.default',1734052086677215,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-ELrSipVcH_8hTjwtisj3QBkHDuePsFcUpa26VHVHM34OEBla9xYkdA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052086677215\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('90499b41-7ba8-4f7b-9190-564716a614e2',0,1734105044,1734105044,'csp-report','frontend.default',1734105043896645,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1WId8gHrUWUOMLBxrNtlONxyrR9nbfOJq8oezp0Ottr4Qdoehdt5tQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734105043896645\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":380,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('90a39d85-701c-42f5-9fa5-3c26ac5d33bf',0,1734051366,1734051366,'csp-report','frontend.default',1734051365866988,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-VYqILcaP9oszRcmu5iJxpJTfzGPsrcBHxkKO6IUM4hLJDc_kMTfV3g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051365866988\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('92b3a51c-11e5-4247-b693-d8d6c33d6435',0,1734010764,1734010764,'csp-report','frontend.default',1734010764127742,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Z4WRLJFY6UxunH8R8K0idGordJrcUJIjMGqicWr0KqJhmKca5aJadA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010764127742\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('944c9989-f8b3-4b65-b041-7d71675a3a07',0,1734045121,1734045121,'csp-report','frontend.default',1734045089545801,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Nxfi5byBvNqYhC_FMTqH5TNgWUl0DNV8K1cCM6G_ziBxU1SNWRAToQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045089545801\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('94743478-67c5-4531-b9ab-14a84e45e193',0,1734038761,1734038761,'csp-report','frontend.default',1734038761330161,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-2hdeRig9nn5AX_QklCuGYaM-nbr9ZNkSOzpGKUk1OV71IsMkZFaPxg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734038761330161\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9665915c-eee8-4f24-be4a-fc37d3d98fbc',0,1734053900,1734053900,'csp-report','frontend.default',1734053899745842,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-x-4n2baoxO65TJss3KfrZxqt0HAViXFk9aUsDTiOStt99Y5jrJ6DEA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053899745842\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('96722987-cebe-4d37-8d29-ae9f07819c09',0,1733968924,1733968924,'csp-report','frontend.default',1733968923804232,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-NNFbb7RcYFQa1D5zdmUMP6bQm70CIcPgxR7Tu33PhRQUTjCBnY0Ohg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968923804232\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('98408696-ec52-4dfb-bc6b-81f40ff4f2cd',0,1734053828,1734053828,'csp-report','frontend.default',1734053828226318,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-fBnv7WFaC8rYWimmtw3x96_3yf8lRvpT0upo7S5RABWtt7gdJM9QeA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053828226318\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('98e0701a-8ffd-46c3-8897-94fccb905d6e',0,1734009589,1734009589,'csp-report','frontend.default',1734009589540641,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-yPuqFUG3O1-kP6YYpZdOFVf-PiLWzt4ddYxocPT9Dxe1evYhVgri2A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734009589540641\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9904c21d-3795-4ecf-bcfb-205ef86cfc02',0,1734046764,1734046764,'csp-report','frontend.default',1734046763847893,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-4E_jX2Qbs_OHc3tCppdhLsUJtmbj2ynM8Bfod5h88665fklJrmNAPA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046763847893\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('992abacc-d13c-4968-9465-22efbb5e4808',0,1734021289,1734021289,'csp-report','frontend.default',1734021276877683,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-eqayXNOcIjDthuSqtmDFdzRPr82_OC6XS3tES1FgFL51EvtoLOMj5A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734021276877683\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('99de549b-531f-4995-9808-f982fb8bc879',0,1734104912,1734104912,'csp-report','frontend.default',1734104912240296,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tHWN27wbBvCACimuL5an3X4ZDdA_Ij1Dt_tMsCasB5Jpgf1C3PcXog\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734104912240296\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":380,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9a1ce615-0b18-42e1-93a1-14f134f2c9b6',0,1734052606,1734052606,'csp-report','frontend.default',1734052606356164,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-MDFPQofEQESVt1eAONnUp1a4nY7aF4NWy6YlDZjhpxzEwcaoREzphw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052606356164\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9a2de83c-8f51-4a02-a70c-89fd76ad9f78',0,1734105412,1734105412,'csp-report','frontend.default',1734105412735753,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-s8LqmFYlgBU2ka-A0lLSeEKeLY-zbKLjQJTEzfbetBFpwzyua4Escw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734105412735753\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":381,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9b7a9c73-39ed-4e51-bc95-b8f2860057a5',0,1734036098,1734036098,'csp-report','frontend.default',1734036098216638,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-65SaVt2HgrBxZsHGULF-9efX2df8zYO8_z2feKIveRqdbN58atulKg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734036098216638\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":134,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9b859bfd-f5e5-40f9-8431-f6d58013a04f',0,1734107988,1734107988,'csp-report','frontend.default',1734107988407399,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"font-src\",\"effective-directive\":\"font-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-8Z5ZfqM8V1AEYYfOKiFzNaqknwh4RACI7_xt9jln7orWZSb3K16hdw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734107988407399\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":382,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','c4381741aed62ecdbd1a21b4b241125f078dcd3f'),
('9bda550a-1e8c-4d7a-b57d-5992c995f46c',0,1734054580,1734054580,'csp-report','frontend.default',1734054579878348,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-69s05GTrUqh0bMkw5qx2db9tm3ZkBGmBmFL7yfLf7h8aTE7QHSaRkg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054579878348\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9da0eb40-6cd6-4a10-99ec-57b9ac7ddcd5',0,1733968144,1733968144,'csp-report','frontend.default',1733968143918271,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce--JEaBsOaM_ddFyeoC0TzrzcLF5VRRLzeGV9EsBKCxYImGDbrNHSqJw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968143918271\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":114,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9da40544-ef79-4533-9b5c-3cc662e4adc6',0,1734020322,1734020322,'csp-report','frontend.default',1734020317803278,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-D9V1dKbIBJI_vgBkEo01gQfiAzgENbXdtxsYnz33D-x6CECQgThAKQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020317803278\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":4266,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9df68c1e-07e4-4940-a9e6-5ea52c9d2dde',0,1734010618,1734010618,'csp-report','frontend.default',1734010618138661,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-W79aBmDQGUTJti2kLosrebBt9VRY7Wi8g2GTfZDwr5VJN8sF7y4Hvw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010618138661\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9e7e3e89-afb6-4ae0-8cb6-deb85d7d16c7',0,1734046786,1734046786,'csp-report','frontend.default',1734046784610403,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-PfkjdQbK2b0aV-GMw4mMYS9lQKXgjuVgH4rtLf9QMn_Ei7W19pG-WA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046784610403\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9e8cdea6-d26d-4037-9cc2-ae7b4e8e2b23',0,1734052685,1734052685,'csp-report','frontend.default',1734052684857665,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hOeinX8_K92nWAL0jP-pmIf64Y92G_8bT55OF00NVuM5YzuSDxbiLw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052684857665\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":382,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9ec18e1c-cda5-4db7-88ac-5d9facd61e8c',0,1734010376,1734010376,'csp-report','frontend.default',1734010376409794,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hprv9IAPhUYHZv_iJtybHHDcnhuZgqpYy-WhQg4b8KmF5Pr4P3wZeg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010376409794\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('9ee6c6c0-9940-4057-a293-ea5ad822c7be',0,1734053008,1734053008,'csp-report','frontend.default',1734053007973333,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-98winHp0ICkTzle6nIcniplfiC9zQyz3f33UKZhPyEoTjAOaxwdxlw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053007973333\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9f1c9ee5-2542-494d-87a5-05d020528857',0,1734022857,1734022857,'csp-report','frontend.default',1734022857271154,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-S4YCeWfZb_0oh5GSlsSgI624cFwabgZh-OwMHt_g6LbCoTHjHdhy3Q\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734022857271154\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":141,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9f283fd6-da01-4c64-a3e2-958ff6e32a90',0,1734048300,1734048300,'csp-report','frontend.default',1734048299803222,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-7OMvCSfABlqcGtkg0VdftgFAc1GLqdgOTbaped4VYFlB_KGE4UBTqg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734048299803222\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('9f8a5b21-14d3-4ea7-9f33-517a2f5ebebc',0,1734009418,1734009418,'csp-report','frontend.default',1734009417923233,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-LwZ3Tx6gu4wKRA_IumQN6AuIC6huOWfE751kbzv_lTEuA1h29ADleA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734009417923233\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('a00fe02b-c05e-4073-a726-71c65bc185dc',0,1734022588,1734022588,'csp-report','frontend.default',1734022588416763,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hXMrsvNn00MbKWMsimEyUfDkUgkiOPIDUrQlc0FhSlXc-xWd1ViTAg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734022588416763\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('a36988b4-e6b4-4427-ace7-1ed326e29fa1',0,1734021650,1734021650,'csp-report','frontend.default',1734021649927767,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-xzHAzOiPGKl5Pt7nSRQcpAvMjkZkdmXhQzcZ48sWWWPARq1G6mBS5w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734021649927767\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('a3d20b60-1c55-413c-99a2-f9fea8deaf7d',0,1734023521,1734023521,'csp-report','frontend.default',1734023520795353,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-R7PW-BofnaYsPQ214jG-UG8pyyN8Th0__ezwfCkJWV0Et_YIFIjN2A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023520795353\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('a480cc12-e6a2-45bf-a387-380b6cc50ff3',0,1734052954,1734052954,'csp-report','frontend.default',1734052954013498,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-IbubF5Twdt94-qwZMhuL9-DajSee7_UXvrj9aS4BqCSltVa553-VxA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052954013498\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('a4b60447-3ff8-4f1f-b948-eb3c4d1534a9',0,1734021959,1734021959,'csp-report','frontend.default',1734021958869602,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-DbmrE5St5mRkS-sIa-0TqChuEiN20MsVjxDh4c9AGLZXQY5R_2L-bw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734021958869602\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('a85b8c39-f18b-4241-9cb1-44c060132c41',0,1734052093,1734052093,'csp-report','frontend.default',1734052093214327,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-qmH79_gmBlyq6Dt0gQy9DpnX6WOxHB4kgzEqCyPtseXBZ9glT6wadw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052093214327\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":358,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('abe11e77-dcf7-4b1a-8611-bb8f3316741c',0,1733968942,1733968942,'csp-report','frontend.default',1733968942203277,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-WOljKtmFlPSRgJtdSIT03izTidGR-qnd7WLE_5_KG84C3uxahywcVQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968942203277\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('abf39726-15cb-400c-bfe6-2771add94047',0,1734010076,1734010076,'csp-report','frontend.default',1734010075651269,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-qnXtxRLiLvptipyqcwu4EGuWV7ia8hQgpe73uQnNHSQzpTspuHmBug\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010075651269\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('abfab978-23c9-4101-8629-07c5928fab71',0,1734043821,1734043821,'csp-report','frontend.default',1734043821074646,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-sx4TT5DQW13ZmuT6WaORSyr0dLeq9X2ip0YjnlqtLjpDa_6nGvaibw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734043821074646\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ac94d1e7-7905-4ebe-a15c-9b59be692a7b',0,1734024960,1734024960,'csp-report','frontend.default',1734024960441129,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1Gz66bgI8y6JpX9q-HtUfko8pnWedofxggaECwRCtezl1XuB_rOOKQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024960441129\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ad0709d9-5340-4ed8-beb5-e9213abc30d5',0,1734025412,1734025412,'csp-report','frontend.default',1734025412402499,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-rwGN57ArFr5CRWy8YN8XCxac_10YqPw9V9VpYEX9m5287DZ5zznJmA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734025412402499\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ad3a7fec-63b0-4840-8037-6f5d67ced1f2',0,1734045446,1734045446,'csp-report','frontend.default',1734045446325522,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-k_grYU2bMf5VbYHsX7rROHOvcTXDDtfnAO8d9fMYgQA8vlu8htf1lA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045446325522\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ad9ed455-bcc3-48c5-8163-c5737af61b76',0,1734023828,1734023828,'csp-report','frontend.default',1734023823742722,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1g5W9zB5mxKDQUxqrhbi-T8DXLjfGTi3IPVx9LTbuMalGVpq9MJy3A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023823742722\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('aeafb04d-40aa-4cc5-8f3b-3c9d0e689038',0,1733968894,1733968894,'csp-report','frontend.default',1733968894290262,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-kqZwKXwysBlAq9p4Gb1SB2C6W3ydXiR76K_TaKQlnmB-y26yY-28GQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968894290262\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('aeb87591-f4cf-4368-8ffa-a40c7679c077',0,1734052089,1734052089,'csp-report','frontend.default',1734052089568257,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6p87LnHV2I2ufMl6iHsoAo9Ybc4R59Tt0JLUtSs7mQO4-68xVMGhtg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052089568257\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":358,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('afa1f0d7-2a42-4c34-9fa1-ac8f5f19a91f',0,1734044434,1734044434,'csp-report','frontend.default',1734044434011990,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-KC2QuD5M4JDpZyEbS_Zgez5WpWU7ustjemcEt6I_CWo0bL30mRoQ2Q\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044434011990\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b10b47f4-f60d-472f-8bf4-2b4e07ea7232',0,1734044239,1734044239,'csp-report','frontend.default',1734044239693393,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1ULO-lFY1jbvDst8Ej2VJu7jHUzpzT284gZitQDGL-AlLPetG3iXDw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044239693393\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b167fb69-4791-4967-a3e0-7d13c5409a78',0,1734010450,1734010450,'csp-report','frontend.default',1734010449432598,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-8zfCT8gxniNfXNXHA1Z6LnfONOz5Pb0M7GQ6fochzNAWmpGo44JU_w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010449432598\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":167,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b1b10fda-47c2-4cd8-a061-afd649405347',0,1734045397,1734045397,'csp-report','frontend.default',1734045397114646,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6vkMVAIGlHmskUhVSM5kXvN89hksj_bpEAAFrR-ysb108Y9dyZEX8w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045397114646\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b28c07b7-3ddb-404f-b9d0-428179a29249',0,1733968925,1733968925,'csp-report','frontend.default',1733968925517601,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-ee-indsGH68tWnTZQ8RQl6s1WmmEiiJ2LQ7HreUcyFpHDNp97JLaGA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968925517601\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b2ec3825-e810-4cfc-ae54-670ae42c99df',0,1734023142,1734023142,'csp-report','frontend.default',1734023142329236,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tOIk2HmtmaSFS0CenWU5iwS9YbzbddS0KbgkE0Gn1slI1E7DvbYa5w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023142329236\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":142,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b310bdfd-12d4-4ce7-9acd-12ca15cfefaa',0,1734010376,1734010376,'csp-report','frontend.default',1734010376409794,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hprv9IAPhUYHZv_iJtybHHDcnhuZgqpYy-WhQg4b8KmF5Pr4P3wZeg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010376409794\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b32ed604-84e3-4274-b498-48694ab2695a',0,1734038761,1734038761,'csp-report','frontend.default',1734038761330161,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-2hdeRig9nn5AX_QklCuGYaM-nbr9ZNkSOzpGKUk1OV71IsMkZFaPxg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734038761330161\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b35669dd-6e49-4cf3-b937-25f40e301fc1',0,1734012294,1734012294,'csp-report','frontend.default',1734012293769785,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-cqoCtP72r5YJv-V6fNR3HL3Pnfaf2-y80rTaENnEpNcjeMl5WYYdJA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734012293769785\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b4022dcc-0be0-4862-89f0-65eb06f7a52c',0,1734020592,1734020592,'csp-report','frontend.default',1734020591917196,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-nHCdWe2w8tti_2Ll7FkNK7S_j4Itjfqx3PYqdY0yVTzo4fGH7SkW0g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020591917196\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b4387c45-e271-479e-a912-16106a7469d1',0,1734051859,1734051859,'csp-report','frontend.default',1734051859225081,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-rIz4dCfLpCWa1Xe-GtrNJ2e_BZw6nnGJtZ7jr8-4Pgk80ZnS-SJUZQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051859225081\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":372,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b4c49b45-ed8c-4998-bfb6-ccff57d9c9f5',0,1734051142,1734051142,'csp-report','frontend.default',1734051142446211,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6v4EbKl00qmUvOkeNxMi3inpePIM5JZFMRDeu9bIdSFUflw5P6EfuQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051142446211\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b4df5278-b2ae-49d2-bccb-105d48bb8f7a',0,1734021650,1734021650,'csp-report','frontend.default',1734021649927767,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-xzHAzOiPGKl5Pt7nSRQcpAvMjkZkdmXhQzcZ48sWWWPARq1G6mBS5w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734021649927767\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b6b3b71c-06c4-4dad-be65-3b89b8030bcc',0,1734053875,1734053875,'csp-report','frontend.default',1734053874574633,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-l20NnZdIY6oLnmpEJmtOA4fqfYW6hGxT50hanx4NWhNeXoFU5dEFvg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053874574633\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b79adbfa-d2c1-464b-8911-ceffc8a3ec82',0,1734043853,1734043853,'csp-report','frontend.default',1734043853205027,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-8_lBvvTWKSvErtxp8MxatQlGJMAk2Nok_hK-sm2hwHysC3zfiprgOg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734043853205027\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b7f9b1aa-6545-4ea5-a947-f7779684ded8',0,1734104913,1734104913,'csp-report','frontend.default',1734104913658495,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-911uiGQ9roviVrbRrcCfXOZOvic1kVrcxANqw6iuDLCX5AcVc6bcXw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734104913658495\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":380,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b8ac8703-76b6-4d8b-86ca-d214a6c1cda5',0,1734022052,1734022052,'csp-report','frontend.default',1734022052171580,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-vQC5fn-ouEVUtMHXMMeAk7se3R2iy96VeX2duJlpgDgxGDL0q1q1Aw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734022052171580\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":137,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('b9956b71-0717-43c1-9f1d-09ec4430c2d9',0,1734044124,1734044124,'csp-report','frontend.default',1734044123917179,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-rteHz3G81PBsQwODcUZ_egPXHdVgEUqi30jK46ZgmDIN4qpZs4nPtg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044123917179\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('bac22004-32ae-4132-abad-e183859fd361',0,1734104738,1734104738,'csp-report','frontend.default',1734104738523545,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-l_OP74vRZ9FdI2obt4Ar-YkMDKk2j9pIGxdhKEue072kyxKLntY4sQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734104738523545\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":380,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('bad50430-8851-4b3e-b0e0-33cb482788df',0,1734051865,1734051865,'csp-report','frontend.default',1734051865364439,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-MHQsGlAwCZ_M0buZf5aTHbl2IRfcFtVsFpr7pMjmfn1DjTXghK-J7w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051865364439\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":358,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('bd12b609-37bb-489a-a896-546d70190fb2',0,1734051356,1734051356,'csp-report','frontend.default',1734051356546822,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-2iowV3SqwS22qmAIZGHtzY7eiPxtHWgXNXMV3nw_hpqD8EVsReOftg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051356546822\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":348,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('be0b5689-afbb-4ce0-8df0-9be5177f8569',0,1734011086,1734011086,'csp-report','frontend.default',1734011086348300,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Z1hIPSdVAgJEdMKdZRGTkq3edHLbW6akBtfaflzgfpFPqPpyWSka1A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734011086348300\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('bec774e9-aaf1-4903-80d8-f7d749192b1c',0,1734010450,1734010450,'csp-report','frontend.default',1734010449432598,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-8zfCT8gxniNfXNXHA1Z6LnfONOz5Pb0M7GQ6fochzNAWmpGo44JU_w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010449432598\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('bf2cb5b4-bebb-4656-8457-fb7e97198051',0,1734046953,1734046953,'csp-report','frontend.default',1734046953464425,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-08ONNYY0_B9JTwdlDW0U-Jsd4UGEGSnLeD-StQirROJOYwHY42sfpw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046953464425\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":579,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('bf452067-db65-49e2-bf40-c70d94d3978a',0,1734045077,1734045077,'csp-report','frontend.default',1734045076935713,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-00DEf_chEJ8cCZfk_QbthprYSw2407on_m2OYgSoujT6c5y7PYJjXw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045076935713\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('bfb1ed85-6050-40e9-82f2-efae1440fbca',0,1734022447,1734022447,'csp-report','frontend.default',1734022447291567,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-b50m9NYSl4GFdUvLxIAFEm_o3hDQ6bdUvaOgruu8NUTivlKrpBM9Dg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734022447291567\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":143,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c0283b58-698a-4f7d-a088-a764ab4602e0',0,1734024185,1734024185,'csp-report','frontend.default',1734024185123744,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Linux; Android 13; Pixel 7) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/116.0.0.0 Mobile Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-5_QX9x9GvkYIcYtiUGNddRm48Sw1sJewNn3tYihJEcOLkXDNuM5cCA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024185123744\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c10595e1-acbf-4012-8b9e-00f9c2ec251b',0,1734046843,1734046843,'csp-report','frontend.default',1734046843586303,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-7jkN7OwoPyAoafdJFhrrsKAXcOIl3IqtFa3C52jugDWcEH86slMwvw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046843586303\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c3166ec7-7464-454f-a5e2-44a28b6d0c59',0,1734010659,1734010659,'csp-report','frontend.default',1734010618138661,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-W79aBmDQGUTJti2kLosrebBt9VRY7Wi8g2GTfZDwr5VJN8sF7y4Hvw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010618138661\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c35bb1c9-e531-4f75-b742-5b9d15c3d7ec',0,1734009957,1734009957,'csp-report','frontend.default',1734009956732825,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-lfcOxPNTGM7x286k3ZJKg8xMTtrbcu52FiJAdl3uA76wy5VgooRSQA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734009956732825\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c36b6ce5-2e9b-4e94-b430-d4beb108a6f5',0,1734105292,1734105292,'csp-report','frontend.default',1734105291889939,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-_uxNF58QTJQi4nUL74FPfH-tpMx5XmLuRSycRFo4VGgzIp3m6gFERw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734105291889939\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":381,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c4318665-51db-4f8f-ba7e-d81a8732808b',0,1734046786,1734046786,'csp-report','frontend.default',1734046784610403,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-PfkjdQbK2b0aV-GMw4mMYS9lQKXgjuVgH4rtLf9QMn_Ei7W19pG-WA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046784610403\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c433fd27-f40e-4b5c-8335-bf0cac1f933d',0,1733968498,1733968498,'csp-report','frontend.default',1733968498545582,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-zDwdq1bb6Iz8vniM9aUQJiTT6VSeKHEPCmCWWd-0cdGf4-N3WyMS2w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968498545582\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":114,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c4c63894-d165-4e21-abce-2a9b6ff5ebd2',0,1734024222,1734024222,'csp-report','frontend.default',1734024221950716,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hU4JXythTvk5isxtGzZa1enPYvXF054sfuh4vyn-bs8bulicbj0QXA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734024221950716\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c4ce5ab5-6468-46dd-afb0-aa9f41a969ee',0,1734021897,1734021897,'csp-report','frontend.default',1734021896745234,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Q3tBxTgi-dXr3IDtNY5VOFaYlsoITHrVWqZiYlsQVundOLYyFeKrEQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734021896745234\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c51bf04c-5387-465c-b88e-020f52ee41eb',0,1734044415,1734044415,'csp-report','frontend.default',1734044415512598,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tCih3nCiOClIJYx-nrn4f-_QX4sUon0bTkJZUT10Y0kpTSxXE15zgw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044415512598\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('c53714d7-658d-4e9a-a9d5-2fa380db287c',0,1734039729,1734039729,'csp-report','frontend.default',1734039728945538,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6npB4m4uvvB-vYtP0P_ejTVNMlg8et1OtvstTb1_wncVWAL-HJwcKw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734039728945538\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c5a84199-4ffc-4f60-ba8f-b7be15341c67',0,1734045397,1734045397,'csp-report','frontend.default',1734045397114646,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6vkMVAIGlHmskUhVSM5kXvN89hksj_bpEAAFrR-ysb108Y9dyZEX8w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045397114646\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c6067973-110e-4371-b83c-4865446d848c',0,1734053184,1734053184,'csp-report','frontend.default',1734053184586749,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-i-ugeX0ApEGoXZ7QKPGitFpi-5LaNda2qpidDJNORLQkK3CFV0vuJA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053184586749\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c79b6218-a46a-4424-b4c3-f7265db1a102',0,1733968919,1733968919,'csp-report','frontend.default',1733968919157765,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Lxjk9ZD9Lmd8lCC2J-rE9hJGsvHeqrLuB__2hmuQehza5Kfe1GifMw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968919157765\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c7e4b78e-262c-4959-921d-e100d6dea902',0,1734051636,1734051636,'csp-report','frontend.default',1734051636545415,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-RMYkejoXRvcde_aXQpT5cuCr6tJ346Yk36ObvCrp5zX1nY5iygSXtw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051636545415\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":363,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c83c3e09-2c52-4d54-b6c8-854e51a70b9f',0,1734040868,1734040868,'csp-report','frontend.default',1734040868693852,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-brwct9H5zVzOTsDw3zqkTUjV_dbxLgUHeXZUrw72JVJ_9JsvRiWoHA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734040868693852\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":156,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('c937ce2a-fe32-436b-aa94-44fe2b5176ab',0,1734047344,1734047344,'csp-report','frontend.default',1734047344750192,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-OpiHnwQ_Y5BW7gSP8TbxUT5pitTNIJLP43-p520bNpivx_vtF5ZAJQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047344750192\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('c97179cc-ddd4-41a1-bc08-7c32115b1975',0,1734048300,1734048300,'csp-report','frontend.default',1734048299803222,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-7OMvCSfABlqcGtkg0VdftgFAc1GLqdgOTbaped4VYFlB_KGE4UBTqg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734048299803222\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('caf84144-f722-43b0-aeb9-09324aca5d71',0,1734010591,1734010591,'csp-report','frontend.default',1734010590832754,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-MWh1iTFeBfUy_gFg4sE2nQlSsvE8VjRTTLywTrlBCk_FFZ-wN6m2GQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010590832754\",\"disposition\":\"enforce\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('cc1b10df-053e-465e-bb5b-211fb185fc08',0,1734050902,1734050902,'csp-report','frontend.default',1734050902622328,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-goZCc2zspTV5Lmq9IRb8fGDtgv8XNCmssVyAGARvYJ1gswbVDVYlEA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734050902622328\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":351,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('cd0a8a0b-843c-440e-8ab6-7cd4a0920d43',0,1734053064,1734053064,'csp-report','frontend.default',1734053064496790,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-amdwccaU_-5q72nXXmiRUJKSuofuUQTcBH8eYE4GrqtdUqABp8PE7w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053064496790\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ce933908-64e6-42ec-939f-35301a656355',0,1734010164,1734010164,'csp-report','frontend.default',1734010164443708,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-DQOcTSHs2Scks8D0h1UhenmefekpGTbZzuVLh65kVeop9pcyOiAVNA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010164443708\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":128,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ce993d09-11e9-435d-acde-af1828200b52',0,1734046856,1734046856,'csp-report','frontend.default',1734046855903974,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-zlb1LVZ4UmaQIRmgXA93tTbjQsUyhHAonDFwjqlo3vtMOe3yKgcEEA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046855903974\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('cf0f1eec-dfbb-4489-b579-7132340f6680',0,1733968894,1733968894,'csp-report','frontend.default',1733968894290262,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-kqZwKXwysBlAq9p4Gb1SB2C6W3ydXiR76K_TaKQlnmB-y26yY-28GQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968894290262\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d0139955-c3ab-4fc0-b94e-6bc33c278fe6',0,1734010076,1734010076,'csp-report','frontend.default',1734010075651269,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-qnXtxRLiLvptipyqcwu4EGuWV7ia8hQgpe73uQnNHSQzpTspuHmBug\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010075651269\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d03806bf-36b0-4af7-8fa2-361e7b08701d',0,1734051366,1734051366,'csp-report','frontend.default',1734051365866988,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-VYqILcaP9oszRcmu5iJxpJTfzGPsrcBHxkKO6IUM4hLJDc_kMTfV3g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051365866988\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d0606ee5-f834-4487-a1d6-2157174827ec',0,1734041415,1734041415,'csp-report','frontend.default',1734041415759079,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-0WrhkVc1bTkvmdSUWaO8lVsMoZvQPkeTTm-BzLRhEIGwGb0lPNK7Aw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734041415759079\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d0a62f44-e710-4832-918c-a4b5af9838fb',0,1734010247,1734010247,'csp-report','frontend.default',1734010246476321,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1xtRuPBEX1pGF5786otN29q7DjDQExZCZvftbg4Co_nSS0jJ2uLLBQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010246476321\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":128,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d128b64d-f067-4c9c-8797-5a5f60203392',0,1734050664,1734050664,'csp-report','frontend.default',1734050664319103,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-JyHq7b_5kKZuiFdcJsE3gzmnJRSXpbf-TygeSsB20b_o_b8kqAzaVw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734050664319103\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d3205f47-cff6-4ad6-8564-9fe6e41d3a25',0,1734053235,1734053235,'csp-report','frontend.default',1734053235017114,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-pxQp5j7LwDlVCFAaBTc9eDB_j9fDLs3y5q3N6qfzbBo136YxpulCDg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053235017114\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d41c9b23-1edd-4203-a393-61e253a60820',0,1734050980,1734050980,'csp-report','frontend.default',1734050980512641,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-GPAbtRu_vn1NJP_LFYMlPrcj6frHLAi81kobWESIWK1fRKdpn32iVA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734050980512641\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":351,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d46a8d9c-91b8-4f4d-a873-15d9f47c8fb5',0,1734010659,1734010659,'csp-report','frontend.default',1734010618138661,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-W79aBmDQGUTJti2kLosrebBt9VRY7Wi8g2GTfZDwr5VJN8sF7y4Hvw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010618138661\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d664a63c-11a9-44fb-b81c-2f47e8bdf140',0,1734022857,1734022857,'csp-report','frontend.default',1734022857271154,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-S4YCeWfZb_0oh5GSlsSgI624cFwabgZh-OwMHt_g6LbCoTHjHdhy3Q\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734022857271154\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":141,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d6b7f75a-8eed-47cc-8673-97274a115428',0,1734040537,1734040537,'csp-report','frontend.default',1734040537049193,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-xg2Ac_SpYo2CxAsCpXCdOVZ5QYsvOBtuPfEwYbFKAmckQ7EWRonPIQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734040537049193\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d72e579a-6cd1-4c03-9f21-1f9492f17d6c',0,1733968908,1733968908,'csp-report','frontend.default',1733968908394661,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Jv963aawxU79Cbto6eguQTes3pThRdjB8FgbokH9N1ezmiJ8K61oBg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968908394661\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d77d959c-699d-46ff-938e-91f4a45886a0',0,1734051347,1734051347,'csp-report','frontend.default',1734051347507505,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-XCB5Zm6DX5CU964ZrTJ8Fuu-khd-8v5pkXUzxQwvLWa4XGtkBYE8rQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051347507505\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":348,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d88fb8fb-a420-42f9-87df-a9c33f3035b2',0,1733968144,1733968144,'csp-report','frontend.default',1733968143918271,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce--JEaBsOaM_ddFyeoC0TzrzcLF5VRRLzeGV9EsBKCxYImGDbrNHSqJw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968143918271\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":114,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('d8d3909a-3052-4c62-98ae-35ae9f512a7d',0,1734010591,1734010591,'csp-report','frontend.default',1734010590832754,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-MWh1iTFeBfUy_gFg4sE2nQlSsvE8VjRTTLywTrlBCk_FFZ-wN6m2GQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010590832754\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('d9f0acc5-cc34-4040-9543-927bd0af32b5',0,1734040868,1734040868,'csp-report','frontend.default',1734040868693852,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-brwct9H5zVzOTsDw3zqkTUjV_dbxLgUHeXZUrw72JVJ_9JsvRiWoHA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734040868693852\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":156,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('da0a5e12-07b5-4868-99d3-d2addeb0e345',0,1734046897,1734046897,'csp-report','frontend.default',1734046897120612,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-CmjI9HLPgZADYDOvddkpykh_QPLROJ6qXjptwtnL7wbH_RnxcK5k8A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046897120612\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":222,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('da2b332c-c362-4a70-b525-f6f65139d5c3',0,1734052606,1734052606,'csp-report','frontend.default',1734052606356164,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-MDFPQofEQESVt1eAONnUp1a4nY7aF4NWy6YlDZjhpxzEwcaoREzphw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052606356164\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('da7b0452-1553-4737-b50e-f8f5e50d79ce',0,1734010247,1734010247,'csp-report','frontend.default',1734010246476321,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-1xtRuPBEX1pGF5786otN29q7DjDQExZCZvftbg4Co_nSS0jJ2uLLBQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010246476321\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":128,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('db442053-f102-4f16-a0db-96d45c0d54f6',0,1733968916,1733968916,'csp-report','frontend.default',1733968916551805,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-YAtD9bCvWmZ_t82ubReq7a3xA6IlxFb_RO__jPGjHHL5tkHjhh7IMg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968916551805\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":123,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('dbeca757-b8f8-4fc6-8786-2c9e34103a81',0,1734051859,1734051859,'csp-report','frontend.default',1734051859225081,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-rIz4dCfLpCWa1Xe-GtrNJ2e_BZw6nnGJtZ7jr8-4Pgk80ZnS-SJUZQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051859225081\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":372,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('dccc041b-6fad-4f07-80e9-f451d5e0e236',0,1734010591,1734010591,'csp-report','frontend.default',1734010590832754,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-MWh1iTFeBfUy_gFg4sE2nQlSsvE8VjRTTLywTrlBCk_FFZ-wN6m2GQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010590832754\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('de08868f-961d-4ebd-a1db-915a81902afd',0,1734054784,1734054784,'csp-report','frontend.default',1734054783764635,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-afEPe5aX0s7Ez9Yuo-i8eNsCBKpDIaQfS7kKULDYIt9zpKBnTqLMLg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054783764635\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e00a5777-c3b0-4b0c-922d-03206f6bd09c',0,1734039733,1734039733,'csp-report','frontend.default',1734039728945538,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6npB4m4uvvB-vYtP0P_ejTVNMlg8et1OtvstTb1_wncVWAL-HJwcKw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734039728945538\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e08a3b37-8cdc-4b41-a0f1-55d6962ef014',0,1733968122,1733968122,'csp-report','frontend.default',1733968121804930,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-P1daJVS-Pe32HwrNt5ztURQLeUFpQJdyVeEQ2a7YSFDfulNAgEMVqg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968121804930\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e17875c2-a01d-405d-adf0-ca8057987d10',0,1734052954,1734052954,'csp-report','frontend.default',1734052954013498,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-IbubF5Twdt94-qwZMhuL9-DajSee7_UXvrj9aS4BqCSltVa553-VxA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052954013498\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e1afcb13-915e-40df-bbfe-c55492f18dc2',0,1734054926,1734054926,'csp-report','frontend.default',1734054925540315,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-QMYe3qmHVomDiianDMopMALNiMUPWlIRr3j9hlTsj2mfHdyQj583UQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054925540315\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":381,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e2aee2b9-3c73-40df-8dd6-45f873095bd7',0,1734046843,1734046843,'csp-report','frontend.default',1734046843586303,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-7jkN7OwoPyAoafdJFhrrsKAXcOIl3IqtFa3C52jugDWcEH86slMwvw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734046843586303\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e38cc1bf-c3cb-4d76-9035-fc8451cc1fcf',0,1734022447,1734022447,'csp-report','frontend.default',1734022447291567,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-b50m9NYSl4GFdUvLxIAFEm_o3hDQ6bdUvaOgruu8NUTivlKrpBM9Dg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734022447291567\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":143,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e3c573f9-4f12-4e8f-a92f-20128b51ca09',0,1734047133,1734047133,'csp-report','frontend.default',1734047132809340,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-btHFh4AMOpAZHEHtAcEfE9kA8VDHehIdxd9ljEJiPnZakiGaPReoIg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047132809340\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e45a1df0-ae3f-41da-8d95-962b24cffa1d',0,1734107989,1734107989,'csp-report','frontend.default',1734107989721616,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"font-src\",\"effective-directive\":\"font-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-VAE3-ZS7Oqaobsv8X4KSY0dF_3ND5FA8PewqSl8hL_L7940QYblZRg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734107989721616\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','c4381741aed62ecdbd1a21b4b241125f078dcd3f'),
('e527e8b8-e59a-42c9-b434-c1be4d647401',0,1734045079,1734045079,'csp-report','frontend.default',1734045079784257,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-CgReU5r_yl-K8K52U1I93vjSBQk-UvOgON3HJIKMrOJk30IFw3obbQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045079784257\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":189,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e67e12df-496f-4b27-ad83-54f160a558e7',0,1734053077,1734053077,'csp-report','frontend.default',1734053076295230,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6YeO3UK1RL1Ru8h8cET0UnzyCmGQUvipYpWAWbWHf-mDAAI5xDqeuQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053076295230\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e6939974-91f1-4fd0-a2dc-afc2639b6cf4',0,1734009589,1734009589,'csp-report','frontend.default',1734009589540641,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-yPuqFUG3O1-kP6YYpZdOFVf-PiLWzt4ddYxocPT9Dxe1evYhVgri2A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734009589540641\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e7115610-29f0-4cf0-9569-165d5e86d2cf',0,1734050980,1734050980,'csp-report','frontend.default',1734050980512641,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-GPAbtRu_vn1NJP_LFYMlPrcj6frHLAi81kobWESIWK1fRKdpn32iVA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734050980512641\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":351,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e7ba0c47-e61c-4d95-b4e7-b1b2e3e10e9e',0,1734044795,1734044795,'csp-report','frontend.default',1734044776253679,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tAjnDYJxk8eTNerRwy4M8Xcy2r_dtJTWc5xOHJSJz_TkVUaYDfxf_g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734044776253679\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e7cfbbb1-eab1-4308-9e5f-85a5e2124e69',0,1734022588,1734022588,'csp-report','frontend.default',1734022588416763,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-hXMrsvNn00MbKWMsimEyUfDkUgkiOPIDUrQlc0FhSlXc-xWd1ViTAg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734022588416763\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e876cfc4-e274-4993-b2d1-90f9e5e45bb6',0,1734053980,1734053980,'csp-report','frontend.default',1734053980259236,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-CarQ0oEyLFhP_ucxq6dtUh7w03ILBZbBA2P4CyJPbF7DgbPMcD2vIw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053980259236\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":234,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e8baa81b-6642-481a-89fb-88c77767b1b0',0,1734010618,1734010618,'csp-report','frontend.default',1734010618138661,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"style-src-elem\",\"effective-directive\":\"style-src-elem\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-W79aBmDQGUTJti2kLosrebBt9VRY7Wi8g2GTfZDwr5VJN8sF7y4Hvw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010618138661\",\"disposition\":\"report\",\"blocked-uri\":\"inline\",\"line-number\":1,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','7918a9b1b298a999e614050dbbdfd002e25dc5d2'),
('e8dc2bca-b2f0-44ff-9126-158bccabaa85',0,1734010764,1734010764,'csp-report','frontend.default',1734010764127742,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-Z4WRLJFY6UxunH8R8K0idGordJrcUJIjMGqicWr0KqJhmKca5aJadA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734010764127742\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('e99ac59f-8213-455e-91aa-5a668ccc5851',0,1734045077,1734045077,'csp-report','frontend.default',1734045076935713,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-00DEf_chEJ8cCZfk_QbthprYSw2407on_m2OYgSoujT6c5y7PYJjXw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045076935713\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ea206476-302e-4f5f-9b43-0068d25a6484',0,1734039729,1734039729,'csp-report','frontend.default',1734039728945538,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6npB4m4uvvB-vYtP0P_ejTVNMlg8et1OtvstTb1_wncVWAL-HJwcKw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734039728945538\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('eb460e6f-f174-45c7-ab88-0ac0a4d76346',0,1734023161,1734023161,'csp-report','frontend.default',1734023142329236,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-tOIk2HmtmaSFS0CenWU5iwS9YbzbddS0KbgkE0Gn1slI1E7DvbYa5w\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023142329236\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('eb96b43a-265f-477b-8e33-68763111dfc5',0,1734051614,1734051614,'csp-report','frontend.default',1734051614725407,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-GGyJ8b42eS6KiYhXmwHWStVlXooglDAwraM-tlttkvoAm_GP_4b03g\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734051614725407\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":280,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ebb22288-b6e3-41b1-a69d-73d37a18d504',0,1734048382,1734048382,'csp-report','frontend.default',1734048364715197,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Linux; Android 13; Pixel 7) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/116.0.0.0 Mobile Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-PS_1fkf1JhqWZWM1UcNSb0PLbSq0VP0HrJBan0LaJ_tIP-Jz2L-ZvA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734048364715197\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ecb13928-81d6-413b-8bac-7d5bd6880e7f',0,1734052667,1734052667,'csp-report','frontend.default',1734052667102958,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6GZisth8J56gFPcs5yH-ErsLK6VYbqoKUxiR8rgVFajddtcWB95ziw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734052667102958\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ed0bbd54-f005-41f4-9afb-cda3b246ef70',0,1734048382,1734048382,'csp-report','frontend.default',1734048364715197,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Linux; Android 13; Pixel 7) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/116.0.0.0 Mobile Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-PS_1fkf1JhqWZWM1UcNSb0PLbSq0VP0HrJBan0LaJ_tIP-Jz2L-ZvA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734048364715197\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ed5d217b-37b3-464c-ba0f-c3c601d3deb7',0,1734041851,1734041851,'csp-report','frontend.default',1734041850829776,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-VuM3S0jVo00-wr62NlNbbwIV9MgErUE-iX_rKlBLE0It-Vp0DNIfdw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734041850829776\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ed65d4c3-5932-48ba-a2f7-98286d834228',0,1734047133,1734047133,'csp-report','frontend.default',1734047132809340,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-btHFh4AMOpAZHEHtAcEfE9kA8VDHehIdxd9ljEJiPnZakiGaPReoIg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047132809340\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ee001d11-d7a5-47a6-8fa6-745dd7f04feb',0,1734054909,1734054909,'csp-report','frontend.default',1734054909053909,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-dcn83TP95N5Nq8RK8SnxSWWgr4Q4outEmWDtFvFZx6ICSoLjTkcd7A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054909053909\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('ef78b8c7-e14a-4fd2-8539-191f9b667fa7',0,1734045080,1734045080,'csp-report','frontend.default',1734045080783496,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce--t3yr2i92Qoq7ER2COOxMrkwaBij92OuoJUzzU94UtFZu2PQnjZyyQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734045080783496\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":189,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('efdab4b5-9464-41fb-ba02-bc8cda051b32',0,1734054746,1734054746,'csp-report','frontend.default',1734054745889724,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-js8XtNycYE01MJLY3vmge9c-JNvqXB5NUIK-etyXh7Her4BB_E2WDA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054745889724\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":323,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('efe08866-eaee-41ce-b669-82da53571542',0,1734023788,1734023788,'csp-report','frontend.default',1734023788219907,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-7gszrsQQPRPjWf7Qtp4lcMIW7Cji1dL4HP0M3kPnRfZVnE_bCNhQVQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023788219907\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":136,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('f0d2021b-06ad-4769-9110-ce11c0ef1577',0,1734023991,1734023991,'csp-report','frontend.default',1734023990269235,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-s3fUqnvYxW6Guo6BdzbzNWv60iarMpzkgKGLC2jZH6Aq6Ky7dXtxDA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023990269235\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":136,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('f3035495-400d-408d-8aa6-d6da9a320b52',0,1734050655,1734050655,'csp-report','frontend.default',1734050655603690,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-lihx_qpXkLExzl207CRr-LGjW1TQycLd5_RyZbVxdjcX8nyVuAVDSg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734050655603690\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":366,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('f5d25e64-2d6c-4141-884c-9b6cf21862dd',0,1734047613,1734047613,'csp-report','frontend.default',1734047613133920,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Linux; Android 13; Pixel 7) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/116.0.0.0 Mobile Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-YymZVXgkoXFC6LbcSYEUB43s5OEczG5G96hg0fY5z_ZnIEzeyDUclA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047613133920\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":584,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('f64beccf-b8d8-45d1-864b-cac7521d1c9a',0,1734047356,1734047356,'csp-report','frontend.default',1734047344750192,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.0 Safari\\/605.1.15\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-OpiHnwQ_Y5BW7gSP8TbxUT5pitTNIJLP43-p520bNpivx_vtF5ZAJQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734047344750192\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('f678d0bd-0718-4be2-a27a-c7b9f293f207',0,1734021959,1734021959,'csp-report','frontend.default',1734021958869602,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-DbmrE5St5mRkS-sIa-0TqChuEiN20MsVjxDh4c9AGLZXQY5R_2L-bw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734021958869602\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('f6e43419-e231-4596-9cff-50a6685690b5',0,1734023529,1734023529,'csp-report','frontend.default',1734023529011627,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-l2J2Ny1mkM7u4496scwZChcD-aUftoS89Hr1tr6PqZo-USZJF7XYSw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734023529011627\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('f720f2e9-ce5e-4e92-8f08-fad2a6e428aa',0,1734053077,1734053077,'csp-report','frontend.default',1734053076295230,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-6YeO3UK1RL1Ru8h8cET0UnzyCmGQUvipYpWAWbWHf-mDAAI5xDqeuQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053076295230\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('f7daffa4-6e9f-40b9-845f-0d6d9cc52b70',0,1734020171,1734020171,'csp-report','frontend.default',1734020171027307,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-LUPLwtgS9AEfvZaRk_mSpPU0Wr2-StORyS-rSrL1YTT4ABFAjvOoaA\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734020171027307\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":135,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('fa2c137d-f87d-496b-9a3c-09ebdbf189c1',0,1733968713,1733968713,'csp-report','frontend.default',1733968712461868,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/?\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-j1uv3Nu9eY5tSgMMfZOeJZ52UnDZZmOYYhlT3Y5cFkpzJfYazDXPXg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1733968712461868\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":120,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('fb086530-233f-4fac-8208-190cb3423776',0,1734050913,1734050913,'csp-report','frontend.default',1734050913018210,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-TwHux3RNAOYTOhrX8ZwkcaMTt2SOHJc0Juf-DP3Q4UeCWYvE5sYNOw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734050913018210\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":372,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('fb37386e-59e8-4c5f-9bd3-aeb4efb78c2b',0,1734040549,1734040549,'csp-report','frontend.default',1734040547959703,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-2RmdJbiTy5ShbLJLfSsCf863P6C-V-xWl9dcia5wK0Xx5P7dvSCxYw\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734040547959703\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":156,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('fb7cdbc4-8c13-4523-bea5-7427f30efd54',0,1734039772,1734039772,'csp-report','frontend.default',1734039771972637,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-xptS-5tkR_rsWc2WgmdszyoHUqcLEav_h6pHzN9UgAdn0cZSWdSU1Q\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734039771972637\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":158,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('fd444f86-8ef3-4bf5-8895-3a81c0970916',0,1734043853,1734043853,'csp-report','frontend.default',1734043853205027,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"referrer\":\"\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-8_lBvvTWKSvErtxp8MxatQlGJMAk2Nok_hK-sm2hwHysC3zfiprgOg\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734043853205027\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":157,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('fed891b3-1cfd-49df-9acb-dc246c77e9ca',0,1734054231,1734054231,'csp-report','frontend.default',1734054231385438,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=1&cHash=715f2a133ce48e46ceb718cdb1ee2dce\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/test2?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5BcurrentPage%5D=2&cHash=59cfd9f40f40e73a51d36fcc02070b2f\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce--NlQT6PTyvj0o1kPPQnmtbKnQ78GHsTjpP4gahhYi-thHULly6941A\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734054231385438\",\"disposition\":\"report\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c'),
('fef84c69-2ad9-419f-ab8f-8be6295aeeeb',0,1734053926,1734053926,'csp-report','frontend.default',1734053926264963,'{\"addr\":\"172.18.0.0\",\"agent\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/16.6 Mobile\\/15E148 Safari\\/604.1\"}','{\"document-uri\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"referrer\":\"https:\\/\\/lena-schilling.ddev.site\\/\",\"violated-directive\":\"img-src\",\"effective-directive\":\"img-src\",\"original-policy\":\"default-src \'self\'; script-src \'self\' \'nonce-0vSWHRK4LFD84pub0BGM3cqdAwGlFb-uhOBCOunULaWHd8yjnUwUcQ\' \'report-sample\'; style-src-attr \'unsafe-inline\' \'report-sample\'; img-src \'self\' data: *.ytimg.com *.vimeocdn.com; base-uri \'self\'; frame-src \'self\' *.youtube-nocookie.com *.youtube.com *.vimeo.com; report-uri https:\\/\\/lena-schilling.ddev.site\\/@http-reporting?csp=report&requestTime=1734053926264963\",\"disposition\":\"enforce\",\"blocked-uri\":\"ext\",\"line-number\":324,\"source-file\":\"https:\\/\\/lena-schilling.ddev.site\\/test2\",\"status-code\":200,\"script-sample\":\"\"}','0f4b57da82f0934178e2aa1740ac8d0aaf50d86c');
/*!40000 ALTER TABLE `sys_http_report` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_lockedrecords`
--
DROP TABLE IF EXISTS `sys_lockedrecords`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_lockedrecords` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`record_table` varchar(255) NOT NULL DEFAULT '',
`record_uid` int(11) NOT NULL DEFAULT 0,
`record_pid` int(11) NOT NULL DEFAULT 0,
`username` varchar(50) NOT NULL DEFAULT '',
`feuserid` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `event` (`userid`,`tstamp`)
) ENGINE=InnoDB AUTO_INCREMENT=163 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_lockedrecords`
--
LOCK TABLES `sys_lockedrecords` WRITE;
/*!40000 ALTER TABLE `sys_lockedrecords` DISABLE KEYS */;
INSERT INTO `sys_lockedrecords` VALUES
(162,1,1734218229,'sys_file_metadata',11,0,'admin',0);
/*!40000 ALTER TABLE `sys_lockedrecords` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_log`
--
DROP TABLE IF EXISTS `sys_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_log` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`userid` int(10) unsigned NOT NULL DEFAULT 0,
`action` smallint(5) unsigned NOT NULL DEFAULT 0,
`recuid` int(10) unsigned NOT NULL DEFAULT 0,
`tablename` varchar(255) NOT NULL DEFAULT '',
`recpid` int(11) NOT NULL DEFAULT 0,
`error` smallint(5) unsigned NOT NULL DEFAULT 0,
`details` text DEFAULT NULL,
`type` smallint(5) unsigned NOT NULL DEFAULT 0,
`channel` varchar(20) NOT NULL DEFAULT 'default',
`details_nr` smallint(6) NOT NULL DEFAULT 0,
`IP` varchar(39) NOT NULL DEFAULT '',
`log_data` text DEFAULT NULL,
`event_pid` int(11) NOT NULL DEFAULT -1,
`workspace` int(11) NOT NULL DEFAULT 0,
`NEWid` varchar(30) NOT NULL DEFAULT '',
`request_id` varchar(13) NOT NULL DEFAULT '',
`time_micro` double NOT NULL DEFAULT 0,
`component` varchar(255) NOT NULL DEFAULT '',
`level` varchar(10) NOT NULL DEFAULT 'info',
`message` text DEFAULT NULL,
`data` text DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `event` (`userid`,`event_pid`),
KEY `recuidIdx` (`recuid`),
KEY `user_auth` (`type`,`action`,`tstamp`),
KEY `request` (`request_id`),
KEY `combined_1` (`tstamp`,`type`,`userid`),
KEY `errorcount` (`tstamp`,`error`),
KEY `index_channel` (`channel`),
KEY `index_level` (`level`)
) ENGINE=InnoDB AUTO_INCREMENT=426 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_log`
--
LOCK TABLES `sys_log` WRITE;
/*!40000 ALTER TABLE `sys_log` DISABLE KEYS */;
INSERT INTO `sys_log` VALUES
(1,1733736169,1,1,0,'',0,0,'User %s logged in from ###IP###',255,'user',1,'172.18.0.6','[\"admin\"]',-1,-99,'','',0,'','info',NULL,NULL),
(2,1733736184,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(3,1733736401,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(4,1733736418,1,2,1,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"example.com\",\"table\":\"pages\",\"uid\":1,\"history\":\"1\"}',1,0,'','',0,'','info',NULL,NULL),
(5,1733736561,0,3,0,'',0,3,'Login-attempt from ###IP### for username \'%s\' with an empty password!',255,'user',2,'172.18.0.6','[\"admin\"]',-1,-99,'','',0,'','info',NULL,NULL),
(6,1733736565,1,1,0,'',0,0,'User %s logged in from ###IP###',255,'user',1,'172.18.0.6','[\"admin\"]',-1,-99,'','',0,'','info',NULL,NULL),
(7,1733736580,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(9,1733736615,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(10,1733736736,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(11,1733736781,1,1,1,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.6','{\"title\":\"Test\",\"table\":\"tt_content\",\"uid\":1,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW6756b928a2482738706862','',0,'','info',NULL,NULL),
(12,1733736935,1,2,1,'sys_template',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"example.com\",\"table\":\"sys_template\",\"uid\":1,\"history\":\"3\"}',1,0,'','',0,'','info',NULL,NULL),
(13,1733736943,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(14,1733737049,1,2,1,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"Test\",\"table\":\"tt_content\",\"uid\":1,\"history\":\"4\"}',1,0,'','',0,'','info',NULL,NULL),
(15,1733737132,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(16,1733737150,1,2,1,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"example.com\",\"table\":\"pages\",\"uid\":1,\"history\":\"5\"}',1,0,'','',0,'','info',NULL,NULL),
(17,1733737157,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(18,1733737182,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(19,1733737202,1,2,1,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"Test\",\"table\":\"tt_content\",\"uid\":1,\"history\":\"6\"}',1,0,'','',0,'','info',NULL,NULL),
(20,1733737249,1,2,1,'sys_template',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"example.com\",\"table\":\"sys_template\",\"uid\":1,\"history\":\"7\"}',1,0,'','',0,'','info',NULL,NULL),
(21,1733737255,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(22,1733737261,1,2,1,'sys_template',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"example.com\",\"table\":\"sys_template\",\"uid\":1,\"history\":\"8\"}',1,0,'','',0,'','info',NULL,NULL),
(23,1733737381,1,2,1,'sys_template',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"example.com\",\"table\":\"sys_template\",\"uid\":1,\"history\":\"9\"}',1,0,'','',0,'','info',NULL,NULL),
(24,1733737387,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(25,1733737513,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(26,1733737526,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(27,1733737539,1,2,1,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"example.com\",\"table\":\"pages\",\"uid\":1,\"history\":0}',1,0,'','',0,'','info',NULL,NULL),
(28,1733908726,1,1,0,'',0,0,'User %s logged in from ###IP###',255,'user',1,'172.18.0.6','[\"admin\"]',-1,-99,'','',0,'','info',NULL,NULL),
(29,1733929200,1,2,1,'sys_template',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"example.com\",\"table\":\"sys_template\",\"uid\":1,\"history\":\"10\"}',1,0,'','',0,'','info',NULL,NULL),
(30,1733931132,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(31,1733931462,1,2,1,'sys_template',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"example.com\",\"table\":\"sys_template\",\"uid\":1,\"history\":\"11\"}',1,0,'','',0,'','info',NULL,NULL),
(32,1733931927,1,2,1,'sys_template',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.6','{\"title\":\"example.com\",\"table\":\"sys_template\",\"uid\":1,\"history\":\"12\"}',1,0,'','',0,'','info',NULL,NULL),
(34,1733931942,1,3,1,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.6','{\"title\":\"Test\",\"table\":\"tt_content\",\"uid\":1,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(38,1733932116,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(40,1733932225,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.6','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(42,1733950262,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(43,1733950272,1,2,1,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"pages\",\"uid\":1,\"history\":\"14\"}',1,0,'','',0,'','info',NULL,NULL),
(44,1733950329,1,2,1,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"pages\",\"uid\":1,\"history\":0}',1,0,'','',0,'','info',NULL,NULL),
(45,1733950551,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(46,1733950569,1,2,0,'site',0,0,'Site configuration \'%s\' was updated.',6,'site',0,'172.18.0.5','[\"default\"]',-1,0,'','',0,'','info',NULL,NULL),
(47,1733950575,1,2,0,'site',0,0,'Site configuration \'%s\' was updated.',6,'site',0,'172.18.0.5','[\"default\"]',-1,0,'','',0,'','info',NULL,NULL),
(48,1733950587,1,2,1,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"pages\",\"uid\":1,\"history\":\"15\"}',1,0,'','',0,'','info',NULL,NULL),
(49,1733950599,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(50,1733950663,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(51,1733950680,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(52,1733950701,1,1,2,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"test\",\"table\":\"tt_content\",\"uid\":2,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW6759fce5e68f1611474535','',0,'','info',NULL,NULL),
(61,1733950922,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(64,1733951072,1,2,0,'site',0,0,'Site configuration \'%s\' was updated.',6,'site',0,'172.18.0.5','[\"default\"]',-1,0,'','',0,'','info',NULL,NULL),
(65,1733951120,1,3,1,'sys_template',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"example.com\",\"table\":\"sys_template\",\"uid\":1,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(67,1733951190,1,1,2,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test\",\"table\":\"pages\",\"uid\":2,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW1753a14f','',0,'','info',NULL,NULL),
(68,1733951195,1,1,3,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test2\",\"table\":\"pages\",\"uid\":3,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEWe770ed2','',0,'','info',NULL,NULL),
(69,1733951197,1,2,3,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"pages\",\"uid\":3,\"history\":\"20\"}',3,0,'','',0,'','info',NULL,NULL),
(70,1733951201,1,2,2,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"pages\",\"uid\":2,\"history\":\"21\"}',2,0,'','',0,'','info',NULL,NULL),
(73,1733952692,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(74,1733952883,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(75,1733953433,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(76,1733964567,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(77,1733964600,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(78,1733964793,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(96,1733965451,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(97,1733965915,1,2,0,'',0,0,'User %s logged out from TYPO3 Backend',255,'user',1,'172.18.0.5','[\"admin\"]',-1,0,'','',0,'','info',NULL,NULL),
(98,1733965918,1,1,0,'',0,0,'User %s logged in from ###IP###',255,'user',1,'172.18.0.5','[\"admin\"]',-1,-99,'','',0,'','info',NULL,NULL),
(99,1733966249,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(100,1733967029,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(101,1733967369,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(102,1733967430,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(103,1733967467,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(104,1733967483,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(105,1733967560,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(106,1733967596,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(107,1733967785,1,1,0,'',0,0,'Uploading file \"{identifier}\" to \"{destination}\"',2,'file',0,'172.18.0.5','{\"identifier\":\"1024-1536.jpg\",\"destination\":\"\\/user_upload\\/\"}',-1,0,'','',0,'','info',NULL,NULL),
(108,1733967793,1,1,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"test\",\"table\":\"tt_content\",\"uid\":3,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675a3f9c5883d239571163','',0,'','info',NULL,NULL),
(109,1733967793,1,1,1,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":1,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675a3fa9942b3213729508','',0,'','info',NULL,NULL),
(110,1733967793,1,2,3,'tt_content',0,2,'SQL error: \"{reason}\" ({table}:{uid})',1,'content',12,'172.18.0.5','{\"reason\":\"Unknown column \'cloonar_hero_image\' in \'field list\'\",\"table\":\"tt_content\",\"uid\":3}',-1,0,'','',0,'','info',NULL,NULL),
(114,1733967825,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(115,1733967845,1,2,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":3,\"history\":\"24\"}',0,0,'','',0,'','info',NULL,NULL),
(116,1733967845,1,1,2,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":2,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675a3fe29b891532968080','',0,'','info',NULL,NULL),
(117,1733967845,1,2,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":3,\"history\":\"26\"}',0,0,'','',0,'','info',NULL,NULL),
(121,1733967976,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(123,1733967999,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(130,1733968040,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(134,1733968458,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(136,1733968469,1,2,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":3,\"history\":\"27\"}',0,0,'','',0,'','info',NULL,NULL),
(141,1733968496,1,2,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":3,\"history\":\"28\"}',0,0,'','',0,'','info',NULL,NULL),
(143,1733968645,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(144,1733968710,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(145,1733968923,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"1\"}',-1,0,'','',0,'','info',NULL,NULL),
(158,1734009997,1,1,0,'',0,0,'User %s logged in from ###IP###',255,'user',1,'172.18.0.5','[\"admin\"]',-1,-99,'','',0,'','info',NULL,NULL),
(159,1734010327,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(161,1734020315,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(162,1734020478,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(163,1734023821,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(164,1734038652,1,1,0,'',0,0,'User %s logged in from ###IP###',255,'user',1,'172.18.0.5','[\"admin\"]',-1,-99,'','',0,'','info',NULL,NULL),
(165,1734038654,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(166,1734038755,1,1,4,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":4,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675b54d575edd933105018','',0,'','info',NULL,NULL),
(167,1734039376,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(171,1734039614,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(173,1734039669,1,2,4,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"10was\\r\\n20soll\\r\\n30das\\r\\n40sein\",\"table\":\"tt_content\",\"uid\":4,\"history\":\"30\"}',0,0,'','',0,'','info',NULL,NULL),
(175,1734040221,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(180,1734040545,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(181,1734044731,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(182,1734044772,1,1,5,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"test\",\"table\":\"tt_content\",\"uid\":5,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675b6c449e591577777838','',0,'','info',NULL,NULL),
(183,1734044772,1,1,3,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":3,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675b6c506243d216056897','',0,'','info',NULL,NULL),
(184,1734044772,1,2,5,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":5,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(185,1734045063,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(186,1734045075,1,2,5,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":5,\"history\":\"33\"}',0,0,'','',0,'','info',NULL,NULL),
(187,1734045075,1,2,3,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"N\\/A\",\"table\":\"sys_file_reference\",\"uid\":3,\"history\":\"34\"}',0,0,'','',0,'','info',NULL,NULL),
(188,1734045083,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(189,1734045381,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(190,1734045409,1,2,5,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":5,\"history\":\"35\"}',0,0,'','',0,'','info',NULL,NULL),
(191,1734045432,1,1,4,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":4}',1,0,'NEW675b6ef8dc674440259455','',0,'','info',NULL,NULL),
(192,1734045432,1,1,6,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"test (copy 1)\",\"table\":\"tt_content\",\"uid\":6,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675b6ef8daca2725779827','',0,'','info',NULL,NULL),
(193,1734045432,1,2,6,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":6,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(194,1734045432,1,2,6,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":6,\"history\":\"38\"}',0,0,'','',0,'','info',NULL,NULL),
(195,1734045435,1,2,6,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":6,\"history\":\"39\"}',0,0,'','',0,'','info',NULL,NULL),
(196,1734045441,1,2,6,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":6,\"history\":\"40\"}',0,0,'','',0,'','info',NULL,NULL),
(197,1734046332,1,1,4,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"News\",\"table\":\"pages\",\"uid\":4,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW320376ed','',0,'','info',NULL,NULL),
(198,1734046335,1,2,4,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"pages\",\"uid\":4,\"history\":\"42\"}',4,0,'','',0,'','info',NULL,NULL),
(199,1734046403,1,1,1,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1\",\"table\":\"tx_news_domain_model_news\",\"uid\":1,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b72b9478db000937867','',0,'','info',NULL,NULL),
(200,1734046411,1,1,2,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 1)\",\"table\":\"tx_news_domain_model_news\",\"uid\":2,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b72cbe2f96080978968','',0,'','info',NULL,NULL),
(201,1734046413,1,1,3,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 2)\",\"table\":\"tx_news_domain_model_news\",\"uid\":3,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b72cdbb03f407745519','',0,'','info',NULL,NULL),
(202,1734046415,1,1,4,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 3)\",\"table\":\"tx_news_domain_model_news\",\"uid\":4,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b72cfd2a12073254158','',0,'','info',NULL,NULL),
(203,1734046420,1,3,4,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"Test 1 (copy 3)\",\"table\":\"tx_news_domain_model_news\",\"uid\":4,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(204,1734046421,1,3,3,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"Test 1 (copy 2)\",\"table\":\"tx_news_domain_model_news\",\"uid\":3,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(205,1734046422,1,3,2,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"Test 1 (copy 1)\",\"table\":\"tx_news_domain_model_news\",\"uid\":2,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(206,1734046430,1,2,1,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":1,\"history\":\"50\"}',0,0,'','',0,'','info',NULL,NULL),
(207,1734046430,1,1,5,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":5,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b72dc4353a826430837','',0,'','info',NULL,NULL),
(208,1734046430,1,2,1,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":1,\"history\":\"52\"}',0,0,'','',0,'','info',NULL,NULL),
(209,1734046445,1,1,6,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":6}',4,0,'NEW675b72ed301bd193602884','',0,'','info',NULL,NULL),
(210,1734046445,1,1,5,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 1)\",\"table\":\"tx_news_domain_model_news\",\"uid\":5,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b72ed2dd5b252507676','',0,'','info',NULL,NULL),
(211,1734046445,1,2,5,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":5,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(212,1734046447,1,1,7,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":7}',4,0,'NEW675b72ef1d15b946979476','',0,'','info',NULL,NULL),
(213,1734046447,1,1,6,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 2)\",\"table\":\"tx_news_domain_model_news\",\"uid\":6,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b72ef1ab59321720268','',0,'','info',NULL,NULL),
(214,1734046447,1,2,6,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":6,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(215,1734046449,1,1,8,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":8}',4,0,'NEW675b72f14cdd0328985659','',0,'','info',NULL,NULL),
(216,1734046449,1,1,7,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 3)\",\"table\":\"tx_news_domain_model_news\",\"uid\":7,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b72f14aa2a966592441','',0,'','info',NULL,NULL),
(217,1734046449,1,2,7,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":7,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(218,1734046451,1,1,9,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":9}',4,0,'NEW675b72f395b80998274237','',0,'','info',NULL,NULL),
(219,1734046451,1,1,8,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 4)\",\"table\":\"tx_news_domain_model_news\",\"uid\":8,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b72f392ed9724341165','',0,'','info',NULL,NULL),
(220,1734046451,1,2,8,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":8,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(221,1734046452,1,2,5,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":5,\"history\":\"61\"}',0,0,'','',0,'','info',NULL,NULL),
(222,1734046453,1,2,6,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":6,\"history\":\"62\"}',0,0,'','',0,'','info',NULL,NULL),
(223,1734046454,1,2,7,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":7,\"history\":\"63\"}',0,0,'','',0,'','info',NULL,NULL),
(224,1734046454,1,2,8,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":8,\"history\":\"64\"}',0,0,'','',0,'','info',NULL,NULL),
(225,1734046495,1,1,7,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Aktuelles\",\"table\":\"tt_content\",\"uid\":7,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675b730bb204d262415352','',0,'','info',NULL,NULL),
(227,1734046542,1,2,0,'site',0,0,'Site configuration \'%s\' was updated.',6,'site',0,'172.18.0.5','[\"default\"]',-1,0,'','',0,'','info',NULL,NULL),
(228,1734046546,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(230,1734046662,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(232,1734046781,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(233,1734046852,1,3,2,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"test\",\"table\":\"tt_content\",\"uid\":2,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(234,1734046883,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(237,1734046937,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(240,1734048317,1,1,8,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"test 1\",\"table\":\"tt_content\",\"uid\":8,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675b7a391f5c5841796181','',0,'','info',NULL,NULL),
(241,1734048328,1,1,9,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"test 2\",\"table\":\"tt_content\",\"uid\":9,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675b7a4361bba873108377','',0,'','info',NULL,NULL),
(242,1734050591,1,1,10,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":10,\"pageTitle\":\"Test2\",\"pid\":3}',3,0,'NEW675b8307b7149684051281','',0,'','info',NULL,NULL),
(243,1734050603,1,2,3,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"Aktuelles\",\"table\":\"pages\",\"uid\":3,\"history\":\"70\"}',3,0,'','',0,'','info',NULL,NULL),
(244,1734050631,1,2,7,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":7,\"history\":\"71\"}',0,0,'','',0,'','info',NULL,NULL),
(245,1734050640,1,1,10,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":10}',4,0,'NEW675b83508de40312514002','',0,'','info',NULL,NULL),
(246,1734050640,1,1,9,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 5)\",\"table\":\"tx_news_domain_model_news\",\"uid\":9,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b83508b4be372249067','',0,'','info',NULL,NULL),
(247,1734050640,1,2,9,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":9,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(248,1734050642,1,1,11,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":11}',4,0,'NEW675b8352aa727178959680','',0,'','info',NULL,NULL),
(249,1734050642,1,1,10,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 6)\",\"table\":\"tx_news_domain_model_news\",\"uid\":10,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b8352a8289427102814','',0,'','info',NULL,NULL),
(250,1734050642,1,2,10,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":10,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(251,1734050644,1,1,12,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":12}',4,0,'NEW675b83548a930634624655','',0,'','info',NULL,NULL),
(252,1734050644,1,1,11,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 7)\",\"table\":\"tx_news_domain_model_news\",\"uid\":11,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b835487f26668916473','',0,'','info',NULL,NULL),
(253,1734050644,1,2,11,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":11,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(254,1734050646,1,1,13,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":13}',4,0,'NEW675b83567b548173481484','',0,'','info',NULL,NULL),
(255,1734050646,1,1,12,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 8)\",\"table\":\"tx_news_domain_model_news\",\"uid\":12,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675b8356786de379773763','',0,'','info',NULL,NULL),
(256,1734050646,1,2,12,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":12,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(257,1734050648,1,2,9,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":9,\"history\":\"80\"}',0,0,'','',0,'','info',NULL,NULL),
(258,1734050649,1,2,10,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":10,\"history\":\"81\"}',0,0,'','',0,'','info',NULL,NULL),
(259,1734050650,1,2,11,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":11,\"history\":\"82\"}',0,0,'','',0,'','info',NULL,NULL),
(260,1734050651,1,2,12,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":12,\"history\":\"83\"}',0,0,'','',0,'','info',NULL,NULL),
(262,1734053072,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(263,1734053187,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(264,1734105802,1,1,0,'',0,0,'User %s logged in from ###IP###',255,'user',1,'172.18.0.5','[\"admin\"]',-1,-99,'','',0,'','info',NULL,NULL),
(265,1734105804,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(266,1734108690,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1607585445: No page configured for type=0. | TYPO3\\CMS\\Core\\Error\\Http\\InternalServerErrorException thrown in file /var/www/html/vendor/typo3/cms-frontend/Classes/Controller/ErrorController.php in line 48. Requested URL: https://lena-schilling.ddev.site/',5,'php',0,'172.18.0.5','',-1,0,'','',0,'','error',NULL,NULL),
(267,1734110947,1,1,0,'',0,0,'User %s logged in from ###IP###',255,'user',1,'172.18.0.5','[\"admin\"]',-1,-99,'','',0,'','info',NULL,NULL),
(268,1734110949,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(269,1734111517,1,1,0,'',0,0,'Uploading file \"{identifier}\" to \"{destination}\"',2,'file',0,'172.18.0.5','{\"identifier\":\"bild-lena.png\",\"destination\":\"\\/user_upload\\/\"}',-1,0,'','',0,'','info',NULL,NULL),
(270,1734111519,1,2,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":3,\"history\":\"84\"}',0,0,'','',0,'','info',NULL,NULL),
(271,1734111519,1,1,14,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"bild-lena.png\",\"table\":\"sys_file_reference\",\"uid\":14,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675c711e10139819717625','',0,'','info',NULL,NULL),
(272,1734111519,1,2,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":3,\"history\":\"86\"}',0,0,'','',0,'','info',NULL,NULL),
(273,1734111519,1,3,2,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":2,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(274,1734111541,1,2,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"test\\r\\ntest\\r\\ntest\\r\\ntest\\r\\ntest\\r\\ntest\\r\\ntest\",\"table\":\"tt_content\",\"uid\":3,\"history\":\"88\"}',0,0,'','',0,'','info',NULL,NULL),
(275,1734111541,1,2,14,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"N\\/A\",\"table\":\"sys_file_reference\",\"uid\":14,\"history\":\"89\"}',0,0,'','',0,'','info',NULL,NULL),
(276,1734111896,1,2,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"test\\r\\ntest\\r\\ntest\\r\\ntest\\r\\ntest\\r\\ntest\\r\\ntesttest\\r\\ntest\\r\\ntest\\r\\ntest\\r\\ntest\\r\\ntest\\r\\ntest\",\"table\":\"tt_content\",\"uid\":3,\"history\":\"90\"}',0,0,'','',0,'','info',NULL,NULL),
(277,1734111924,1,2,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test ...\",\"table\":\"tt_content\",\"uid\":3,\"history\":\"91\"}',0,0,'','',0,'','info',NULL,NULL),
(278,1734114684,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(279,1734114715,1,2,4,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"10was\\r\\n20soll\\r\\n30das\\r\\n40sein\",\"table\":\"tt_content\",\"uid\":4,\"history\":\"92\"}',0,0,'','',0,'','info',NULL,NULL),
(280,1734115942,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(281,1734115970,1,2,4,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"10was\\r\\n20soll\\r\\n30das\\r\\n40sein\",\"table\":\"tt_content\",\"uid\":4,\"history\":\"93\"}',0,0,'','',0,'','info',NULL,NULL),
(282,1734115995,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(283,1734116042,1,2,4,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"10was\\r\\n20soll\\r\\n30das\\r\\n40sein\",\"table\":\"tt_content\",\"uid\":4,\"history\":\"94\"}',0,0,'','',0,'','info',NULL,NULL),
(284,1734116558,1,2,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"Lena Schilling\",\"table\":\"tt_content\",\"uid\":3,\"history\":\"95\"}',0,0,'','',0,'','info',NULL,NULL),
(285,1734116605,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(286,1734116617,1,2,3,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"Hallo, ich bin\",\"table\":\"tt_content\",\"uid\":3,\"history\":\"96\"}',0,0,'','',0,'','info',NULL,NULL),
(287,1734117868,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(288,1734117887,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(289,1734118658,1,2,3,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"Themen\",\"table\":\"pages\",\"uid\":3,\"history\":\"97\"}',3,0,'','',0,'','info',NULL,NULL),
(290,1734118669,1,2,2,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"Transparenz\",\"table\":\"pages\",\"uid\":2,\"history\":\"98\"}',2,0,'','',0,'','info',NULL,NULL),
(291,1734118677,1,1,5,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Presse\",\"table\":\"pages\",\"uid\":5,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW383008b8','',0,'','info',NULL,NULL),
(292,1734118684,1,1,6,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Team Lena\",\"table\":\"pages\",\"uid\":6,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW293f95d3','',0,'','info',NULL,NULL),
(293,1734118687,1,4,4,'pages',0,0,'Moved record \"{title}\" ({table}:{uid}) on page \"{pageTitle}\" ({pid})',1,'content',4,'172.18.0.5','{\"title\":\"News\",\"table\":\"pages\",\"uid\":4,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(294,1734118692,1,4,4,'pages',0,0,'Moved record \"{title}\" ({table}:{uid}) on page \"{pageTitle}\" ({pid})',1,'content',4,'172.18.0.5','{\"title\":\"News\",\"table\":\"pages\",\"uid\":4,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(295,1734118694,1,2,6,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"pages\",\"uid\":6,\"history\":\"103\"}',6,0,'','',0,'','info',NULL,NULL),
(296,1734118696,1,2,5,'pages',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"pages\",\"uid\":5,\"history\":\"104\"}',5,0,'','',0,'','info',NULL,NULL),
(297,1734118797,1,1,0,'',0,0,'Uploading file \"{identifier}\" to \"{destination}\"',2,'file',0,'172.18.0.5','{\"identifier\":\"241121_Lena_schilling_COP-1.png\",\"destination\":\"\\/user_upload\\/\"}',-1,0,'','',0,'','info',NULL,NULL),
(298,1734118803,1,2,1,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":1,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(299,1734118803,1,1,15,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"241121_Lena_schilling_COP-1.png\",\"table\":\"sys_file_reference\",\"uid\":15,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8d8e0c3ca516049279','',0,'','info',NULL,NULL),
(300,1734118803,1,2,1,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":1,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(301,1734118803,1,3,5,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":5,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(302,1734118806,1,3,6,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":6,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(303,1734118806,1,3,5,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"Test 1 (copy 1)\",\"table\":\"tx_news_domain_model_news\",\"uid\":5,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(304,1734118808,1,3,7,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":7,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(305,1734118808,1,3,6,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"Test 1 (copy 2)\",\"table\":\"tx_news_domain_model_news\",\"uid\":6,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(306,1734118814,1,3,8,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":8,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(307,1734118814,1,3,7,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"Test 1 (copy 3)\",\"table\":\"tx_news_domain_model_news\",\"uid\":7,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(308,1734118814,1,3,9,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":9,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(309,1734118814,1,3,8,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"Test 1 (copy 4)\",\"table\":\"tx_news_domain_model_news\",\"uid\":8,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(310,1734118814,1,3,10,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":10,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(311,1734118814,1,3,9,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"Test 1 (copy 5)\",\"table\":\"tx_news_domain_model_news\",\"uid\":9,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(312,1734118814,1,3,11,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":11,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(313,1734118814,1,3,10,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"Test 1 (copy 6)\",\"table\":\"tx_news_domain_model_news\",\"uid\":10,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(314,1734118814,1,3,12,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":12,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(315,1734118814,1,3,11,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"Test 1 (copy 7)\",\"table\":\"tx_news_domain_model_news\",\"uid\":11,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(316,1734118814,1,3,13,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":13,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(317,1734118814,1,3,12,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"Test 1 (copy 8)\",\"table\":\"tx_news_domain_model_news\",\"uid\":12,\"pageTitle\":\"News\",\"pid\":4}',4,0,'','',0,'','info',NULL,NULL),
(318,1734118826,1,1,16,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":16}',4,0,'NEW675c8daa257a2844384790','',0,'','info',NULL,NULL),
(319,1734118826,1,1,13,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 1)\",\"table\":\"tx_news_domain_model_news\",\"uid\":13,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8daa23644994124276','',0,'','info',NULL,NULL),
(320,1734118826,1,2,13,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":13,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(321,1734118828,1,1,17,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":17}',4,0,'NEW675c8dac3a389027427788','',0,'','info',NULL,NULL),
(322,1734118828,1,1,14,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 2)\",\"table\":\"tx_news_domain_model_news\",\"uid\":14,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8dac37fd4579853175','',0,'','info',NULL,NULL),
(323,1734118828,1,2,14,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":14,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(324,1734118830,1,1,18,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":18}',4,0,'NEW675c8dae66503109883542','',0,'','info',NULL,NULL),
(325,1734118830,1,1,15,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 3)\",\"table\":\"tx_news_domain_model_news\",\"uid\":15,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8dae6403d129952931','',0,'','info',NULL,NULL),
(326,1734118830,1,2,15,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":15,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(327,1734118832,1,1,19,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":19}',4,0,'NEW675c8db08fd4b576583376','',0,'','info',NULL,NULL),
(328,1734118832,1,1,16,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 4)\",\"table\":\"tx_news_domain_model_news\",\"uid\":16,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8db08d679382110929','',0,'','info',NULL,NULL),
(329,1734118832,1,2,16,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":16,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(330,1734118834,1,1,20,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":20}',4,0,'NEW675c8db2e777e470663241','',0,'','info',NULL,NULL),
(331,1734118834,1,1,17,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 5)\",\"table\":\"tx_news_domain_model_news\",\"uid\":17,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8db2e4de4550189199','',0,'','info',NULL,NULL),
(332,1734118834,1,2,17,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":17,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(333,1734118837,1,1,21,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":21}',4,0,'NEW675c8db50a3db053714123','',0,'','info',NULL,NULL),
(334,1734118837,1,1,18,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 6)\",\"table\":\"tx_news_domain_model_news\",\"uid\":18,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8db50721c776546303','',0,'','info',NULL,NULL),
(335,1734118837,1,2,18,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":18,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(336,1734118839,1,1,22,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":22}',4,0,'NEW675c8db734a2c421455369','',0,'','info',NULL,NULL),
(337,1734118839,1,1,19,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 7)\",\"table\":\"tx_news_domain_model_news\",\"uid\":19,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8db7324b6114850621','',0,'','info',NULL,NULL),
(338,1734118839,1,2,19,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":19,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(339,1734118841,1,1,23,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":23}',4,0,'NEW675c8db976fb9408382485','',0,'','info',NULL,NULL),
(340,1734118841,1,1,20,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 8)\",\"table\":\"tx_news_domain_model_news\",\"uid\":20,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8db97484c575818951','',0,'','info',NULL,NULL),
(341,1734118841,1,2,20,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":20,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(342,1734118843,1,1,24,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":24}',4,0,'NEW675c8dbb97678759371209','',0,'','info',NULL,NULL),
(343,1734118843,1,1,21,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 9)\",\"table\":\"tx_news_domain_model_news\",\"uid\":21,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8dbb9492a533475838','',0,'','info',NULL,NULL),
(344,1734118843,1,2,21,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":21,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(345,1734118845,1,1,25,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":25}',4,0,'NEW675c8dbdac830490000247','',0,'','info',NULL,NULL),
(346,1734118845,1,1,22,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 10)\",\"table\":\"tx_news_domain_model_news\",\"uid\":22,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8dbda9bfa427326542','',0,'','info',NULL,NULL),
(347,1734118845,1,2,22,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":22,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(348,1734118847,1,1,26,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":26}',4,0,'NEW675c8dbfd21a5697057618','',0,'','info',NULL,NULL),
(349,1734118847,1,1,23,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Test 1 (copy 11)\",\"table\":\"tx_news_domain_model_news\",\"uid\":23,\"pageTitle\":\"News\",\"pid\":4}',4,0,'NEW675c8dbfcf6b8430558583','',0,'','info',NULL,NULL),
(350,1734118847,1,2,23,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":23,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(351,1734118875,1,2,13,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":13,\"history\":\"145\"}',0,0,'','',0,'','info',NULL,NULL),
(352,1734118876,1,2,14,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":14,\"history\":\"146\"}',0,0,'','',0,'','info',NULL,NULL),
(353,1734118877,1,2,15,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":15,\"history\":\"147\"}',0,0,'','',0,'','info',NULL,NULL),
(354,1734118877,1,2,16,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":16,\"history\":\"148\"}',0,0,'','',0,'','info',NULL,NULL),
(355,1734118878,1,2,17,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":17,\"history\":\"149\"}',0,0,'','',0,'','info',NULL,NULL),
(356,1734118879,1,2,18,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":18,\"history\":\"150\"}',0,0,'','',0,'','info',NULL,NULL),
(357,1734118879,1,2,19,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":19,\"history\":\"151\"}',0,0,'','',0,'','info',NULL,NULL),
(358,1734118882,1,2,20,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":20,\"history\":\"152\"}',0,0,'','',0,'','info',NULL,NULL),
(359,1734118882,1,2,21,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":21,\"history\":\"153\"}',0,0,'','',0,'','info',NULL,NULL),
(360,1734118883,1,2,22,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":22,\"history\":\"154\"}',0,0,'','',0,'','info',NULL,NULL),
(361,1734118883,1,2,23,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tx_news_domain_model_news\",\"uid\":23,\"history\":\"155\"}',0,0,'','',0,'','info',NULL,NULL),
(362,1734118928,1,2,7,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":7,\"history\":\"156\"}',0,0,'','',0,'','info',NULL,NULL),
(363,1734118969,1,2,1,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"Qorem ipsum dolor sit \",\"table\":\"tx_news_domain_model_news\",\"uid\":1,\"history\":\"157\"}',0,0,'','',0,'','info',NULL,NULL),
(364,1734118969,1,2,15,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"N\\/A\",\"table\":\"sys_file_reference\",\"uid\":15,\"history\":\"158\"}',0,0,'','',0,'','info',NULL,NULL),
(365,1734118974,1,2,13,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"Qorem ipsum dolor sit \",\"table\":\"tx_news_domain_model_news\",\"uid\":13,\"history\":\"159\"}',0,0,'','',0,'','info',NULL,NULL),
(366,1734118974,1,2,16,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"N\\/A\",\"table\":\"sys_file_reference\",\"uid\":16,\"history\":\"160\"}',0,0,'','',0,'','info',NULL,NULL),
(367,1734118981,1,2,23,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"Qorem ipsum dolor sit \",\"table\":\"tx_news_domain_model_news\",\"uid\":23,\"history\":\"161\"}',0,0,'','',0,'','info',NULL,NULL),
(368,1734118981,1,2,26,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"N\\/A\",\"table\":\"sys_file_reference\",\"uid\":26,\"history\":\"162\"}',0,0,'','',0,'','info',NULL,NULL),
(369,1734118987,1,2,22,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"Qorem ipsum dolor sit \",\"table\":\"tx_news_domain_model_news\",\"uid\":22,\"history\":\"163\"}',0,0,'','',0,'','info',NULL,NULL),
(370,1734118987,1,2,25,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"N\\/A\",\"table\":\"sys_file_reference\",\"uid\":25,\"history\":\"164\"}',0,0,'','',0,'','info',NULL,NULL),
(371,1734118993,1,2,21,'tx_news_domain_model_news',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"Qorem ipsum dolor sit \",\"table\":\"tx_news_domain_model_news\",\"uid\":21,\"history\":\"165\"}',0,0,'','',0,'','info',NULL,NULL),
(372,1734118993,1,2,24,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"N\\/A\",\"table\":\"sys_file_reference\",\"uid\":24,\"history\":\"166\"}',0,0,'','',0,'','info',NULL,NULL),
(373,1734120286,1,1,27,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"241121_Lena_schilling_COP-1.png\",\"table\":\"sys_file_reference\",\"uid\":27,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675c935c5f90b267113130','',0,'','info',NULL,NULL),
(374,1734120286,1,2,5,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":5,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(375,1734120286,1,3,3,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":3,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(376,1734120296,1,1,28,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"241121_Lena_schilling_COP-1.png\",\"table\":\"sys_file_reference\",\"uid\":28,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675c93670e062722950224','',0,'','info',NULL,NULL),
(377,1734120296,1,2,6,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":6,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(378,1734120296,1,3,4,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"1024-1536.jpg\",\"table\":\"sys_file_reference\",\"uid\":4,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(379,1734134090,1,2,7,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":7,\"history\":\"171\"}',0,0,'','',0,'','info',NULL,NULL),
(380,1734138367,1,2,8,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vitae blandit lectus. Praesent at hendrerit.\",\"table\":\"tt_content\",\"uid\":8,\"history\":\"172\"}',0,0,'','',0,'','info',NULL,NULL),
(381,1734138450,1,2,9,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"lena.schilling@europarl.europa.eu\\r\\n+43 1231 3435\",\"table\":\"tt_content\",\"uid\":9,\"history\":\"173\"}',0,0,'','',0,'','info',NULL,NULL),
(382,1734193234,1,1,0,'',0,0,'User %s logged in from ###IP###',255,'user',1,'172.18.0.5','[\"admin\"]',-1,-99,'','',0,'','info',NULL,NULL),
(383,1734193236,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1678478902: Content block with the name \"cloonar/textimage\" is not registered. | OutOfBoundsException thrown in file /var/www/html/vendor/friendsoftypo3/content-blocks/Classes/Registry/ContentBlockRegistry.php in line 57. Requested URL: https://lena-schilling.ddev.site/typo3/module/web/layout?token=--AnonymizedToken--&id=1&',5,'php',0,'172.18.0.5','',-1,0,'','',0,'','error',NULL,NULL),
(384,1734193266,1,3,27,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"241121_Lena_schilling_COP-1.png\",\"table\":\"sys_file_reference\",\"uid\":27,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(385,1734193266,1,3,5,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"test\",\"table\":\"tt_content\",\"uid\":5,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(386,1734193266,1,3,28,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"241121_Lena_schilling_COP-1.png\",\"table\":\"sys_file_reference\",\"uid\":28,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(387,1734193266,1,3,6,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was deleted from page \"{pageTitle}\" ({pid})',1,'content',0,'172.18.0.5','{\"title\":\"test (copy 1)\",\"table\":\"tt_content\",\"uid\":6,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'','',0,'','info',NULL,NULL),
(388,1734193457,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(389,1734193546,1,1,11,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Projekt 01\",\"table\":\"tt_content\",\"uid\":11,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675db16707a6a536093939','',0,'','info',NULL,NULL),
(390,1734193546,1,1,29,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"241121_Lena_schilling_COP-1.png\",\"table\":\"sys_file_reference\",\"uid\":29,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675db18445908999617899','',0,'','info',NULL,NULL),
(391,1734193546,1,2,11,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":11,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(392,1734194797,1,1,30,'sys_file_reference',0,0,'New version created \"{table}:{uid}\". UID of new version is \"{offlineUid}\"',1,'content',10,'172.18.0.5','{\"table\":\"sys_file_reference\",\"uid\":0,\"offlineUid\":30}',1,0,'NEW675db66d18961518865953','',0,'','info',NULL,NULL),
(393,1734194797,1,1,12,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Projekt 01 (copy 1)\",\"table\":\"tt_content\",\"uid\":12,\"pageTitle\":\"example.com\",\"pid\":1}',1,0,'NEW675db66d16e48321569282','',0,'','info',NULL,NULL),
(394,1734194797,1,2,12,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":12,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(395,1734194797,1,2,12,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":12,\"history\":\"182\"}',0,0,'','',0,'','info',NULL,NULL),
(396,1734194805,1,2,12,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":12,\"history\":\"183\"}',0,0,'','',0,'','info',NULL,NULL),
(397,1734194805,1,2,30,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"N\\/A\",\"table\":\"sys_file_reference\",\"uid\":30,\"history\":\"184\"}',0,0,'','',0,'','info',NULL,NULL),
(398,1734194810,1,2,12,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":12,\"history\":\"185\"}',0,0,'','',0,'','info',NULL,NULL),
(399,1734196754,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(400,1734198165,1,2,0,'site',0,0,'Site configuration \'%s\' was updated.',6,'site',0,'172.18.0.5','[\"default\"]',-1,0,'','',0,'','info',NULL,NULL),
(401,1734198185,1,2,0,'site',0,0,'Site configuration \'%s\' was updated.',6,'site',0,'172.18.0.5','[\"default\"]',-1,0,'','',0,'','info',NULL,NULL),
(402,1734198195,1,2,0,'site',0,0,'Site configuration \'%s\' was updated.',6,'site',0,'172.18.0.5','[\"default\"]',-1,0,'','',0,'','info',NULL,NULL),
(403,1734198286,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(404,1734198322,1,2,11,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":11,\"history\":\"186\"}',0,0,'','',0,'','info',NULL,NULL),
(405,1734198322,1,2,29,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"N\\/A\",\"table\":\"sys_file_reference\",\"uid\":29,\"history\":\"187\"}',0,0,'','',0,'','info',NULL,NULL),
(406,1734198329,1,2,11,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":11,\"history\":\"188\"}',0,0,'','',0,'','info',NULL,NULL),
(407,1734198340,1,2,12,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":12,\"history\":\"189\"}',0,0,'','',0,'','info',NULL,NULL),
(408,1734198342,1,2,12,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":12,\"history\":\"190\"}',0,0,'','',0,'','info',NULL,NULL),
(409,1734198419,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"pages\"}',-1,0,'','',0,'','info',NULL,NULL),
(410,1734198421,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(411,1734209933,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(412,1734210154,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(413,1734210194,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(414,1734210250,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(415,1734210490,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(416,1734210892,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(417,1734211011,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(418,1734211091,1,1,0,'',0,0,'User {username} has cleared the cache (cacheCmd={command})',3,'default',0,'172.18.0.5','{\"username\":\"admin\",\"command\":\"all\"}',-1,0,'','',0,'','info',NULL,NULL),
(419,1734211098,1,2,11,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":11,\"history\":\"191\"}',0,0,'','',0,'','info',NULL,NULL),
(420,1734211105,1,2,12,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":12,\"history\":\"192\"}',0,0,'','',0,'','info',NULL,NULL),
(421,1734211140,1,1,13,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"Lena Schilling\",\"table\":\"tt_content\",\"uid\":13,\"pageTitle\":\"Team Lena\",\"pid\":6}',6,0,'NEW675df631cdf38674832048','',0,'','info',NULL,NULL),
(422,1734211140,1,1,31,'sys_file_reference',0,0,'Record \"{title}\" ({table}:{uid}) was inserted on page \"{pageTitle}\" ({pid})',1,'content',10,'172.18.0.5','{\"title\":\"bild-lena.png\",\"table\":\"sys_file_reference\",\"uid\":31,\"pageTitle\":\"Team Lena\",\"pid\":6}',6,0,'NEW675df642a54e0063062447','',0,'','info',NULL,NULL),
(423,1734211140,1,2,13,'tt_content',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"tt_content\",\"uid\":13,\"history\":0}',0,0,'','',0,'','info',NULL,NULL),
(424,1734212769,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1224485398: Fluid parse error in template Default_action_Default_2f07fe44cf40c416, line 54 at character 2. Error: Templating tags not properly nested. Expected: TYPO3Fluid\\Fluid\\ViewHelpers\\VariableViewHelper; Actual: TYPO3Fluid\\Fluid\\ViewHelpers\\SectionViewHelper (error code 1224485398). Template source chunk: </f:section> | TYPO3Fluid\\Fluid\\Core\\Parser\\Exception thrown in file /var/www/html/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php in line 124. Requested URL: https://lena-schilling.ddev.site/',5,'php',0,'172.18.0.5','',-1,0,'','',0,'','error',NULL,NULL),
(425,1734218228,1,2,11,'sys_file_metadata',0,0,'Record \"{title}\" ({table}:{uid}) was updated',1,'content',10,'172.18.0.5','{\"title\":\"[No title]\",\"table\":\"sys_file_metadata\",\"uid\":11,\"history\":\"195\"}',0,0,'','',0,'','info',NULL,NULL);
/*!40000 ALTER TABLE `sys_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_messenger_messages`
--
DROP TABLE IF EXISTS `sys_messenger_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_messenger_messages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`body` longtext NOT NULL,
`headers` longtext NOT NULL,
`queue_name` varchar(190) NOT NULL,
`created_at` datetime NOT NULL,
`available_at` datetime NOT NULL,
`delivered_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `queue_name` (`queue_name`),
KEY `available_at` (`available_at`),
KEY `delivered_at` (`delivered_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_messenger_messages`
--
LOCK TABLES `sys_messenger_messages` WRITE;
/*!40000 ALTER TABLE `sys_messenger_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_messenger_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_news`
--
DROP TABLE IF EXISTS `sys_news`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_news` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`content` longtext DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_news`
--
LOCK TABLES `sys_news` WRITE;
/*!40000 ALTER TABLE `sys_news` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_news` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_note`
--
DROP TABLE IF EXISTS `sys_note`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_note` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`cruser` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`sorting` int(11) NOT NULL DEFAULT 0,
`subject` varchar(255) NOT NULL DEFAULT '',
`message` longtext DEFAULT NULL,
`personal` smallint(5) unsigned NOT NULL DEFAULT 0,
`category` int(10) unsigned NOT NULL DEFAULT 0,
`position` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_note`
--
LOCK TABLES `sys_note` WRITE;
/*!40000 ALTER TABLE `sys_note` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_note` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_redirect`
--
DROP TABLE IF EXISTS `sys_redirect`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_redirect` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`updatedon` int(10) unsigned NOT NULL DEFAULT 0,
`createdon` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`disabled` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`source_host` varchar(255) NOT NULL DEFAULT '',
`source_path` text NOT NULL DEFAULT '',
`is_regexp` smallint(5) unsigned NOT NULL DEFAULT 0,
`protected` smallint(5) unsigned NOT NULL DEFAULT 0,
`force_https` smallint(5) unsigned NOT NULL DEFAULT 0,
`respect_query_parameters` smallint(5) unsigned NOT NULL DEFAULT 0,
`keep_query_parameters` smallint(5) unsigned NOT NULL DEFAULT 0,
`target` text NOT NULL DEFAULT '',
`target_statuscode` int(10) unsigned NOT NULL DEFAULT 0,
`hitcount` int(11) NOT NULL DEFAULT 0,
`lasthiton` bigint(20) NOT NULL DEFAULT 0,
`disable_hitcount` smallint(5) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`creation_type` int(10) unsigned NOT NULL DEFAULT 0,
`integrity_status` varchar(180) NOT NULL DEFAULT '',
PRIMARY KEY (`uid`),
KEY `index_source` (`source_host`(80),`source_path`(80)),
KEY `parent` (`pid`,`deleted`,`disabled`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_redirect`
--
LOCK TABLES `sys_redirect` WRITE;
/*!40000 ALTER TABLE `sys_redirect` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_redirect` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_refindex`
--
DROP TABLE IF EXISTS `sys_refindex`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_refindex` (
`hash` varchar(32) NOT NULL DEFAULT '',
`tablename` varchar(64) NOT NULL DEFAULT '',
`recuid` int(10) unsigned NOT NULL DEFAULT 0,
`field` varchar(64) NOT NULL DEFAULT '',
`flexpointer` varchar(255) NOT NULL DEFAULT '',
`softref_key` varchar(30) NOT NULL DEFAULT '',
`softref_id` varchar(40) NOT NULL DEFAULT '',
`sorting` int(11) NOT NULL DEFAULT 0,
`workspace` int(10) unsigned NOT NULL DEFAULT 0,
`ref_table` varchar(64) NOT NULL DEFAULT '',
`ref_uid` int(11) NOT NULL DEFAULT 0,
`ref_string` varchar(1024) NOT NULL DEFAULT '',
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 2147483647,
`t3ver_state` int(10) unsigned NOT NULL DEFAULT 0,
`ref_field` varchar(64) NOT NULL DEFAULT '',
`ref_hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`ref_starttime` int(10) unsigned NOT NULL DEFAULT 0,
`ref_endtime` int(10) unsigned NOT NULL DEFAULT 2147483647,
`ref_t3ver_state` int(10) unsigned NOT NULL DEFAULT 0,
`ref_sorting` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`hash`),
KEY `lookup_string` (`ref_string`(191)),
KEY `lookup_ref` (`ref_table`,`ref_uid`,`tablename`,`workspace`,`t3ver_state`,`hidden`,`starttime`,`endtime`),
KEY `lookup_rec` (`tablename`,`recuid`,`field`,`workspace`,`ref_t3ver_state`,`ref_hidden`,`ref_starttime`,`ref_endtime`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_refindex`
--
LOCK TABLES `sys_refindex` WRITE;
/*!40000 ALTER TABLE `sys_refindex` DISABLE KEYS */;
INSERT INTO `sys_refindex` VALUES
('02f8232d196e7cbf6f738af73b92e987','tt_content',9,'bodytext','','typolink_tag','3',0,0,'_STRING',0,'+4312313435',0,0,2147483647,0,'',0,0,2147483647,0,0),
('0328a56fa4b593d75999addf8b28b9a1','sys_file_reference',17,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('08e6e21fd343b2e6aed7e1ab710e2f8b','sys_file_reference',20,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('1891e5b68039b20ea9ed0acf765648c4','sys_file',11,'storage','','','',0,0,'sys_file_storage',1,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('19e3387f2c40e281e3df14eb88233ee9','sys_file_reference',18,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('1ab42020417acef1530669b4287fb1ea','sys_file_metadata',11,'file','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('1fc173a3d3bcb06df22fad8e96323b2d','sys_file_reference',31,'uid_local','','','',0,0,'sys_file',9,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('30ab95d866e9d3c7f79a84b230d08bdb','tt_content',7,'pi_flexform','additional/lDEF/settings.listPid/vDEF/','','',0,0,'pages',3,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('351af21a5d605531470525622a803eec','tt_content',3,'image','','','',0,0,'sys_file_reference',14,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('365005245d867befa8c16c77df955029','sys_file_reference',29,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('3f3e75f2d726e01740728b97f8f27131','sys_file_reference',24,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('46432552da6bcd20506b41882167118a','sys_file_reference',1,'uid_local','','','',0,0,'sys_file',6,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('46a2b61b37af50d08dc6d66ede075994','sys_file_reference',16,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('4d7dcdace6cb27641b74422d6731f40f','tx_news_domain_model_news',13,'fal_media','','','',0,0,'sys_file_reference',16,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('527874fee7490584012f832878e47e24','tx_news_domain_model_news',22,'fal_media','','','',0,0,'sys_file_reference',25,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('5915b0c6fece56a2a999d13fbb8ddeb4','tt_content',9,'bodytext','','email','2',0,0,'_STRING',0,'lena.schilling@europarl.europa.eu',0,0,2147483647,0,'',0,0,2147483647,0,0),
('5eabf5fd76d603ac826d76f818a28377','tt_content',7,'pi_flexform','additional/lDEF/settings.detailPid/vDEF/','','',0,0,'pages',3,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('6100a576ee02d956168ba4f696e434d8','sys_file_reference',19,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('68415bc9f64a77d7188eb0477ba96756','sys_file_reference',30,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('68cdfefea1ee122255fe2cf909e75612','tt_content',11,'image','','','',0,0,'sys_file_reference',29,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('779c97a45ecf9f51c9e4a1017baea86c','tx_news_domain_model_news',16,'fal_media','','','',0,0,'sys_file_reference',19,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('77c1b13d2222b2a264bf63ae39a484d0','sys_file',9,'storage','','','',0,0,'sys_file_storage',1,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('786e131be796ac4b5888c15f165f7546','sys_file',7,'storage','','','',0,0,'sys_file_storage',1,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('7f46e85b3b4130b7d04685a61e103cda','sys_file_reference',14,'uid_local','','','',0,0,'sys_file',9,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('8d2fb6b71ba4e89d181d687b1354b79c','tx_news_domain_model_news',17,'fal_media','','','',0,0,'sys_file_reference',20,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('a232e132e4b094bd95e63d40197d49b3','tt_content',12,'image','','','',0,0,'sys_file_reference',30,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('a23982375026548d88a2a054e7be0049','tx_news_domain_model_news',23,'fal_media','','','',0,0,'sys_file_reference',26,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('a2c623dd77390ec9f270bbc413154e5a','sys_file_reference',22,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('a35b086e78a540809f0c5dae2b42eef7','tx_news_domain_model_news',14,'fal_media','','','',0,0,'sys_file_reference',17,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('a3efd99ee5b6b54b34e495b1894e68de','sys_file_reference',26,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('a54683fdfb11af82d4bb8c47d06d52f3','tx_news_domain_model_news',20,'fal_media','','','',0,0,'sys_file_reference',23,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('a582688c76d55ad6678f56e1796cf966','tx_news_domain_model_news',1,'fal_media','','','',0,0,'sys_file_reference',15,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('ab455b62f449c55daf3bc37517cb0f9c','tt_content',13,'image','','','',0,0,'sys_file_reference',31,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('ac11f7ea5e45f8a38bb375a47fd2cf37','sys_file_reference',23,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('ae70fcb3155e060d13cb06a7d1703fc7','sys_file',11,'metadata','','','',0,0,'sys_file_metadata',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('c2a6217decf13310859a596af8e9464d','sys_file_reference',15,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('c4d60e1730f42a43fd3d1db8c0f1fe13','sys_file_reference',21,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('d30693e4a62b5f4b627bd4cbed5b3a5f','tt_content',7,'pi_flexform','sDEF/lDEF/settings.startingpoint/vDEF/','','',0,0,'pages',4,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('d70b683eeb2646243c0061255a5e558f','tx_news_domain_model_news',19,'fal_media','','','',0,0,'sys_file_reference',22,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('d860d9389667c92145871d401a40f562','sys_file',6,'metadata','','','',0,0,'sys_file_metadata',6,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('d9aaa204c569c96c370d7172eeda5125','tt_content',10,'pi_flexform','sDEF/lDEF/settings.startingpoint/vDEF/','','',0,0,'pages',4,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('e25ef12f688408e3f782c693d47b5dde','tx_news_domain_model_news',15,'fal_media','','','',0,0,'sys_file_reference',18,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('e3dafb3fbdf7fc3b90ffd6dc4269877a','tt_content',9,'bodytext','','typolink_tag','1',0,0,'_STRING',0,'lena.schilling@europarl.europa.eu',0,0,2147483647,0,'',0,0,2147483647,0,0),
('e5aff1f5665219b8eef431e03c69dcaf','tx_news_domain_model_news',21,'fal_media','','','',0,0,'sys_file_reference',24,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('f1f7734e04b22a44c73ea180eb270106','tx_news_domain_model_news',18,'fal_media','','','',0,0,'sys_file_reference',21,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('f65a0036c032c205fbec731c7f9abb9d','sys_file',6,'storage','','','',0,0,'sys_file_storage',1,'',0,0,2147483647,0,'',0,0,2147483647,0,0),
('ff1dda61ddaf4dffa5c8b1b76ebd773d','sys_file_reference',25,'uid_local','','','',0,0,'sys_file',11,'',0,0,2147483647,0,'',0,0,2147483647,0,0);
/*!40000 ALTER TABLE `sys_refindex` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_registry`
--
DROP TABLE IF EXISTS `sys_registry`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_registry` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`entry_namespace` varchar(128) NOT NULL DEFAULT '',
`entry_key` varchar(128) NOT NULL DEFAULT '',
`entry_value` mediumblob DEFAULT NULL,
PRIMARY KEY (`uid`),
UNIQUE KEY `entry_identifier` (`entry_namespace`,`entry_key`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_registry`
--
LOCK TABLES `sys_registry` WRITE;
/*!40000 ALTER TABLE `sys_registry` DISABLE KEYS */;
INSERT INTO `sys_registry` VALUES
(3,'installUpdateRows','rowUpdatersDone','a:1:{i:0;s:69:\"TYPO3\\CMS\\Install\\Updates\\RowUpdater\\SysRedirectRootPageMoveMigration\";}'),
(4,'core','formProtectionSessionToken:1','s:64:\"18498b34e66f137e9bb6cbc4422f84a7dc21fc08664e2b5ddf89c06896333b0b\";'),
(5,'extensionDataImport','cloonar-typo3/base/ext_tables_static+adt.sql','s:0:\"\";');
/*!40000 ALTER TABLE `sys_registry` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_template`
--
DROP TABLE IF EXISTS `sys_template`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_template` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`sorting` int(11) NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`title` varchar(255) NOT NULL DEFAULT '',
`root` smallint(5) unsigned NOT NULL DEFAULT 0,
`clear` smallint(5) unsigned NOT NULL DEFAULT 0,
`include_static_file` longtext DEFAULT NULL,
`constants` longtext DEFAULT NULL,
`config` longtext DEFAULT NULL,
`basedOn` longtext DEFAULT NULL,
`includeStaticAfterBasedOn` smallint(5) unsigned NOT NULL DEFAULT 0,
`static_file_mode` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `roottemplate` (`deleted`,`hidden`,`root`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_template`
--
LOCK TABLES `sys_template` WRITE;
/*!40000 ALTER TABLE `sys_template` DISABLE KEYS */;
INSERT INTO `sys_template` VALUES
(1,1,1733951120,1676911335,1,0,0,0,256,NULL,'example.com',1,3,'EXT:fluid_styled_content/Configuration/TypoScript/,EXT:lena_schilling_design/Configuration/TypoScript',NULL,'','',0,0);
/*!40000 ALTER TABLE `sys_template` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tt_content`
--
DROP TABLE IF EXISTS `tt_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tt_content` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`rowDescription` text DEFAULT NULL,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`fe_group` varchar(255) NOT NULL DEFAULT '0',
`sorting` int(11) NOT NULL DEFAULT 0,
`editlock` smallint(5) unsigned NOT NULL DEFAULT 0,
`sys_language_uid` int(11) NOT NULL DEFAULT 0,
`l18n_parent` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_source` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_state` text DEFAULT NULL,
`l18n_diffsource` mediumblob DEFAULT NULL,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`CType` varchar(255) NOT NULL DEFAULT '',
`header` varchar(255) NOT NULL DEFAULT '',
`header_position` varchar(255) NOT NULL DEFAULT '',
`bodytext` longtext DEFAULT NULL,
`bullets_type` int(10) unsigned NOT NULL DEFAULT 0,
`uploads_description` smallint(5) unsigned NOT NULL DEFAULT 0,
`uploads_type` int(10) unsigned NOT NULL DEFAULT 0,
`assets` int(10) unsigned NOT NULL DEFAULT 0,
`image` int(10) unsigned NOT NULL DEFAULT 0,
`imagewidth` int(10) unsigned NOT NULL DEFAULT 0,
`imageorient` int(10) unsigned NOT NULL DEFAULT 0,
`imagecols` int(10) unsigned NOT NULL DEFAULT 0,
`imageborder` smallint(5) unsigned NOT NULL DEFAULT 0,
`media` int(10) unsigned NOT NULL DEFAULT 0,
`layout` int(10) unsigned NOT NULL DEFAULT 0,
`frame_class` varchar(60) NOT NULL DEFAULT 'default',
`cols` int(10) unsigned NOT NULL DEFAULT 0,
`space_before_class` varchar(60) NOT NULL DEFAULT '',
`space_after_class` varchar(60) NOT NULL DEFAULT '',
`records` longtext DEFAULT NULL,
`pages` longtext DEFAULT NULL,
`colPos` int(10) unsigned NOT NULL DEFAULT 0,
`subheader` varchar(255) NOT NULL DEFAULT '',
`header_link` text NOT NULL DEFAULT '',
`image_zoom` smallint(5) unsigned NOT NULL DEFAULT 0,
`header_layout` int(10) unsigned NOT NULL DEFAULT 0,
`list_type` varchar(255) NOT NULL DEFAULT '',
`sectionIndex` smallint(5) unsigned NOT NULL DEFAULT 1,
`linkToTop` smallint(5) unsigned NOT NULL DEFAULT 0,
`file_collections` longtext DEFAULT NULL,
`filelink_size` smallint(5) unsigned NOT NULL DEFAULT 0,
`filelink_sorting` varchar(64) NOT NULL DEFAULT '',
`filelink_sorting_direction` varchar(4) NOT NULL DEFAULT '',
`target` varchar(30) NOT NULL DEFAULT '',
`date` bigint(20) NOT NULL DEFAULT 0,
`recursive` int(10) unsigned NOT NULL DEFAULT 0,
`imageheight` int(10) unsigned NOT NULL DEFAULT 0,
`pi_flexform` longtext DEFAULT NULL,
`category_field` varchar(64) NOT NULL DEFAULT '',
`table_class` varchar(60) NOT NULL DEFAULT '',
`table_caption` varchar(255) DEFAULT NULL,
`table_delimiter` int(10) unsigned NOT NULL DEFAULT 0,
`table_enclosure` int(10) unsigned NOT NULL DEFAULT 0,
`table_header_position` int(10) unsigned NOT NULL DEFAULT 0,
`table_tfoot` smallint(5) unsigned NOT NULL DEFAULT 0,
`categories` int(10) unsigned NOT NULL DEFAULT 0,
`selected_categories` longtext DEFAULT NULL,
`tx_news_related_news` int(11) NOT NULL DEFAULT 0,
`imagesize` varchar(255) DEFAULT '',
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`sorting`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`),
KEY `language` (`l18n_parent`,`sys_language_uid`),
KEY `translation_source` (`l10n_source`),
KEY `index_newscontent` (`tx_news_related_news`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tt_content`
--
LOCK TABLES `tt_content` WRITE;
/*!40000 ALTER TABLE `tt_content` DISABLE KEYS */;
INSERT INTO `tt_content` VALUES
(1,'',1,1733931942,1733736781,1,0,0,0,'',256,0,0,0,0,NULL,'{\"hidden\":\"\"}',0,0,0,0,'textcolumn','Test','','<p><span class=\"h1\">30k</span><br />Test</p>\r\n<p><span class=\"h1\">30k</span><br />Test</p>\r\n<p><span class=\"h1\">30k</span><br />Test</p>\r\n<p><span class=\"h1\">30k</span><br />Test</p>',0,0,0,0,0,0,0,1,0,0,0,'default',0,'','',NULL,NULL,0,'','',0,0,'',1,0,NULL,0,'','','',0,0,0,NULL,'','',NULL,124,0,0,0,0,NULL,0,''),
(2,'',1,1734046852,1733950701,1,0,0,0,'',256,0,0,0,0,NULL,'',0,0,0,0,'text','test','','<p>test</p>',0,0,0,0,0,0,0,2,0,0,0,'default',0,'','',NULL,NULL,0,'','',0,0,'',1,0,NULL,0,'','','',0,0,0,NULL,'','',NULL,124,0,0,0,0,NULL,0,''),
(3,'',1,1734116617,1733967793,0,0,0,0,'',512,0,0,0,0,NULL,'{\"CType\":\"\",\"colPos\":\"\",\"subheader\":\"\",\"header\":\"\",\"bodytext\":\"\",\"image\":\"\",\"imageorient\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"rowDescription\":\"\"}',0,0,0,0,'cloonar_hero','Lena Schilling','','<h4>About me</h4>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipis cing elit. Donec porttitor sed mi a accumsan. Vestibulum dictum congue tellus at mollis. Nunc quam quam, sagittis ac feugiat eu, venenatis seas. &nbsp;Sed lobortis lectus ut augue.</p>',0,0,0,0,1,0,26,2,0,0,0,'default',0,'','',NULL,NULL,0,'Hallo, ich bin','',0,0,'',1,0,NULL,0,'','','',0,0,0,NULL,'','',NULL,124,0,0,0,0,NULL,0,''),
(4,'',1,1734116042,1734038755,0,0,0,0,'',768,0,0,0,0,NULL,'{\"CType\":\"\",\"colPos\":\"\",\"bodytext\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"rowDescription\":\"\"}',0,0,0,0,'cloonar_stats','','','<p><span class=\"big-number\">10</span><br />was</p>\r\n<p><span class=\"big-number\">20</span><br />soll</p>\r\n<p><span class=\"big-number\">30</span><br />das</p>\r\n<p><span class=\"big-number\">40</span><br />sein</p>',0,0,0,0,0,0,0,2,0,0,0,'default',0,'','',NULL,NULL,0,'','',0,0,'',1,0,NULL,0,'','','',0,0,0,NULL,'','',NULL,124,0,0,0,0,NULL,0,''),
(5,'',1,1734193266,1734044772,1,0,0,0,'',1024,0,0,0,0,NULL,'{\"CType\":\"\",\"colPos\":\"\",\"header\":\"\",\"bodytext\":\"\",\"image\":\"\",\"imageorient\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"rowDescription\":\"\"}',0,0,0,0,'cloonar_textimage','test','','<p>test</p>',0,0,0,0,1,0,25,2,0,0,0,'default',0,'','',NULL,NULL,0,'','',0,0,'',1,0,NULL,0,'','','',0,0,0,NULL,'','',NULL,124,0,0,0,0,NULL,0,''),
(6,'',1,1734193266,1734045432,1,0,0,0,'',1280,0,0,0,0,NULL,'{\"CType\":\"\",\"colPos\":\"\",\"header\":\"\",\"bodytext\":\"\",\"image\":\"\",\"imageorient\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"rowDescription\":\"\"}',0,0,0,0,'cloonar_textimage','test (copy 1)','','<p>test</p>',0,0,0,0,1,0,26,2,0,0,0,'default',0,'','','','',0,'','',0,0,'',1,0,'',0,'','','',0,0,0,NULL,'','',NULL,124,0,0,0,0,'0',0,''),
(7,'',1,1734134090,1734046495,0,0,0,0,'',896,0,0,0,0,NULL,'{\"CType\":\"\",\"colPos\":\"\",\"header\":\"\",\"header_layout\":\"\",\"header_position\":\"\",\"date\":\"\",\"header_link\":\"\",\"subheader\":\"\",\"pi_flexform\":\"\",\"layout\":\"\",\"frame_class\":\"\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"sectionIndex\":\"\",\"linkToTop\":\"\",\"categories\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"rowDescription\":\"\"}',0,0,0,0,'news_newsliststicky','Aktuelles','',NULL,0,0,0,0,0,0,0,2,0,0,0,'default',0,'','',NULL,NULL,0,'','',0,0,'',1,0,NULL,0,'','','',0,0,0,'<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>\n<T3FlexForms>\n <data>\n <sheet index=\"sDEF\">\n <language index=\"lDEF\">\n <field index=\"settings.orderBy\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.orderDirection\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.dateField\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.categoryConjunction\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.categories\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.includeSubCategories\">\n <value index=\"vDEF\">0</value>\n </field>\n <field index=\"settings.archiveRestriction\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.timeRestriction\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.timeRestrictionHigh\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.topNewsRestriction\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.previewHiddenRecords\">\n <value index=\"vDEF\">2</value>\n </field>\n <field index=\"settings.startingpoint\">\n <value index=\"vDEF\">4</value>\n </field>\n <field index=\"settings.recursive\">\n <value index=\"vDEF\"></value>\n </field>\n </language>\n </sheet>\n <sheet index=\"additional\">\n <language index=\"lDEF\">\n <field index=\"settings.detailPid\">\n <value index=\"vDEF\">3</value>\n </field>\n <field index=\"settings.listPid\">\n <value index=\"vDEF\">3</value>\n </field>\n <field index=\"settings.backPid\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.limit\">\n <value index=\"vDEF\">3</value>\n </field>\n <field index=\"settings.offset\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.tags\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.hidePagination\">\n <value index=\"vDEF\">1</value>\n </field>\n <field index=\"settings.list.paginate.itemsPerPage\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.topNewsFirst\">\n <value index=\"vDEF\">0</value>\n </field>\n <field index=\"settings.excludeAlreadyDisplayedNews\">\n <value index=\"vDEF\">0</value>\n </field>\n <field index=\"settings.disableOverrideDemand\">\n <value index=\"vDEF\">1</value>\n </field>\n </language>\n </sheet>\n <sheet index=\"template\">\n <language index=\"lDEF\">\n <field index=\"settings.media.maxWidth\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.media.maxHeight\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.cropMaxCharacters\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.templateLayout\">\n <value index=\"vDEF\"></value>\n </field>\n </language>\n </sheet>\n </data>\n</T3FlexForms>','','',NULL,124,0,0,0,0,NULL,0,''),
(8,'',1,1734138367,1734048317,0,0,0,0,'',256,0,0,0,0,NULL,'{\"CType\":\"\",\"colPos\":\"\",\"header\":\"\",\"header_layout\":\"\",\"header_position\":\"\",\"date\":\"\",\"header_link\":\"\",\"subheader\":\"\",\"bodytext\":\"\",\"layout\":\"\",\"frame_class\":\"\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"sectionIndex\":\"\",\"linkToTop\":\"\",\"categories\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"rowDescription\":\"\"}',0,0,0,0,'text','','','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vitae blandit lectus. Praesent at hendrerit.</p>',0,0,0,0,0,0,0,2,0,0,0,'default',0,'','',NULL,NULL,90,'','',0,0,'',1,0,NULL,0,'','','',0,0,0,NULL,'','',NULL,124,0,0,0,0,NULL,0,''),
(9,'',1,1734138450,1734048328,0,0,0,0,'',128,0,0,0,0,NULL,'{\"CType\":\"\",\"colPos\":\"\",\"header\":\"\",\"header_layout\":\"\",\"header_position\":\"\",\"date\":\"\",\"header_link\":\"\",\"subheader\":\"\",\"bodytext\":\"\",\"layout\":\"\",\"frame_class\":\"\",\"space_before_class\":\"\",\"space_after_class\":\"\",\"sectionIndex\":\"\",\"linkToTop\":\"\",\"categories\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"rowDescription\":\"\"}',0,0,0,0,'text','','','<p><a href=\"mailto:lena.schilling@europarl.europa.eu\">lena.schilling@europarl.europa.eu</a></p>\r\n<p><a href=\"tel:+4312313435\">+43 1231 3435</a></p>',0,0,0,0,0,0,0,2,0,0,0,'default',0,'','',NULL,NULL,91,'','',0,0,'',1,0,NULL,0,'','','',0,0,0,NULL,'','',NULL,124,0,0,0,0,NULL,0,''),
(10,'',3,1734050591,1734050591,0,0,0,0,'',256,0,0,0,0,NULL,'',0,0,0,0,'news_pi1','','',NULL,0,0,0,0,0,0,0,2,0,0,0,'default',0,'','',NULL,NULL,0,'','',0,0,'',1,0,NULL,0,'','','',0,0,0,'<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>\n<T3FlexForms>\n <data>\n <sheet index=\"sDEF\">\n <language index=\"lDEF\">\n <field index=\"settings.orderBy\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.orderDirection\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.dateField\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.categoryConjunction\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.categories\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.includeSubCategories\">\n <value index=\"vDEF\">0</value>\n </field>\n <field index=\"settings.archiveRestriction\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.timeRestriction\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.timeRestrictionHigh\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.topNewsRestriction\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.previewHiddenRecords\">\n <value index=\"vDEF\">2</value>\n </field>\n <field index=\"settings.startingpoint\">\n <value index=\"vDEF\">4</value>\n </field>\n <field index=\"settings.recursive\">\n <value index=\"vDEF\"></value>\n </field>\n </language>\n </sheet>\n <sheet index=\"additional\">\n <language index=\"lDEF\">\n <field index=\"settings.detailPid\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.listPid\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.backPid\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.limit\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.offset\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.tags\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.hidePagination\">\n <value index=\"vDEF\">0</value>\n </field>\n <field index=\"settings.list.paginate.itemsPerPage\">\n <value index=\"vDEF\">7</value>\n </field>\n <field index=\"settings.topNewsFirst\">\n <value index=\"vDEF\">0</value>\n </field>\n <field index=\"settings.excludeAlreadyDisplayedNews\">\n <value index=\"vDEF\">0</value>\n </field>\n <field index=\"settings.disableOverrideDemand\">\n <value index=\"vDEF\">1</value>\n </field>\n </language>\n </sheet>\n <sheet index=\"template\">\n <language index=\"lDEF\">\n <field index=\"settings.media.maxWidth\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.media.maxHeight\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.cropMaxCharacters\">\n <value index=\"vDEF\"></value>\n </field>\n <field index=\"settings.templateLayout\">\n <value index=\"vDEF\"></value>\n </field>\n </language>\n </sheet>\n </data>\n</T3FlexForms>','','',NULL,124,0,0,0,0,NULL,0,''),
(11,'',1,1734211098,1734193546,0,0,0,0,'',1152,0,0,0,0,NULL,'{\"CType\":\"\",\"colPos\":\"\",\"header\":\"\",\"subheader\":\"\",\"bodytext\":\"\",\"image\":\"\",\"imageorient\":\"\",\"imagesize\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"rowDescription\":\"\"}',0,0,0,0,'cloonar_textimage','Projekt 01','','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Viverra in malesuada id consectetur morbi placerat amet sed orci. Non mauris nisi elementum et. Nisi id erat proin leo et. Phasellus augue justo, a rutrum gravida proin duis fringilla dictum. Risus, magna orci feugiat urna condimentum vulputate sed sit dui. Tristique felis, pretium elit quisque non nec, rutrum massa. Accumsan, diam</p>',0,0,0,0,1,0,26,1,0,0,0,'default',0,'','',NULL,NULL,0,'Yorem ipsum dolor sit amet!','',0,0,'',1,0,NULL,0,'','','',0,0,0,NULL,'','',NULL,124,0,0,0,0,NULL,0,'2'),
(12,'',1,1734211105,1734194797,0,0,0,0,'',1408,0,0,0,0,NULL,'{\"CType\":\"\",\"colPos\":\"\",\"header\":\"\",\"subheader\":\"\",\"bodytext\":\"\",\"image\":\"\",\"imageorient\":\"\",\"imagesize\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"rowDescription\":\"\"}',0,0,0,0,'cloonar_textimage','Projekt 01 (copy 1)','','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Viverra in malesuada id consectetur morbi placerat amet sed orci. Non mauris nisi elementum et. Nisi id erat proin leo et. Phasellus augue justo, a rutrum gravida proin duis fringilla dictum. Risus, magna orci feugiat urna condimentum vulputate sed sit dui. Tristique felis, pretium elit quisque non nec, rutrum massa. Accumsan, diam</p>',0,0,0,0,1,0,25,1,0,0,0,'default',0,'','','','',0,'Yorem ipsum dolor sit amet!','',0,0,'',1,0,'',0,'','','',0,0,0,NULL,'','',NULL,124,0,0,0,0,'0',0,'2'),
(13,'',6,1734211140,1734211140,0,0,0,0,'',256,0,0,0,0,NULL,'',0,0,0,0,'cloonar_textimage','Lena Schilling','','<p>Test</p>',0,0,0,0,1,0,25,2,0,0,0,'default',0,'','',NULL,NULL,0,'','',0,0,'',1,0,NULL,0,'','','',0,0,0,NULL,'','',NULL,124,0,0,0,0,NULL,0,'1');
/*!40000 ALTER TABLE `tt_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tx_extensionmanager_domain_model_extension`
--
DROP TABLE IF EXISTS `tx_extensionmanager_domain_model_extension`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tx_extensionmanager_domain_model_extension` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`extension_key` varchar(60) NOT NULL DEFAULT '',
`remote` varchar(100) NOT NULL DEFAULT 'ter',
`version` varchar(15) NOT NULL DEFAULT '',
`alldownloadcounter` int(10) unsigned NOT NULL DEFAULT 0,
`downloadcounter` int(10) unsigned NOT NULL DEFAULT 0,
`title` varchar(150) NOT NULL DEFAULT '',
`description` longtext DEFAULT NULL,
`state` int(10) unsigned NOT NULL DEFAULT 0,
`review_state` int(11) NOT NULL DEFAULT 0,
`category` int(10) unsigned NOT NULL DEFAULT 0,
`last_updated` bigint(20) NOT NULL DEFAULT 0,
`serialized_dependencies` mediumtext DEFAULT NULL,
`author_name` varchar(255) NOT NULL DEFAULT '',
`author_email` varchar(255) NOT NULL DEFAULT '',
`ownerusername` varchar(50) NOT NULL DEFAULT '',
`md5hash` varchar(35) NOT NULL DEFAULT '',
`update_comment` longtext DEFAULT NULL,
`authorcompany` varchar(255) NOT NULL DEFAULT '',
`integer_version` int(11) NOT NULL DEFAULT 0,
`current_version` smallint(5) unsigned NOT NULL DEFAULT 0,
`lastreviewedversion` int(11) NOT NULL DEFAULT 0,
`documentation_link` varchar(2048) DEFAULT NULL,
`distribution_image` varchar(255) DEFAULT NULL,
`distribution_welcome_image` varchar(255) DEFAULT NULL,
PRIMARY KEY (`uid`),
UNIQUE KEY `versionextrepo` (`extension_key`,`version`,`remote`),
KEY `index_extrepo` (`extension_key`,`remote`),
KEY `index_versionrepo` (`integer_version`,`remote`,`extension_key`),
KEY `index_currentversions` (`current_version`,`review_state`),
KEY `parent` (`pid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tx_extensionmanager_domain_model_extension`
--
LOCK TABLES `tx_extensionmanager_domain_model_extension` WRITE;
/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_extension` DISABLE KEYS */;
/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_extension` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tx_news_domain_model_link`
--
DROP TABLE IF EXISTS `tx_news_domain_model_link`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tx_news_domain_model_link` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`sys_language_uid` int(11) NOT NULL DEFAULT 0,
`l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_diffsource` mediumblob DEFAULT NULL,
`l10n_source` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3_origuid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`sorting` int(11) NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`l10n_state` text DEFAULT NULL,
`parent` int(11) NOT NULL DEFAULT 0,
`title` tinytext DEFAULT NULL,
`uri` text DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`),
KEY `translation_source` (`l10n_source`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tx_news_domain_model_link`
--
LOCK TABLES `tx_news_domain_model_link` WRITE;
/*!40000 ALTER TABLE `tx_news_domain_model_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `tx_news_domain_model_link` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tx_news_domain_model_news`
--
DROP TABLE IF EXISTS `tx_news_domain_model_news`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tx_news_domain_model_news` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`t3_origuid` int(10) unsigned NOT NULL DEFAULT 0,
`editlock` smallint(5) unsigned NOT NULL DEFAULT 0,
`sys_language_uid` int(11) NOT NULL DEFAULT 0,
`l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_diffsource` mediumblob DEFAULT NULL,
`l10n_source` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`fe_group` varchar(255) NOT NULL DEFAULT '0',
`notes` text DEFAULT NULL,
`l10n_state` text DEFAULT NULL,
`sorting` int(11) NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`teaser` text DEFAULT NULL,
`bodytext` mediumtext DEFAULT NULL,
`datetime` bigint(20) NOT NULL DEFAULT 0,
`archive` bigint(20) NOT NULL DEFAULT 0,
`author` tinytext DEFAULT NULL,
`author_email` tinytext DEFAULT NULL,
`categories` int(11) NOT NULL DEFAULT 0,
`related` int(11) NOT NULL DEFAULT 0,
`related_from` int(11) NOT NULL DEFAULT 0,
`related_files` tinytext DEFAULT NULL,
`fal_related_files` int(10) unsigned DEFAULT 0,
`related_links` int(11) NOT NULL DEFAULT 0,
`type` varchar(100) NOT NULL DEFAULT '0',
`keywords` text DEFAULT NULL,
`description` text DEFAULT NULL,
`tags` int(11) NOT NULL DEFAULT 0,
`media` text DEFAULT NULL,
`fal_media` int(10) unsigned DEFAULT 0,
`internalurl` text DEFAULT NULL,
`externalurl` text DEFAULT NULL,
`istopnews` int(11) NOT NULL DEFAULT 0,
`content_elements` int(11) NOT NULL DEFAULT 0,
`path_segment` varchar(2048) DEFAULT NULL,
`alternative_title` tinytext DEFAULT NULL,
`sitemap_changefreq` varchar(10) NOT NULL DEFAULT '',
`sitemap_priority` decimal(2,1) NOT NULL DEFAULT 0.5,
`import_id` varchar(100) NOT NULL DEFAULT '',
`import_source` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`uid`),
KEY `path_segment` (`path_segment`(185),`uid`),
KEY `import` (`import_id`,`import_source`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`),
KEY `translation_source` (`l10n_source`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tx_news_domain_model_news`
--
LOCK TABLES `tx_news_domain_model_news` WRITE;
/*!40000 ALTER TABLE `tx_news_domain_model_news` DISABLE KEYS */;
INSERT INTO `tx_news_domain_model_news` VALUES
(1,4,1734118969,1734046403,0,0,0,0,0,0,0,0,'{\"type\":\"\",\"istopnews\":\"\",\"title\":\"\",\"path_segment\":\"\",\"teaser\":\"\",\"datetime\":\"\",\"archive\":\"\",\"bodytext\":\"\",\"content_elements\":\"\",\"fal_media\":\"\",\"fal_related_files\":\"\",\"categories\":\"\",\"related\":\"\",\"related_links\":\"\",\"tags\":\"\",\"author\":\"\",\"author_email\":\"\",\"keywords\":\"\",\"description\":\"\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"sitemap_priority\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"notes\":\"\"}',0,0,0,0,0,'','',NULL,0,'Qorem ipsum dolor sit ','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1','','',0.5,'',''),
(2,4,1734046422,1734046411,0,0,0,0,1,0,0,0,'',0,1,1,0,0,'','',NULL,0,'Test 1 (copy 1)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,0,NULL,NULL,0,0,'test-1-1','','',0.5,'',''),
(3,4,1734046421,1734046413,0,0,0,0,1,0,0,0,'',0,1,1,0,0,'','',NULL,0,'Test 1 (copy 2)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,0,NULL,NULL,0,0,'test-1-2','','',0.5,'',''),
(4,4,1734046420,1734046415,0,0,0,0,1,0,0,0,'',0,1,1,0,0,'','',NULL,0,'Test 1 (copy 3)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,0,NULL,NULL,0,0,'test-1-3','','',0.5,'',''),
(5,4,1734118806,1734046445,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,1,0,0,0,'','',NULL,0,'Test 1 (copy 1)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-1','','',0.5,'',''),
(6,4,1734118808,1734046447,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,1,0,0,0,'','',NULL,0,'Test 1 (copy 2)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-2','','',0.5,'',''),
(7,4,1734118814,1734046449,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,1,0,0,0,'','',NULL,0,'Test 1 (copy 3)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-3','','',0.5,'',''),
(8,4,1734118814,1734046451,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,1,0,0,0,'','',NULL,0,'Test 1 (copy 4)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-4','','',0.5,'',''),
(9,4,1734118814,1734050640,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,1,0,0,0,'','',NULL,0,'Test 1 (copy 5)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-5','','',0.5,'',''),
(10,4,1734118814,1734050642,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,1,0,0,0,'','',NULL,0,'Test 1 (copy 6)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-6','','',0.5,'',''),
(11,4,1734118814,1734050644,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,1,0,0,0,'','',NULL,0,'Test 1 (copy 7)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-7','','',0.5,'',''),
(12,4,1734118814,1734050646,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,1,0,0,0,'','',NULL,0,'Test 1 (copy 8)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-8','','',0.5,'',''),
(13,4,1734118974,1734118826,0,0,0,0,1,0,0,0,'{\"type\":\"\",\"istopnews\":\"\",\"title\":\"\",\"path_segment\":\"\",\"teaser\":\"\",\"datetime\":\"\",\"archive\":\"\",\"bodytext\":\"\",\"content_elements\":\"\",\"fal_media\":\"\",\"fal_related_files\":\"\",\"categories\":\"\",\"related\":\"\",\"related_links\":\"\",\"tags\":\"\",\"author\":\"\",\"author_email\":\"\",\"keywords\":\"\",\"description\":\"\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"sitemap_priority\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"notes\":\"\"}',0,0,0,0,0,'','',NULL,0,'Qorem ipsum dolor sit ','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-1','','',0.5,'',''),
(14,4,1734118876,1734118828,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,0,0,0,0,'','',NULL,0,'Test 1 (copy 2)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-2','','',0.5,'',''),
(15,4,1734118877,1734118830,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,0,0,0,0,'','',NULL,0,'Test 1 (copy 3)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-3','','',0.5,'',''),
(16,4,1734118877,1734118832,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,0,0,0,0,'','',NULL,0,'Test 1 (copy 4)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-4','','',0.5,'',''),
(17,4,1734118878,1734118834,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,0,0,0,0,'','',NULL,0,'Test 1 (copy 5)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-5','','',0.5,'',''),
(18,4,1734118879,1734118837,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,0,0,0,0,'','',NULL,0,'Test 1 (copy 6)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-6','','',0.5,'',''),
(19,4,1734118879,1734118839,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,0,0,0,0,'','',NULL,0,'Test 1 (copy 7)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-7','','',0.5,'',''),
(20,4,1734118882,1734118841,0,0,0,0,1,0,0,0,'{\"hidden\":\"\"}',0,0,0,0,0,'','',NULL,0,'Test 1 (copy 8)','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-8','','',0.5,'',''),
(21,4,1734118993,1734118843,0,0,0,0,1,0,0,0,'{\"type\":\"\",\"istopnews\":\"\",\"title\":\"\",\"path_segment\":\"\",\"teaser\":\"\",\"datetime\":\"\",\"archive\":\"\",\"bodytext\":\"\",\"content_elements\":\"\",\"fal_media\":\"\",\"fal_related_files\":\"\",\"categories\":\"\",\"related\":\"\",\"related_links\":\"\",\"tags\":\"\",\"author\":\"\",\"author_email\":\"\",\"keywords\":\"\",\"description\":\"\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"sitemap_priority\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"notes\":\"\"}',0,0,0,0,0,'','',NULL,0,'Qorem ipsum dolor sit ','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-9','','',0.5,'',''),
(22,4,1734118987,1734118845,0,0,0,0,1,0,0,0,'{\"type\":\"\",\"istopnews\":\"\",\"title\":\"\",\"path_segment\":\"\",\"teaser\":\"\",\"datetime\":\"\",\"archive\":\"\",\"bodytext\":\"\",\"content_elements\":\"\",\"fal_media\":\"\",\"fal_related_files\":\"\",\"categories\":\"\",\"related\":\"\",\"related_links\":\"\",\"tags\":\"\",\"author\":\"\",\"author_email\":\"\",\"keywords\":\"\",\"description\":\"\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"sitemap_priority\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"notes\":\"\"}',0,0,0,0,0,'','',NULL,0,'Qorem ipsum dolor sit ','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-10','','',0.5,'',''),
(23,4,1734118981,1734118847,0,0,0,0,1,0,0,0,'{\"type\":\"\",\"istopnews\":\"\",\"title\":\"\",\"path_segment\":\"\",\"teaser\":\"\",\"datetime\":\"\",\"archive\":\"\",\"bodytext\":\"\",\"content_elements\":\"\",\"fal_media\":\"\",\"fal_related_files\":\"\",\"categories\":\"\",\"related\":\"\",\"related_links\":\"\",\"tags\":\"\",\"author\":\"\",\"author_email\":\"\",\"keywords\":\"\",\"description\":\"\",\"alternative_title\":\"\",\"sitemap_changefreq\":\"\",\"sitemap_priority\":\"\",\"sys_language_uid\":\"\",\"hidden\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"fe_group\":\"\",\"editlock\":\"\",\"notes\":\"\"}',0,0,0,0,0,'','',NULL,0,'Qorem ipsum dolor sit ','test','<p>test</p>',1734046393,0,'','',0,0,0,NULL,0,0,'0','','',0,NULL,1,NULL,NULL,0,0,'test-1-11','','',0.5,'','');
/*!40000 ALTER TABLE `tx_news_domain_model_news` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tx_news_domain_model_news_related_mm`
--
DROP TABLE IF EXISTS `tx_news_domain_model_news_related_mm`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tx_news_domain_model_news_related_mm` (
`uid_local` int(11) NOT NULL DEFAULT 0,
`uid_foreign` int(11) NOT NULL DEFAULT 0,
`sorting` int(11) NOT NULL DEFAULT 0,
`sorting_foreign` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`uid_local`,`uid_foreign`),
KEY `uid_local` (`uid_local`),
KEY `uid_foreign` (`uid_foreign`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tx_news_domain_model_news_related_mm`
--
LOCK TABLES `tx_news_domain_model_news_related_mm` WRITE;
/*!40000 ALTER TABLE `tx_news_domain_model_news_related_mm` DISABLE KEYS */;
/*!40000 ALTER TABLE `tx_news_domain_model_news_related_mm` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tx_news_domain_model_news_tag_mm`
--
DROP TABLE IF EXISTS `tx_news_domain_model_news_tag_mm`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tx_news_domain_model_news_tag_mm` (
`uid_local` int(11) NOT NULL DEFAULT 0,
`uid_foreign` int(11) NOT NULL DEFAULT 0,
`sorting` int(11) NOT NULL DEFAULT 0,
`sorting_foreign` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`uid_local`,`uid_foreign`),
KEY `uid_local` (`uid_local`),
KEY `uid_foreign` (`uid_foreign`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tx_news_domain_model_news_tag_mm`
--
LOCK TABLES `tx_news_domain_model_news_tag_mm` WRITE;
/*!40000 ALTER TABLE `tx_news_domain_model_news_tag_mm` DISABLE KEYS */;
/*!40000 ALTER TABLE `tx_news_domain_model_news_tag_mm` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tx_news_domain_model_news_ttcontent_mm`
--
DROP TABLE IF EXISTS `tx_news_domain_model_news_ttcontent_mm`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tx_news_domain_model_news_ttcontent_mm` (
`uid_local` int(11) NOT NULL DEFAULT 0,
`uid_foreign` int(11) NOT NULL DEFAULT 0,
`sorting` int(11) NOT NULL DEFAULT 0,
KEY `uid_local` (`uid_local`),
KEY `uid_foreign` (`uid_foreign`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tx_news_domain_model_news_ttcontent_mm`
--
LOCK TABLES `tx_news_domain_model_news_ttcontent_mm` WRITE;
/*!40000 ALTER TABLE `tx_news_domain_model_news_ttcontent_mm` DISABLE KEYS */;
/*!40000 ALTER TABLE `tx_news_domain_model_news_ttcontent_mm` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tx_news_domain_model_tag`
--
DROP TABLE IF EXISTS `tx_news_domain_model_tag`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tx_news_domain_model_tag` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`sys_language_uid` int(11) NOT NULL DEFAULT 0,
`l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_diffsource` mediumblob DEFAULT NULL,
`l10n_source` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`notes` text DEFAULT NULL,
`l10n_state` text DEFAULT NULL,
`title` tinytext DEFAULT NULL,
`slug` varchar(2048) DEFAULT NULL,
`seo_title` varchar(255) NOT NULL DEFAULT '',
`seo_description` text DEFAULT NULL,
`seo_headline` varchar(255) NOT NULL DEFAULT '',
`seo_text` text DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`),
KEY `translation_source` (`l10n_source`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tx_news_domain_model_tag`
--
LOCK TABLES `tx_news_domain_model_tag` WRITE;
/*!40000 ALTER TABLE `tx_news_domain_model_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `tx_news_domain_model_tag` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tx_scheduler_task`
--
DROP TABLE IF EXISTS `tx_scheduler_task`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tx_scheduler_task` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`disable` smallint(5) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`nextexecution` int(10) unsigned NOT NULL DEFAULT 0,
`lastexecution_time` int(10) unsigned NOT NULL DEFAULT 0,
`lastexecution_failure` text DEFAULT NULL,
`lastexecution_context` varchar(3) NOT NULL DEFAULT '',
`serialized_task_object` mediumblob DEFAULT NULL,
`serialized_executions` mediumblob DEFAULT NULL,
`task_group` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `index_nextexecution` (`nextexecution`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tx_scheduler_task`
--
LOCK TABLES `tx_scheduler_task` WRITE;
/*!40000 ALTER TABLE `tx_scheduler_task` DISABLE KEYS */;
/*!40000 ALTER TABLE `tx_scheduler_task` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tx_scheduler_task_group`
--
DROP TABLE IF EXISTS `tx_scheduler_task_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tx_scheduler_task_group` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`sorting` int(11) NOT NULL DEFAULT 0,
`groupName` varchar(80) NOT NULL DEFAULT '',
`description` longtext DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tx_scheduler_task_group`
--
LOCK TABLES `tx_scheduler_task_group` WRITE;
/*!40000 ALTER TABLE `tx_scheduler_task_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `tx_scheduler_task_group` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-12-15 1:04:29