diff --git a/.gitignore b/.gitignore
index 4167dea..9cd6983 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,3 @@
-/public
+/web
/vendor
-/app/*
-!/app/typo3conf/sites/default/config.yaml
+/app
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 67ebac3..d56c7c8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -13,10 +13,10 @@ setup:composer:
paths:
- .composer/cache
artifacts:
- expire_in: 1 hour
+ expire_in: 30 mins
paths:
- app
- - public
+ - web
- vendor
test:acceptance:
@@ -24,18 +24,22 @@ test:acceptance:
stage: test
services:
- mysql:5.7
+ - selenium/standalone-chrome
variables:
- MYSQL_DATABASE: workshopgitlabtesting
- MYSQL_ROOT_PASSWORD: testing
- dependencies:
- - setup:composer
+ MYSQL_ROOT_PASSWORD: "dev"
+ MYSQL_DATABASE: "dev"
+ MYSQL_USER: "dev"
+ MYSQL_PASSWORD: "dev"
before_script:
- - docker-php-ext-install pdo pdo_mysql
- - cp public/index.php app/index.php
- - cp public/typo3/index.php app/typo3/index.php
- - cp public/typo3/install.php app/typo3/install.php
- - sed -i.bak -e '133,136d' vendor/typo3/testing-framework/Classes/Core/Testbase.php
- - mkdir -p app/typo3temp/var/tests/acceptance
- - env TYPO3_PATH_ROOT="$CI_PROJECT_DIR/app/typo3temp/var/tests/acceptance" TYPO3_PATH_APP="$CI_PROJECT_DIR/app/typo3temp/var/tests/acceptance" php -S 127.0.0.1:8080 -t app/typo3temp/var/tests/acceptance &
+ - docker-php-ext-install pdo pdo_mysql mysqli
+ - export LOCAL_IP=$(ip a | grep inet | sed -n 2p | xargs | cut -d" " -f2 | cut -d"/" -f1)
+ - export TESTING_DOMAIN="$LOCAL_IP:8080"
+ - export TYPO3_CONTEXT=Testing/Acceptance
+ - php -S "$TESTING_DOMAIN" -t web &
script:
- - ./vendor/bin/codecept run
+ - ./vendor/bin/codecept run --env=gitlab-ci
+ artifacts:
+ when: on_failure
+ expire_in: 10 mins
+ paths:
+ - tests/_output/
diff --git a/app/typo3conf/AdditionalConfiguration.php b/app/typo3conf/AdditionalConfiguration.php
new file mode 100644
index 0000000..5bad1bd
--- /dev/null
+++ b/app/typo3conf/AdditionalConfiguration.php
@@ -0,0 +1,44 @@
+ [
+ 'trustedHostsPattern' => 'localhost:8080',
+ ],
+ 'DB' => [
+ 'Connections' => [
+ 'Default' => [
+ 'dbname' => 'own_workshopgitlabacceptance_testing',
+ ],
+ ],
+ ],
+ ]
+ );
+}
+if ((string) $appContext === 'Testing/Acceptance' && getenv('CI') === 'true') {
+ \TYPO3\CMS\Core\Utility\ArrayUtility::mergeRecursiveWithOverrule(
+ $GLOBALS['TYPO3_CONF_VARS'],
+ [
+ 'SYS' => [
+ 'trustedHostsPattern' => getenv('TESTING_DOMAIN'),
+ ],
+ 'DB' => [
+ 'Connections' => [
+ 'Default' => [
+ 'dbname' => 'dev',
+ 'password' => 'dev',
+ 'user' => 'dev',
+ 'host' => 'mysql',
+ ],
+ ],
+ ],
+ ]
+ );
+}
diff --git a/app/typo3conf/LocalConfiguration.php b/app/typo3conf/LocalConfiguration.php
new file mode 100644
index 0000000..806365f
--- /dev/null
+++ b/app/typo3conf/LocalConfiguration.php
@@ -0,0 +1,95 @@
+ [
+ 'debug' => true,
+ 'explicitADmode' => 'explicitAllow',
+ 'installToolPassword' => '$argon2i$v=19$m=65536,t=16,p=2$UzAyaTZoVEpFMmV2M1piSQ$TywI+4PRhqx2ggtTrV+R7BNrb0oheW6tr/SThHr6HgM',
+ 'loginSecurityLevel' => 'normal',
+ 'passwordHashing' => [
+ 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash',
+ 'options' => [],
+ ],
+ ],
+ 'DB' => [
+ 'Connections' => [
+ 'Default' => [
+ 'charset' => 'utf8mb4',
+ 'dbname' => 'own_workshopgitlabacceptance',
+ 'driver' => 'mysqli',
+ 'host' => '127.0.0.1',
+ 'password' => 'dev',
+ 'port' => 3306,
+ 'tableoptions' => [
+ 'charset' => 'utf8mb4',
+ 'collate' => 'utf8mb4_unicode_ci',
+ ],
+ 'unix_socket' => '/var/run/mysqld/mysqld.sock',
+ 'user' => 'dev',
+ ],
+ ],
+ ],
+ 'EXT' => [
+ 'extConf' => [
+ 'backend' => 'a:6:{s:9:"loginLogo";s:0:"";s:19:"loginHighlightColor";s:0:"";s:20:"loginBackgroundImage";s:0:"";s:13:"loginFootnote";s:0:"";s:11:"backendLogo";s:0:"";s:14:"backendFavicon";s:0:"";}',
+ 'extensionmanager' => 'a:2:{s:21:"automaticInstallation";s:1:"1";s:11:"offlineMode";s:1:"0";}',
+ 'scheduler' => 'a:2:{s:11:"maxLifetime";s:4:"1440";s:15:"showSampleTasks";s:1:"1";}',
+ ],
+ ],
+ 'EXTENSIONS' => [
+ 'backend' => [
+ 'backendFavicon' => '',
+ 'backendLogo' => '',
+ 'loginBackgroundImage' => '',
+ 'loginFootnote' => '',
+ 'loginHighlightColor' => '',
+ 'loginLogo' => '',
+ ],
+ 'extensionmanager' => [
+ 'automaticInstallation' => '1',
+ 'offlineMode' => '0',
+ ],
+ 'scheduler' => [
+ 'maxLifetime' => '1440',
+ 'showSampleTasks' => '1',
+ ],
+ ],
+ 'FE' => [
+ 'debug' => true,
+ 'loginSecurityLevel' => 'normal',
+ 'passwordHashing' => [
+ 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash',
+ 'options' => [],
+ ],
+ ],
+ 'GFX' => [
+ 'processor' => 'ImageMagick',
+ 'processor_allowTemporaryMasksAsPng' => false,
+ 'processor_colorspace' => 'sRGB',
+ 'processor_effects' => true,
+ 'processor_enabled' => true,
+ 'processor_path' => '/usr/bin/',
+ 'processor_path_lzw' => '/usr/bin/',
+ ],
+ 'MAIL' => [
+ 'transport' => 'sendmail',
+ 'transport_sendmail_command' => '/usr/sbin/sendmail -t -i ',
+ 'transport_smtp_encrypt' => '',
+ 'transport_smtp_password' => '',
+ 'transport_smtp_server' => '',
+ 'transport_smtp_username' => '',
+ ],
+ 'SYS' => [
+ 'devIPmask' => '*',
+ 'displayErrors' => 1,
+ 'encryptionKey' => 'fc4441867ae5c425bd55676e01d6d14fd2ae17ed8fd5682b495e74518eda4d437c0c48917772dc848fff31f5cea3c3eb',
+ 'exceptionalErrors' => 12290,
+ 'features' => [
+ 'unifiedPageTranslationHandling' => true,
+ ],
+ 'sitename' => 'New TYPO3 Console site',
+ 'systemLogLevel' => 0,
+ 'systemMaintainers' => [
+ 1,
+ ],
+ ],
+];
diff --git a/app/typo3conf/sites/main/config.yaml b/app/typo3conf/sites/main/config.yaml
new file mode 100644
index 0000000..b95f97d
--- /dev/null
+++ b/app/typo3conf/sites/main/config.yaml
@@ -0,0 +1,40 @@
+rootPageId: 1
+base: /
+languages:
+ -
+ title: English
+ enabled: true
+ languageId: '0'
+ base: /
+ typo3Language: default
+ locale: en_US.UTF-8
+ iso-639-1: en
+ navigationTitle: English
+ hreflang: en-us
+ direction: ltr
+ flag: us
+errorHandling: {}
+routes: {}
+baseVariants: {}
+
+# routeEnhancers:
+# ExamplePlugin:
+# type: Extbase
+# extension: ExampleExtension
+# plugin: Address
+# defaultController: 'Address::index'
+# routes:
+# -
+# routePath: '/edit/{address}'
+# _controller: 'Address::edit'
+# _arguments:
+# 'address': 'address'
+# -
+# routePath: '/update'
+# _controller: 'Address::update'
+# aspects:
+# address:
+# type: PersistedAliasMapper
+# tableName: 'tx_exampleextension_domain_model_address'
+# routeFieldName: 'slug'
+# routeValuePrefix: '/'
diff --git a/codeception.yml b/codeception.yml
index f0446cc..3f2a988 100644
--- a/codeception.yml
+++ b/codeception.yml
@@ -1,10 +1,31 @@
+suites:
+ acceptance:
+ actor: AcceptanceTester
+ path: .
+ modules:
+ enabled:
+ - WebDriver:
+ url: https://workshop-gitlab-acceptance.own.localhost/
+ browser: chrome
+ - Db:
+ dump: tests/_data/typo3.sql
+ populate: true
+ cleanup: true
+ - \Helper\Acceptance
+ step_decorators:
+ - Codeception\Step\ConditionalAssertion
+ - Codeception\Step\TryTo
+ - Codeception\Step\Retry
+
+extensions:
+ enabled: [Codeception\Extension\RunFailed]
+
+params:
+ - env
+
paths:
tests: tests
output: tests/_output
data: tests/_data
support: tests/_support
envs: tests/_envs
-actor_suffix: Tester
-extensions:
- enabled:
- - Codeception\Extension\RunFailed
diff --git a/composer.json b/composer.json
index 8453189..ae2a0a0 100644
--- a/composer.json
+++ b/composer.json
@@ -10,7 +10,7 @@
}
],
"name": "website/typo3-extension-workshop",
- "description": "Example TYPO3 installation for workshop",
+ "description": "Example TYPO3 installation for Acceptance Testing",
"license": "GPL-2.0-or-later",
"require": {
"helhum/typo3-console": "^5.5.5",
@@ -31,14 +31,9 @@
},
"require-dev": {
"typo3/cms-lowlevel": "*",
- "codeception/codeception": "^2.5",
+ "codeception/codeception": "^3.1.0",
"typo3/testing-framework": "^4.11"
},
- "autoload-dev": {
- "psr-4": {
- "Codappix\\Tests\\": "tests/Classes"
- }
- },
"config": {
"platform": {
"php": "7.2"
@@ -48,7 +43,7 @@
"typo3/cms": {
"app-dir": "app",
"root-dir": "app",
- "web-dir": "public"
+ "web-dir": "web"
}
},
"minimum-stability": "dev",
diff --git a/composer.lock b/composer.lock
index 22b0189..a79975b 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "f53279fe7ba361096d04062806b72848",
+ "content-hash": "5770c0e541ee89e208e3aa77b5eeabb7",
"packages": [
{
"name": "algo26-matthias/idna-convert",
@@ -4036,28 +4036,29 @@
},
{
"name": "codeception/codeception",
- "version": "2.5.6",
+ "version": "3.1.0",
"source": {
"type": "git",
"url": "https://github.com/Codeception/Codeception.git",
- "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98"
+ "reference": "9ed9146567770e564fdd2b656edb385330f7fae7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b83a9338296e706fab2ceb49de8a352fbca3dc98",
- "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98",
+ "url": "https://api.github.com/repos/Codeception/Codeception/zipball/9ed9146567770e564fdd2b656edb385330f7fae7",
+ "reference": "9ed9146567770e564fdd2b656edb385330f7fae7",
"shasum": ""
},
"require": {
"behat/gherkin": "^4.4.0",
- "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
- "codeception/stub": "^2.0",
+ "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3",
+ "codeception/stub": "^2.0 | ^3.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
- "facebook/webdriver": ">=1.1.3 <2.0",
- "guzzlehttp/guzzle": ">=4.1.4 <7.0",
- "guzzlehttp/psr7": "~1.0",
+ "facebook/webdriver": "^1.6.0",
+ "guzzlehttp/guzzle": "^6.3.0",
+ "guzzlehttp/psr7": "~1.4",
+ "hoa/console": "~3.0",
"php": ">=5.6.0 <8.0",
"symfony/browser-kit": ">=2.7 <5.0",
"symfony/console": ">=2.7 <5.0",
@@ -4069,7 +4070,9 @@
},
"require-dev": {
"codeception/specify": "~0.3",
- "facebook/graph-sdk": "~5.3",
+ "doctrine/annotations": "^1",
+ "doctrine/data-fixtures": "^1",
+ "doctrine/orm": "^2",
"flow/jsonpath": "~0.2",
"monolog/monolog": "~1.8",
"pda/pheanstalk": "~3.0",
@@ -4124,7 +4127,7 @@
"functional testing",
"unit testing"
],
- "time": "2019-04-24T11:28:19+00:00"
+ "time": "2019-08-18T16:44:20+00:00"
},
{
"name": "codeception/phpunit-wrapper",
@@ -4171,20 +4174,21 @@
},
{
"name": "codeception/stub",
- "version": "2.1.0",
+ "version": "3.0.0",
"source": {
"type": "git",
"url": "https://github.com/Codeception/Stub.git",
- "reference": "853657f988942f7afb69becf3fd0059f192c705a"
+ "reference": "eea518711d736eab838c1274593c4568ec06b23d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Codeception/Stub/zipball/853657f988942f7afb69becf3fd0059f192c705a",
- "reference": "853657f988942f7afb69becf3fd0059f192c705a",
+ "url": "https://api.github.com/repos/Codeception/Stub/zipball/eea518711d736eab838c1274593c4568ec06b23d",
+ "reference": "eea518711d736eab838c1274593c4568ec06b23d",
"shasum": ""
},
"require": {
- "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3"
+ "codeception/phpunit-wrapper": "^6.6.1 | ^7.7.1 | ^8.0.3",
+ "phpunit/phpunit": ">=6.5 <9.0"
},
"type": "library",
"autoload": {
@@ -4197,7 +4201,7 @@
"MIT"
],
"description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
- "time": "2019-03-02T15:35:10+00:00"
+ "time": "2019-08-10T16:20:53+00:00"
},
{
"name": "facebook/webdriver",
@@ -4259,6 +4263,555 @@
],
"time": "2019-06-13T08:02:18+00:00"
},
+ {
+ "name": "hoa/consistency",
+ "version": "1.17.05.02",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hoaproject/Consistency.git",
+ "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hoaproject/Consistency/zipball/fd7d0adc82410507f332516faf655b6ed22e4c2f",
+ "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f",
+ "shasum": ""
+ },
+ "require": {
+ "hoa/exception": "~1.0",
+ "php": ">=5.5.0"
+ },
+ "require-dev": {
+ "hoa/stream": "~1.0",
+ "hoa/test": "~2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Hoa\\Consistency\\": "."
+ },
+ "files": [
+ "Prelude.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ivan Enderlin",
+ "email": "ivan.enderlin@hoa-project.net"
+ },
+ {
+ "name": "Hoa community",
+ "homepage": "https://hoa-project.net/"
+ }
+ ],
+ "description": "The Hoa\\Consistency library.",
+ "homepage": "https://hoa-project.net/",
+ "keywords": [
+ "autoloader",
+ "callable",
+ "consistency",
+ "entity",
+ "flex",
+ "keyword",
+ "library"
+ ],
+ "time": "2017-05-02T12:18:12+00:00"
+ },
+ {
+ "name": "hoa/console",
+ "version": "3.17.05.02",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hoaproject/Console.git",
+ "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hoaproject/Console/zipball/e231fd3ea70e6d773576ae78de0bdc1daf331a66",
+ "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66",
+ "shasum": ""
+ },
+ "require": {
+ "hoa/consistency": "~1.0",
+ "hoa/event": "~1.0",
+ "hoa/exception": "~1.0",
+ "hoa/file": "~1.0",
+ "hoa/protocol": "~1.0",
+ "hoa/stream": "~1.0",
+ "hoa/ustring": "~4.0"
+ },
+ "require-dev": {
+ "hoa/test": "~2.0"
+ },
+ "suggest": {
+ "ext-pcntl": "To enable hoa://Event/Console/Window:resize.",
+ "hoa/dispatcher": "To use the console kit.",
+ "hoa/router": "To use the console kit."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Hoa\\Console\\": "."
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ivan Enderlin",
+ "email": "ivan.enderlin@hoa-project.net"
+ },
+ {
+ "name": "Hoa community",
+ "homepage": "https://hoa-project.net/"
+ }
+ ],
+ "description": "The Hoa\\Console library.",
+ "homepage": "https://hoa-project.net/",
+ "keywords": [
+ "autocompletion",
+ "chrome",
+ "cli",
+ "console",
+ "cursor",
+ "getoption",
+ "library",
+ "option",
+ "parser",
+ "processus",
+ "readline",
+ "terminfo",
+ "tput",
+ "window"
+ ],
+ "time": "2017-05-02T12:26:19+00:00"
+ },
+ {
+ "name": "hoa/event",
+ "version": "1.17.01.13",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hoaproject/Event.git",
+ "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hoaproject/Event/zipball/6c0060dced212ffa3af0e34bb46624f990b29c54",
+ "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54",
+ "shasum": ""
+ },
+ "require": {
+ "hoa/consistency": "~1.0",
+ "hoa/exception": "~1.0"
+ },
+ "require-dev": {
+ "hoa/test": "~2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Hoa\\Event\\": "."
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ivan Enderlin",
+ "email": "ivan.enderlin@hoa-project.net"
+ },
+ {
+ "name": "Hoa community",
+ "homepage": "https://hoa-project.net/"
+ }
+ ],
+ "description": "The Hoa\\Event library.",
+ "homepage": "https://hoa-project.net/",
+ "keywords": [
+ "event",
+ "library",
+ "listener",
+ "observer"
+ ],
+ "time": "2017-01-13T15:30:50+00:00"
+ },
+ {
+ "name": "hoa/exception",
+ "version": "1.17.01.16",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hoaproject/Exception.git",
+ "reference": "091727d46420a3d7468ef0595651488bfc3a458f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hoaproject/Exception/zipball/091727d46420a3d7468ef0595651488bfc3a458f",
+ "reference": "091727d46420a3d7468ef0595651488bfc3a458f",
+ "shasum": ""
+ },
+ "require": {
+ "hoa/consistency": "~1.0",
+ "hoa/event": "~1.0"
+ },
+ "require-dev": {
+ "hoa/test": "~2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Hoa\\Exception\\": "."
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ivan Enderlin",
+ "email": "ivan.enderlin@hoa-project.net"
+ },
+ {
+ "name": "Hoa community",
+ "homepage": "https://hoa-project.net/"
+ }
+ ],
+ "description": "The Hoa\\Exception library.",
+ "homepage": "https://hoa-project.net/",
+ "keywords": [
+ "exception",
+ "library"
+ ],
+ "time": "2017-01-16T07:53:27+00:00"
+ },
+ {
+ "name": "hoa/file",
+ "version": "1.17.07.11",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hoaproject/File.git",
+ "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hoaproject/File/zipball/35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca",
+ "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca",
+ "shasum": ""
+ },
+ "require": {
+ "hoa/consistency": "~1.0",
+ "hoa/event": "~1.0",
+ "hoa/exception": "~1.0",
+ "hoa/iterator": "~2.0",
+ "hoa/stream": "~1.0"
+ },
+ "require-dev": {
+ "hoa/test": "~2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Hoa\\File\\": "."
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ivan Enderlin",
+ "email": "ivan.enderlin@hoa-project.net"
+ },
+ {
+ "name": "Hoa community",
+ "homepage": "https://hoa-project.net/"
+ }
+ ],
+ "description": "The Hoa\\File library.",
+ "homepage": "https://hoa-project.net/",
+ "keywords": [
+ "Socket",
+ "directory",
+ "file",
+ "finder",
+ "library",
+ "link",
+ "temporary"
+ ],
+ "time": "2017-07-11T07:42:15+00:00"
+ },
+ {
+ "name": "hoa/iterator",
+ "version": "2.17.01.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hoaproject/Iterator.git",
+ "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hoaproject/Iterator/zipball/d1120ba09cb4ccd049c86d10058ab94af245f0cc",
+ "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc",
+ "shasum": ""
+ },
+ "require": {
+ "hoa/consistency": "~1.0",
+ "hoa/exception": "~1.0"
+ },
+ "require-dev": {
+ "hoa/test": "~2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Hoa\\Iterator\\": "."
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ivan Enderlin",
+ "email": "ivan.enderlin@hoa-project.net"
+ },
+ {
+ "name": "Hoa community",
+ "homepage": "https://hoa-project.net/"
+ }
+ ],
+ "description": "The Hoa\\Iterator library.",
+ "homepage": "https://hoa-project.net/",
+ "keywords": [
+ "iterator",
+ "library"
+ ],
+ "time": "2017-01-10T10:34:47+00:00"
+ },
+ {
+ "name": "hoa/protocol",
+ "version": "1.17.01.14",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hoaproject/Protocol.git",
+ "reference": "5c2cf972151c45f373230da170ea015deecf19e2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hoaproject/Protocol/zipball/5c2cf972151c45f373230da170ea015deecf19e2",
+ "reference": "5c2cf972151c45f373230da170ea015deecf19e2",
+ "shasum": ""
+ },
+ "require": {
+ "hoa/consistency": "~1.0",
+ "hoa/exception": "~1.0"
+ },
+ "require-dev": {
+ "hoa/test": "~2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Hoa\\Protocol\\": "."
+ },
+ "files": [
+ "Wrapper.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ivan Enderlin",
+ "email": "ivan.enderlin@hoa-project.net"
+ },
+ {
+ "name": "Hoa community",
+ "homepage": "https://hoa-project.net/"
+ }
+ ],
+ "description": "The Hoa\\Protocol library.",
+ "homepage": "https://hoa-project.net/",
+ "keywords": [
+ "library",
+ "protocol",
+ "resource",
+ "stream",
+ "wrapper"
+ ],
+ "time": "2017-01-14T12:26:10+00:00"
+ },
+ {
+ "name": "hoa/stream",
+ "version": "1.17.02.21",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hoaproject/Stream.git",
+ "reference": "3293cfffca2de10525df51436adf88a559151d82"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hoaproject/Stream/zipball/3293cfffca2de10525df51436adf88a559151d82",
+ "reference": "3293cfffca2de10525df51436adf88a559151d82",
+ "shasum": ""
+ },
+ "require": {
+ "hoa/consistency": "~1.0",
+ "hoa/event": "~1.0",
+ "hoa/exception": "~1.0",
+ "hoa/protocol": "~1.0"
+ },
+ "require-dev": {
+ "hoa/test": "~2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Hoa\\Stream\\": "."
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ivan Enderlin",
+ "email": "ivan.enderlin@hoa-project.net"
+ },
+ {
+ "name": "Hoa community",
+ "homepage": "https://hoa-project.net/"
+ }
+ ],
+ "description": "The Hoa\\Stream library.",
+ "homepage": "https://hoa-project.net/",
+ "keywords": [
+ "Context",
+ "bucket",
+ "composite",
+ "filter",
+ "in",
+ "library",
+ "out",
+ "protocol",
+ "stream",
+ "wrapper"
+ ],
+ "time": "2017-02-21T16:01:06+00:00"
+ },
+ {
+ "name": "hoa/ustring",
+ "version": "4.17.01.16",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hoaproject/Ustring.git",
+ "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hoaproject/Ustring/zipball/e6326e2739178799b1fe3fdd92029f9517fa17a0",
+ "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0",
+ "shasum": ""
+ },
+ "require": {
+ "hoa/consistency": "~1.0",
+ "hoa/exception": "~1.0"
+ },
+ "require-dev": {
+ "hoa/test": "~2.0"
+ },
+ "suggest": {
+ "ext-iconv": "ext/iconv must be present (or a third implementation) to use Hoa\\Ustring::transcode().",
+ "ext-intl": "To get a better Hoa\\Ustring::toAscii() and Hoa\\Ustring::compareTo()."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Hoa\\Ustring\\": "."
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Ivan Enderlin",
+ "email": "ivan.enderlin@hoa-project.net"
+ },
+ {
+ "name": "Hoa community",
+ "homepage": "https://hoa-project.net/"
+ }
+ ],
+ "description": "The Hoa\\Ustring library.",
+ "homepage": "https://hoa-project.net/",
+ "keywords": [
+ "library",
+ "search",
+ "string",
+ "unicode"
+ ],
+ "time": "2017-01-16T07:08:25+00:00"
+ },
{
"name": "mikey179/vfsstream",
"version": "v1.6.7",
diff --git a/localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php b/localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php
index cb91429..ee0ad49 100644
--- a/localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php
+++ b/localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php
@@ -1,9 +1,40 @@
[
+ 'typeicon_classes' => [
+ 'exampleextension_address' => 'content-store',
+ ],
+ ],
+ 'types' => [
+ 'exampleextension_address' => [
+ 'showitem' => implode(',', [
+ // phpcs:disable Generic.Files.LineLength.TooLong
+ // Keep original code from ext:frontend
+ '--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general',
+ '--palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:palette.general;general',
+ '--palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:palette.headers;headers',
+ 'pages;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:pages.ALT.list_formlabel',
+ 'recursive,',
+ '--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access',
+ '--palette--;;hidden',
+ '--palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:palette.access;access',
+ // phpcs:enable
+ ]),
+ ],
+ ],
+ ]
+ );
+})('example_extension', 'tt_content');
diff --git a/localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php b/localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php
index 6af4230..13793a9 100644
--- a/localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php
+++ b/localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php
@@ -10,6 +10,7 @@ return (function (
return [
'ctrl' => [
'label' => 'company_name',
+ 'iconfile' => 'EXT:core/Resources/Public/Icons/T3Icons/content/content-store.svg',
'default_sortby' => 'company_name',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
@@ -24,7 +25,7 @@ return (function (
'searchFields' => 'company_name, street, city'
],
'interface' => [
- 'showRecordFieldList' => 'company_name, street, house_number, zip, city, country'
+ 'showRecordFieldList' => 'company_name, street, house_number, zip, city, country, slug'
],
'palettes' => [
'address' => [
@@ -42,6 +43,7 @@ return (function (
'showitem' => implode(',', [
'--div--;' . $coreLanguagePrefix . 'general',
'company_name;;address',
+ 'slug',
]),
],
],
@@ -96,6 +98,18 @@ return (function (
'eval' => 'trim,required',
],
],
+ 'slug' => [
+ 'label' => $extensionLanguagePrefix . 'slug',
+ 'config' => [
+ 'type' => 'slug',
+ 'generatorOptions' => [
+ 'fields' => ['company_name'],
+ 'prefixParentPageSlug' => true,
+ ],
+ 'fallbackCharacter' => '-',
+ 'eval' => 'uniqueInSite',
+ ],
+ ],
],
];
})();
diff --git a/localPackages/example_extension/Configuration/TypoScript/Config.typoscript b/localPackages/example_extension/Configuration/TypoScript/Config.typoscript
new file mode 100644
index 0000000..1031d91
--- /dev/null
+++ b/localPackages/example_extension/Configuration/TypoScript/Config.typoscript
@@ -0,0 +1,3 @@
+config {
+ contentObjectExceptionHandler = 0
+}
diff --git a/localPackages/example_extension/Configuration/TypoScript/Extensions.typoscript b/localPackages/example_extension/Configuration/TypoScript/Extensions.typoscript
new file mode 100644
index 0000000..cbd1251
--- /dev/null
+++ b/localPackages/example_extension/Configuration/TypoScript/Extensions.typoscript
@@ -0,0 +1 @@
+@import 'EXT:fluid_styled_content/Configuration/TypoScript/setup.typoscript'
diff --git a/localPackages/example_extension/Configuration/TypoScript/Page.typoscript b/localPackages/example_extension/Configuration/TypoScript/Page.typoscript
new file mode 100644
index 0000000..c7ff2b6
--- /dev/null
+++ b/localPackages/example_extension/Configuration/TypoScript/Page.typoscript
@@ -0,0 +1,4 @@
+page = PAGE
+page {
+ 10 < styles.content.get
+}
diff --git a/localPackages/example_extension/ext_localconf.php b/localPackages/example_extension/ext_localconf.php
index e0dbfce..addac49 100644
--- a/localPackages/example_extension/ext_localconf.php
+++ b/localPackages/example_extension/ext_localconf.php
@@ -9,18 +9,24 @@
],
[
'Address' => 'update'
- ]
+ ],
+ \TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
+ \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTypoScriptSetup(trim('
+ @import "EXT:example_extension/Configuration/TypoScript/*.typoscript"
+ '));
+
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig('
mod {
wizards {
newContentElement {
wizardItems {
- plugins {
+ common {
+ show = *
elements {
exampleElement {
- iconIdentifier = content-coffee
+ iconIdentifier = content-store
title = Example title
description = Example Description
tt_content_defValues {
diff --git a/localPackages/example_extension/ext_tables.sql b/localPackages/example_extension/ext_tables.sql
index 464c5ff..251e6b5 100644
--- a/localPackages/example_extension/ext_tables.sql
+++ b/localPackages/example_extension/ext_tables.sql
@@ -5,4 +5,5 @@ CREATE TABLE tx_exampleextension_domain_model_address (
zip varchar(255) DEFAULT '' NOT NULL,
city varchar(255) DEFAULT '' NOT NULL,
country varchar(255) DEFAULT '' NOT NULL,
+ slug varchar(2048),
);
diff --git a/tests/acceptance/AddressCest.php b/tests/AddressCest.php
similarity index 94%
rename from tests/acceptance/AddressCest.php
rename to tests/AddressCest.php
index 3babf82..c22e9ad 100644
--- a/tests/acceptance/AddressCest.php
+++ b/tests/AddressCest.php
@@ -28,7 +28,7 @@ class AddressCest
$I->see('Edit');
$I->click('Edit');
- $I->see('Editing: TYPO3 Camp Rhein Ruhr');
+ $I->see('Editing: Codappix GmbH');
$I->fillField(['id' => 'zip'], '123');
$I->click('Update');
diff --git a/tests/Classes/Acceptance/Typo3Environment.php b/tests/Classes/Acceptance/Typo3Environment.php
deleted file mode 100644
index 49ed013..0000000
--- a/tests/Classes/Acceptance/Typo3Environment.php
+++ /dev/null
@@ -1,61 +0,0 @@
-
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA.
- */
-
-use Codeception\Event\TestEvent;
-use Codeception\Event\SuiteEvent;
-use Codeception\Events;
-use PHPUnit\Framework\TestSuite;
-use TYPO3\CMS\Core\Utility\ArrayUtility;
-use TYPO3\TestingFramework\Core\Acceptance\Extension\BackendEnvironment;
-
-class Typo3Environment extends BackendEnvironment
-{
- public function _initialize()
- {
- ArrayUtility::mergeRecursiveWithOverrule($this->config, [
- // 'typo3DatabaseDriver' => 'pdo_sqlite',
- // 'typo3DatabaseName' => 'workshopgitlabtesting.sqlite',
- 'typo3DatabaseDriver' => 'pdo_mysql',
- 'typo3DatabaseHost' => 'mysql',
- 'typo3DatabaseUsername' => 'root',
- 'typo3DatabasePassword' => 'testing',
- 'typo3DatabaseName' => 'workshopgitlabtesting',
- 'coreExtensionsToLoad' => [
- 'core',
- 'extbase',
- 'fluid',
- 'fluid_styled_content',
- 'frontend',
- 'backend',
- ],
- 'testExtensionsToLoad' => [
- 'typo3conf/ext/example_extension',
- ],
- 'xmlDatabaseFixtures' => [
- dirname(__FILE__) . '/../../acceptance/fixtures/full.xml',
- ],
- ]);
-
- parent::_initialize();
- }
-}
diff --git a/tests/_data/typo3.sql b/tests/_data/typo3.sql
new file mode 100644
index 0000000..039ba25
--- /dev/null
+++ b/tests/_data/typo3.sql
@@ -0,0 +1,1855 @@
+-- MySQL dump 10.13 Distrib 5.7.27, for Linux (x86_64)
+--
+-- Host: localhost Database: own_workshopgitlabacceptance
+-- ------------------------------------------------------
+-- Server version 5.7.27-0ubuntu0.18.04.1-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 utf8 */;
+/*!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(11) 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',
+ `sorting` int(11) NOT NULL DEFAULT '0',
+ `description` text COLLATE utf8mb4_unicode_ci,
+ `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `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',
+ `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `config` text COLLATE utf8mb4_unicode_ci NOT NULL,
+ `icon` text COLLATE utf8mb4_unicode_ci,
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`),
+ KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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_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',
+ `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',
+ `description` text COLLATE utf8mb4_unicode_ci,
+ `title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `non_exclude_fields` text COLLATE utf8mb4_unicode_ci,
+ `explicit_allowdeny` text COLLATE utf8mb4_unicode_ci,
+ `allowed_languages` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `custom_options` text COLLATE utf8mb4_unicode_ci,
+ `db_mountpoints` text COLLATE utf8mb4_unicode_ci,
+ `pagetypes_select` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `tables_select` text COLLATE utf8mb4_unicode_ci,
+ `tables_modify` text COLLATE utf8mb4_unicode_ci,
+ `groupMods` text COLLATE utf8mb4_unicode_ci,
+ `file_mountpoints` text COLLATE utf8mb4_unicode_ci,
+ `file_permissions` text COLLATE utf8mb4_unicode_ci,
+ `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `TSconfig` text COLLATE utf8mb4_unicode_ci,
+ `subgroup` text COLLATE utf8mb4_unicode_ci,
+ `workspace_perms` smallint(6) NOT NULL DEFAULT '1',
+ `category_perms` text COLLATE utf8mb4_unicode_ci,
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `ses_iplock` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `ses_userid` int(10) unsigned NOT NULL DEFAULT '0',
+ `ses_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
+ `ses_data` longblob,
+ `ses_backuserid` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ses_id`),
+ KEY `ses_tstamp` (`ses_tstamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- 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',
+ `cruser_id` 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 COLLATE utf8mb4_unicode_ci,
+ `username` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `avatar` int(10) unsigned NOT NULL DEFAULT '0',
+ `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `admin` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `usergroup` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `lang` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `db_mountpoints` text COLLATE utf8mb4_unicode_ci,
+ `options` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `realName` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `userMods` text COLLATE utf8mb4_unicode_ci,
+ `allowed_languages` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `uc` mediumblob,
+ `file_mountpoints` text COLLATE utf8mb4_unicode_ci,
+ `file_permissions` text COLLATE utf8mb4_unicode_ci,
+ `workspace_perms` smallint(6) NOT NULL DEFAULT '1',
+ `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `disableIPlock` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `TSconfig` text COLLATE utf8mb4_unicode_ci,
+ `lastlogin` int(10) unsigned NOT NULL DEFAULT '0',
+ `createdByAction` int(11) NOT NULL DEFAULT '0',
+ `usergroup_cached_list` text COLLATE utf8mb4_unicode_ci,
+ `workspace_id` int(11) NOT NULL DEFAULT '0',
+ `category_perms` text COLLATE utf8mb4_unicode_ci,
+ PRIMARY KEY (`uid`),
+ KEY `username` (`username`),
+ KEY `parent` (`pid`,`deleted`,`disable`)
+) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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,1566399565,1566399565,0,0,0,0,0,NULL,'dsiepmann',0,'$argon2i$v=19$m=65536,t=16,p=2$T2pmbUd5d29zYVBuV2dWdg$dhzQXuW8Opu6YZZfy9R4+KDNAPfKn+dOiHFCdGESmtY',1,'','','',NULL,0,'',NULL,'',_binary 'a:17:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:10:{s:10:\"web_layout\";a:2:{s:8:\"function\";s:1:\"1\";s:8:\"language\";s:1:\"0\";}s:8:\"web_list\";a:0:{}s:10:\"FormEngine\";a:2:{i:0;a:6:{s:32:\"696addfecc296b326ff6e9f04c7ff3e1\";a:4:{i:0;s:4:\"Home\";i:1;a:6:{s:4:\"edit\";a:1:{s:5:\"pages\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:28:\"&edit%5Bpages%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:5:\"pages\";s:3:\"uid\";i:1;s:3:\"pid\";i:0;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"a9a6057797db87f88ceebe9eef404c91\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";a:1:{s:10:\"tt_content\";a:4:{s:6:\"colPos\";s:1:\"0\";s:16:\"sys_language_uid\";s:1:\"0\";s:5:\"CType\";s:4:\"list\";s:9:\"list_type\";s:26:\"exampleextension_pluginkey\";}}s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:225:\"&edit%5Btt_content%5D%5B1%5D=edit&defVals%5Btt_content%5D%5BcolPos%5D=0&defVals%5Btt_content%5D%5Bsys_language_uid%5D=0&defVals%5Btt_content%5D%5BCType%5D=list&defVals%5Btt_content%5D%5Blist_type%5D=exampleextension_pluginkey\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"86205c5935270b8ee413592ec1b62292\";a:4:{i:0;s:25:\"Main TypoScript Rendering\";i:1;a:6:{s:4:\"edit\";a:1:{s:12:\"sys_template\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:35:\"&edit%5Bsys_template%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:12:\"sys_template\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"c312013d83c1a6ad7fec8b36a37ba3c8\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";a:4:{i:0;s:21:\"TYPO3 Camp Rhein Ruhr\";i:1;a:6:{s:4:\"edit\";a:1:{s:40:\"tx_exampleextension_domain_model_address\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:63:\"&edit%5Btx_exampleextension_domain_model_address%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:40:\"tx_exampleextension_domain_model_address\";s:3:\"uid\";i:1;s:3:\"pid\";i:2;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"20ed475662b97ac33d3aa853a74f9c9c\";a:4:{i:0;s:9:\"addresses\";i:1;a:6:{s:4:\"edit\";a:1:{s:5:\"pages\";a:1:{i:2;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:28:\"&edit%5Bpages%5D%5B2%5D=edit\";i:3;a:5:{s:5:\"table\";s:5:\"pages\";s:3:\"uid\";i:2;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}}i:1;s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";}s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";a:0:{}s:6:\"web_ts\";a:8:{s:8:\"function\";s:87:\"TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateObjectBrowserModuleFunctionController\";s:19:\"constant_editor_cat\";s:0:\"\";s:15:\"ts_browser_type\";s:5:\"setup\";s:16:\"ts_browser_const\";s:5:\"subst\";s:19:\"ts_browser_fixedLgd\";s:1:\"0\";s:23:\"ts_browser_showComments\";s:1:\"1\";s:20:\"ts_browser_alphaSort\";s:1:\"1\";s:25:\"tsbrowser_depthKeys_setup\";a:4:{s:10:\"tt_content\";i:1;s:15:\"tt_content.list\";i:1;s:18:\"tt_content.list.20\";i:1;s:43:\"tt_content.list.20.exampleextension_address\";i:1;}}s:8:\"web_info\";a:2:{s:8:\"function\";s:60:\"TYPO3\\CMS\\Info\\Controller\\InfoPageTyposcriptConfigController\";s:12:\"tsconf_parts\";s:1:\"0\";}s:16:\"opendocs::recent\";a:2:{s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";a:4:{i:0;s:13:\"Codappix GmbH\";i:1;a:6:{s:4:\"edit\";a:1:{s:40:\"tx_exampleextension_domain_model_address\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:63:\"&edit%5Btx_exampleextension_domain_model_address%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:40:\"tx_exampleextension_domain_model_address\";s:3:\"uid\";i:1;s:3:\"pid\";i:2;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"c312013d83c1a6ad7fec8b36a37ba3c8\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}}s:13:\"system_config\";a:3:{s:4:\"tree\";s:3:\"tca\";s:11:\"regexSearch\";b:0;s:8:\"node_tca\";a:6:{s:10:\"tt_content\";i:1;s:16:\"tt_content.types\";i:1;s:41:\"tt_content.types.exampleextension_address\";i:1;s:24:\"tt_content.types.bullets\";i:1;s:32:\"tt_content.ctrl.typeicon_classes\";i:1;s:21:\"tt_content.types.list\";i:1;}}s:16:\"browse_links.php\";a:1:{s:10:\"expandPage\";s:1:\"1\";}s:9:\"clipboard\";a:5:{s:6:\"normal\";a:2:{s:2:\"el\";a:0:{}s:4:\"mode\";s:0:\"\";}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:19:\"thumbnailsByDefault\";i:1;s:14:\"emailMeAtLogin\";i:0;s:11:\"startModule\";s:15:\"help_AboutAbout\";s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:15:\"resizeTextareas\";i:1;s:25:\"resizeTextareas_MaxHeight\";i:500;s:24:\"resizeTextareas_Flexible\";i:0;s:4:\"lang\";s:0:\"\";s:19:\"firstLoginTimeStamp\";i:1566399603;s:15:\"moduleSessionID\";a:9:{s:10:\"web_layout\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:8:\"web_list\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:10:\"FormEngine\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:6:\"web_ts\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:8:\"web_info\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:16:\"opendocs::recent\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:16:\"browse_links.php\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:9:\"clipboard\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";}s:10:\"inlineView\";s:72:\"a:1:{s:4:\"site\";a:1:{i:1;a:1:{s:13:\"site_language\";a:1:{i:0;s:1:\"0\";}}}}\";s:17:\"BackendComponents\";a:1:{s:6:\"States\";a:1:{s:8:\"Pagetree\";a:1:{s:9:\"stateHash\";a:1:{s:3:\"0_1\";s:1:\"1\";}}}}s:11:\"browseTrees\";a:1:{s:11:\"browsePages\";s:32:\"a:1:{i:0;a:2:{i:0;i:1;i:1;i:1;}}\";}}',NULL,NULL,1,'',0,NULL,1566399603,0,NULL,0,NULL),(2,0,1566399575,1566399575,0,0,0,0,0,NULL,'_cli_',0,'$argon2i$v=19$m=65536,t=16,p=2$M2ovSHFDbi9tdlhCNWxSMA$rWNqC5yCk1bb7vxtVXl0Q+zWv4YIm9pGz6P0Cb0w8Mk',1,'','','',NULL,0,'',NULL,'',_binary 'a:13:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:0:{}s:19:\"thumbnailsByDefault\";i:1;s:14:\"emailMeAtLogin\";i:0;s:11:\"startModule\";s:15:\"help_AboutAbout\";s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:15:\"resizeTextareas\";i:1;s:25:\"resizeTextareas_MaxHeight\";i:500;s:24:\"resizeTextareas_Flexible\";i:0;s:4:\"lang\";s:0:\"\";s:19:\"firstLoginTimeStamp\";i:1566399575;}',NULL,NULL,1,'',0,NULL,0,0,NULL,0,NULL);
+/*!40000 ALTER TABLE `be_users` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cache_treelist`
+--
+
+DROP TABLE IF EXISTS `cache_treelist`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cache_treelist` (
+ `md5hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `pid` int(11) NOT NULL DEFAULT '0',
+ `treelist` mediumtext COLLATE utf8mb4_unicode_ci,
+ `tstamp` int(11) NOT NULL DEFAULT '0',
+ `expires` int(10) unsigned NOT NULL DEFAULT '0',
+ PRIMARY KEY (`md5hash`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cache_treelist`
+--
+
+LOCK TABLES `cache_treelist` WRITE;
+/*!40000 ALTER TABLE `cache_treelist` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cache_treelist` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cf_cache_hash`
+--
+
+DROP TABLE IF EXISTS `cf_cache_hash`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_cache_hash` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `expires` int(10) unsigned NOT NULL DEFAULT '0',
+ `content` longblob,
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(180),`expires`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cf_cache_hash`
+--
+
+LOCK TABLES `cf_cache_hash` WRITE;
+/*!40000 ALTER TABLE `cf_cache_hash` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cf_cache_hash` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cf_cache_hash_tags`
+--
+
+DROP TABLE IF EXISTS `cf_cache_hash_tags`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_cache_hash_tags` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(191)),
+ KEY `cache_tag` (`tag`(191))
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cf_cache_hash_tags`
+--
+
+LOCK TABLES `cf_cache_hash_tags` WRITE;
+/*!40000 ALTER TABLE `cf_cache_hash_tags` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cf_cache_hash_tags` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cf_cache_imagesizes`
+--
+
+DROP TABLE IF EXISTS `cf_cache_imagesizes`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_cache_imagesizes` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `expires` int(10) unsigned NOT NULL DEFAULT '0',
+ `content` longblob,
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(180),`expires`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cf_cache_imagesizes`
+--
+
+LOCK TABLES `cf_cache_imagesizes` WRITE;
+/*!40000 ALTER TABLE `cf_cache_imagesizes` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cf_cache_imagesizes` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cf_cache_imagesizes_tags`
+--
+
+DROP TABLE IF EXISTS `cf_cache_imagesizes_tags`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_cache_imagesizes_tags` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(191)),
+ KEY `cache_tag` (`tag`(191))
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cf_cache_imagesizes_tags`
+--
+
+LOCK TABLES `cf_cache_imagesizes_tags` WRITE;
+/*!40000 ALTER TABLE `cf_cache_imagesizes_tags` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cf_cache_imagesizes_tags` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cf_cache_pages`
+--
+
+DROP TABLE IF EXISTS `cf_cache_pages`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_cache_pages` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `expires` int(10) unsigned NOT NULL DEFAULT '0',
+ `content` longblob,
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(180),`expires`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cf_cache_pages`
+--
+
+LOCK TABLES `cf_cache_pages` WRITE;
+/*!40000 ALTER TABLE `cf_cache_pages` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cf_cache_pages` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cf_cache_pages_tags`
+--
+
+DROP TABLE IF EXISTS `cf_cache_pages_tags`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_cache_pages_tags` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(191)),
+ KEY `cache_tag` (`tag`(191))
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cf_cache_pages_tags`
+--
+
+LOCK TABLES `cf_cache_pages_tags` WRITE;
+/*!40000 ALTER TABLE `cf_cache_pages_tags` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cf_cache_pages_tags` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cf_cache_pagesection`
+--
+
+DROP TABLE IF EXISTS `cf_cache_pagesection`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_cache_pagesection` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `expires` int(10) unsigned NOT NULL DEFAULT '0',
+ `content` longblob,
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(180),`expires`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cf_cache_pagesection`
+--
+
+LOCK TABLES `cf_cache_pagesection` WRITE;
+/*!40000 ALTER TABLE `cf_cache_pagesection` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cf_cache_pagesection` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cf_cache_pagesection_tags`
+--
+
+DROP TABLE IF EXISTS `cf_cache_pagesection_tags`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_cache_pagesection_tags` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(191)),
+ KEY `cache_tag` (`tag`(191))
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cf_cache_pagesection_tags`
+--
+
+LOCK TABLES `cf_cache_pagesection_tags` WRITE;
+/*!40000 ALTER TABLE `cf_cache_pagesection_tags` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cf_cache_pagesection_tags` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cf_cache_rootline`
+--
+
+DROP TABLE IF EXISTS `cf_cache_rootline`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_cache_rootline` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `expires` int(10) unsigned NOT NULL DEFAULT '0',
+ `content` longblob,
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(180),`expires`)
+) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `cf_cache_rootline_tags`
+--
+
+DROP TABLE IF EXISTS `cf_cache_rootline_tags`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_cache_rootline_tags` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(191)),
+ KEY `cache_tag` (`tag`(191))
+) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `cf_extbase_datamapfactory_datamap`
+--
+
+DROP TABLE IF EXISTS `cf_extbase_datamapfactory_datamap`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_extbase_datamapfactory_datamap` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `expires` int(10) unsigned NOT NULL DEFAULT '0',
+ `content` longblob,
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(180),`expires`)
+) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `cf_extbase_datamapfactory_datamap_tags`
+--
+
+DROP TABLE IF EXISTS `cf_extbase_datamapfactory_datamap_tags`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cf_extbase_datamapfactory_datamap_tags` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ PRIMARY KEY (`id`),
+ KEY `cache_id` (`identifier`(191)),
+ KEY `cache_tag` (`tag`(191))
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cf_extbase_datamapfactory_datamap_tags`
+--
+
+LOCK TABLES `cf_extbase_datamapfactory_datamap_tags` WRITE;
+/*!40000 ALTER TABLE `cf_extbase_datamapfactory_datamap_tags` DISABLE KEYS */;
+/*!40000 ALTER TABLE `cf_extbase_datamapfactory_datamap_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',
+ `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',
+ `description` text COLLATE utf8mb4_unicode_ci,
+ `tx_extbase_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
+ `title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `subgroup` tinytext COLLATE utf8mb4_unicode_ci,
+ `TSconfig` text COLLATE utf8mb4_unicode_ci,
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `ses_iplock` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `ses_userid` int(10) unsigned NOT NULL DEFAULT '0',
+ `ses_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
+ `ses_data` mediumblob,
+ `ses_permanent` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `ses_anonymous` smallint(5) unsigned NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ses_id`),
+ KEY `ses_tstamp` (`ses_tstamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- 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',
+ `cruser_id` 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 COLLATE utf8mb4_unicode_ci,
+ `tx_extbase_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
+ `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `usergroup` tinytext COLLATE utf8mb4_unicode_ci,
+ `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `first_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `middle_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `last_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `telephone` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `fax` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `uc` blob,
+ `title` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `zip` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `city` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `country` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `www` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `company` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `image` tinytext COLLATE utf8mb4_unicode_ci,
+ `TSconfig` text COLLATE utf8mb4_unicode_ci,
+ `lastlogin` int(10) unsigned NOT NULL DEFAULT '0',
+ `is_online` int(10) unsigned NOT NULL DEFAULT '0',
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`username`(100)),
+ KEY `username` (`username`(100)),
+ KEY `is_online` (`is_online`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 `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(11) 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',
+ `fe_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
+ `sorting` int(11) NOT NULL DEFAULT '0',
+ `rowDescription` text COLLATE utf8mb4_unicode_ci,
+ `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 COLLATE utf8mb4_unicode_ci,
+ `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
+ `l10n_diffsource` mediumblob,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `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',
+ `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_move_id` int(10) unsigned 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `slug` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+ `doktype` int(10) unsigned NOT NULL DEFAULT '0',
+ `TSconfig` text COLLATE utf8mb4_unicode_ci,
+ `is_siteroot` smallint(6) NOT NULL DEFAULT '0',
+ `php_tree_stop` smallint(6) NOT NULL DEFAULT '0',
+ `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `shortcut` int(10) unsigned NOT NULL DEFAULT '0',
+ `shortcut_mode` int(10) unsigned NOT NULL DEFAULT '0',
+ `subtitle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `layout` int(10) unsigned NOT NULL DEFAULT '0',
+ `target` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `media` int(10) unsigned NOT NULL DEFAULT '0',
+ `lastUpdated` int(10) unsigned NOT NULL DEFAULT '0',
+ `keywords` text COLLATE utf8mb4_unicode_ci,
+ `cache_timeout` int(10) unsigned NOT NULL DEFAULT '0',
+ `cache_tags` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `newUntil` int(10) unsigned NOT NULL DEFAULT '0',
+ `description` text COLLATE utf8mb4_unicode_ci,
+ `no_search` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `SYS_LASTCHANGED` int(10) unsigned NOT NULL DEFAULT '0',
+ `abstract` text COLLATE utf8mb4_unicode_ci,
+ `module` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `extendToSubpages` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `author` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `author_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `nav_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `nav_hide` smallint(6) 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',
+ `alias` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `l18n_cfg` smallint(6) NOT NULL DEFAULT '0',
+ `fe_login_mode` smallint(6) NOT NULL DEFAULT '0',
+ `backend_layout` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `backend_layout_next_level` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `tsconfig_includes` text COLLATE utf8mb4_unicode_ci,
+ `legacy_overlay_uid` int(10) unsigned NOT NULL DEFAULT '0',
+ `categories` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`uid`),
+ KEY `alias` (`alias`),
+ KEY `determineSiteRoot` (`is_siteroot`),
+ KEY `language_identifier` (`l10n_parent`,`sys_language_uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`),
+ KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
+) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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,1566401415,1566399570,1,0,0,0,0,'',0,NULL,0,0,0,0,NULL,0,_binary 'a:37:{s:7:\"doktype\";N;s:5:\"title\";N;s:4:\"slug\";N;s:9:\"nav_title\";N;s:8:\"subtitle\";N;s:8:\"abstract\";N;s:8:\"keywords\";N;s:11:\"description\";N;s:6:\"author\";N;s:12:\"author_email\";N;s:11:\"lastUpdated\";N;s:6:\"layout\";N;s:8:\"newUntil\";N;s:14:\"backend_layout\";N;s:25:\"backend_layout_next_level\";N;s:16:\"content_from_pid\";N;s:6:\"target\";N;s:13:\"cache_timeout\";N;s:10:\"cache_tags\";N;s:11:\"is_siteroot\";N;s:9:\"no_search\";N;s:13:\"php_tree_stop\";N;s:6:\"module\";N;s:5:\"media\";N;s:17:\"tsconfig_includes\";N;s:8:\"TSconfig\";N;s:8:\"l18n_cfg\";N;s:6:\"hidden\";N;s:8:\"nav_hide\";N;s:9:\"starttime\";N;s:7:\"endtime\";N;s:16:\"extendToSubpages\";N;s:8:\"fe_group\";N;s:13:\"fe_login_mode\";N;s:8:\"editlock\";N;s:10:\"categories\";N;s:14:\"rowDescription\";N;}',0,0,'',0,0,0,0,0,0,1,1,31,31,1,'Home','/',1,NULL,1,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1566401415,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0),(2,1,1566402668,1566400573,1,0,0,0,0,'0',256,NULL,0,0,0,0,NULL,0,_binary 'a:13:{s:7:\"doktype\";N;s:5:\"title\";N;s:4:\"slug\";N;s:14:\"backend_layout\";N;s:25:\"backend_layout_next_level\";N;s:6:\"module\";N;s:5:\"media\";N;s:17:\"tsconfig_includes\";N;s:8:\"TSconfig\";N;s:6:\"hidden\";N;s:8:\"editlock\";N;s:10:\"categories\";N;s:14:\"rowDescription\";N;}',0,0,'',0,0,0,0,0,0,1,0,31,27,0,'addresses','/addresses',254,'TCEMAIN {\r\n clearCacheCmd = 3\r\n}',0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0),(3,1,1566401718,1566401700,1,0,0,0,0,'0',128,NULL,0,0,0,0,NULL,0,_binary 'a:1:{s:6:\"hidden\";N;}',0,0,'',0,0,0,0,0,0,1,0,31,27,0,'Plugin','/plugin',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1566401718,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0);
+/*!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',
+ `module_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `url` text COLLATE utf8mb4_unicode_ci,
+ `description` varchar(255) COLLATE utf8mb4_unicode_ci 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=utf8mb4 COLLATE=utf8mb4_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(11) 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',
+ `sorting` int(11) NOT NULL DEFAULT '0',
+ `description` text COLLATE utf8mb4_unicode_ci,
+ `sys_language_uid` int(11) NOT NULL DEFAULT '0',
+ `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0',
+ `l10n_state` text COLLATE utf8mb4_unicode_ci,
+ `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
+ `l10n_diffsource` mediumblob,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `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',
+ `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `title` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
+ `parent` int(11) NOT NULL DEFAULT '0',
+ `items` int(11) NOT NULL DEFAULT '0',
+ 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`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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(11) NOT NULL DEFAULT '0',
+ `uid_foreign` int(11) NOT NULL DEFAULT '0',
+ `tablenames` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `fieldname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `sorting` int(11) NOT NULL DEFAULT '0',
+ `sorting_foreign` int(11) NOT NULL DEFAULT '0',
+ KEY `uid_local_foreign` (`uid_local`,`uid_foreign`),
+ KEY `uid_foreign_tablefield` (`uid_foreign`,`tablenames`(40),`fieldname`(3),`sorting_foreign`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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_collection`
+--
+
+DROP TABLE IF EXISTS `sys_collection`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_collection` (
+ `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `pid` int(11) 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',
+ `fe_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
+ `description` text COLLATE utf8mb4_unicode_ci,
+ `sys_language_uid` int(11) NOT NULL DEFAULT '0',
+ `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0',
+ `l10n_state` text COLLATE utf8mb4_unicode_ci,
+ `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
+ `l10n_diffsource` mediumblob,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `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',
+ `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `title` tinytext COLLATE utf8mb4_unicode_ci,
+ `type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'static',
+ `table_name` tinytext COLLATE utf8mb4_unicode_ci,
+ `items` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`),
+ KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_collection`
+--
+
+LOCK TABLES `sys_collection` WRITE;
+/*!40000 ALTER TABLE `sys_collection` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_collection` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_collection_entries`
+--
+
+DROP TABLE IF EXISTS `sys_collection_entries`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_collection_entries` (
+ `uid` int(11) NOT NULL AUTO_INCREMENT,
+ `uid_local` int(11) NOT NULL DEFAULT '0',
+ `uid_foreign` int(11) NOT NULL DEFAULT '0',
+ `tablenames` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `sorting` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`uid`),
+ KEY `uid_local` (`uid_local`),
+ KEY `uid_foreign` (`uid_foreign`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_collection_entries`
+--
+
+LOCK TABLES `sys_collection_entries` WRITE;
+/*!40000 ALTER TABLE `sys_collection_entries` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_collection_entries` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_domain`
+--
+
+DROP TABLE IF EXISTS `sys_domain`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_domain` (
+ `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',
+ `hidden` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `sorting` int(11) NOT NULL DEFAULT '0',
+ `domainName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ PRIMARY KEY (`uid`),
+ KEY `getSysDomain` (`hidden`),
+ KEY `getDomainStartPage` (`pid`,`hidden`,`domainName`(100)),
+ KEY `parent` (`pid`,`hidden`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_domain`
+--
+
+LOCK TABLES `sys_domain` WRITE;
+/*!40000 ALTER TABLE `sys_domain` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_domain` 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(6) NOT NULL DEFAULT '0',
+ `storage` int(11) NOT NULL DEFAULT '0',
+ `type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `metadata` int(11) NOT NULL DEFAULT '0',
+ `identifier` text COLLATE utf8mb4_unicode_ci,
+ `identifier_hash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `folder_hash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `extension` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `mime_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `name` tinytext COLLATE utf8mb4_unicode_ci,
+ `sha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `size` bigint(20) unsigned 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 */;
+/*!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(11) 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',
+ `description` text COLLATE utf8mb4_unicode_ci,
+ `sys_language_uid` int(11) NOT NULL DEFAULT '0',
+ `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0',
+ `l10n_state` text COLLATE utf8mb4_unicode_ci,
+ `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
+ `l10n_diffsource` mediumblob,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `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',
+ `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `title` tinytext COLLATE utf8mb4_unicode_ci,
+ `type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'static',
+ `files` int(11) NOT NULL DEFAULT '0',
+ `storage` int(11) NOT NULL DEFAULT '0',
+ `folder` text COLLATE utf8mb4_unicode_ci,
+ `recursive` smallint(6) NOT NULL DEFAULT '0',
+ `category` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`,`hidden`),
+ KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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(11) 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',
+ `sys_language_uid` int(11) NOT NULL DEFAULT '0',
+ `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0',
+ `l10n_state` text COLLATE utf8mb4_unicode_ci,
+ `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
+ `l10n_diffsource` mediumblob,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `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',
+ `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `file` int(11) NOT NULL DEFAULT '0',
+ `title` tinytext COLLATE utf8mb4_unicode_ci,
+ `width` int(11) NOT NULL DEFAULT '0',
+ `height` int(11) NOT NULL DEFAULT '0',
+ `description` text COLLATE utf8mb4_unicode_ci,
+ `alternative` text COLLATE utf8mb4_unicode_ci,
+ `categories` int(11) NOT NULL DEFAULT '0',
+ 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 */;
+/*!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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `name` tinytext COLLATE utf8mb4_unicode_ci,
+ `configuration` text COLLATE utf8mb4_unicode_ci,
+ `configurationsha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `originalfilesha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `task_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `checksum` varchar(10) COLLATE utf8mb4_unicode_ci 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 */;
+/*!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(11) 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',
+ `sys_language_uid` int(11) NOT NULL DEFAULT '0',
+ `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0',
+ `l10n_state` text COLLATE utf8mb4_unicode_ci,
+ `l10n_diffsource` mediumblob,
+ `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `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',
+ `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
+ `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `uid_local` int(11) NOT NULL DEFAULT '0',
+ `uid_foreign` int(11) NOT NULL DEFAULT '0',
+ `tablenames` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `fieldname` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `sorting_foreign` int(11) NOT NULL DEFAULT '0',
+ `table_local` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `title` tinytext COLLATE utf8mb4_unicode_ci,
+ `description` text COLLATE utf8mb4_unicode_ci,
+ `alternative` text COLLATE utf8mb4_unicode_ci,
+ `link` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `crop` varchar(4000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `autoplay` 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 */;
+/*!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',
+ `cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
+ `deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `description` text COLLATE utf8mb4_unicode_ci,
+ `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
+ `driver` tinytext COLLATE utf8mb4_unicode_ci,
+ `configuration` text COLLATE utf8mb4_unicode_ci,
+ `is_default` smallint(6) NOT NULL DEFAULT '0',
+ `is_browsable` smallint(6) NOT NULL DEFAULT '0',
+ `is_public` smallint(6) NOT NULL DEFAULT '0',
+ `is_writable` smallint(6) NOT NULL DEFAULT '0',
+ `is_online` smallint(6) NOT NULL DEFAULT '1',
+ `auto_extract_metadata` smallint(6) NOT NULL DEFAULT '1',
+ `processingfolder` tinytext COLLATE utf8mb4_unicode_ci,
+ PRIMARY KEY (`uid`),
+ KEY `parent` (`pid`,`deleted`)
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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,1566399620,1566399620,0,0,'This is the local fileadmin/ directory. This storage mount has been created automatically by TYPO3.','fileadmin/ (auto-created)','Local','\n