Symfony Exception

No route found for "GET https://www.angelgeraete-bode.de/de/pq/write"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#12516
  -statusCode: 404
  -headers: []
}
  1.             if ($referer $request->headers->get('referer')) {
  2.                 $message .= sprintf(' (from "%s")'$referer);
  3.             }
  4.             throw new NotFoundHttpException($message$e);
  5.         } catch (MethodNotAllowedException $e) {
  6.             $message sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)'$request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', '$e->getAllowedMethods()));
  7.             throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message$e);
  8.         }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.     }
  2.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): Response
  3.     {
  4.         if (!KernelFactory::$active) {
  5.             return parent::handle($request$type$catch);
  6.         }
  7.         if ($request->attributes->get('exception') !== null) {
  8.             return parent::handle($request$type$catch);
  9.         }
  1.     }
  2.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): Response
  3.     {
  4.         if (!KernelFactory::$active) {
  5.             return $this->getKernel()->handle($request$type$catch);
  6.         }
  7.         /**
  8.          * When we have an external reverse proxy which is ESI capable, we can't use the internal HttpCache, as it will resolve the ESI tags
  9.          */
in vendor/shopware/core/Kernel.php -> handle (line 157)
  1.     {
  2.         if (!$this->booted) {
  3.             $this->boot();
  4.         }
  5.         return $this->getHttpKernel()->handle($request$type$catch);
  6.     }
  7.     public function boot(): void
  8.     {
  9.         if ($this->booted === true) {
  1.         if (!IpUtils::checkIp('127.0.0.1'$trustedProxies)) {
  2.             Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3.         }
  4.         try {
  5.             return $kernel->handle($request$type$catch);
  6.         } finally {
  7.             // restore global state
  8.             Request::setTrustedProxies($trustedProxies$trustedHeaderSet);
  9.         }
  10.     }
  1.     protected function forward(Request $requestbool $catch false, ?Response $entry null)
  2.     {
  3.         $this->surrogate?->addSurrogateCapability($request);
  4.         // always a "master" request (as the real master request can be in cache)
  5.         $response SubRequestHandler::handle($this->kernel$requestHttpKernelInterface::MAIN_REQUEST$catch);
  6.         /*
  7.          * Support stale-if-error given on Responses or as a config option.
  8.          * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  9.          * Cache-Control directives) that
  1.         // avoid that the backend sends no content
  2.         $subRequest->headers->remove('If-Modified-Since');
  3.         $subRequest->headers->remove('If-None-Match');
  4.         $response $this->forward($subRequest$catch);
  5.         if ($response->isCacheable()) {
  6.             $this->store($request$response);
  7.         }
  1.         }
  2.         if (null === $entry) {
  3.             $this->record($request'miss');
  4.             return $this->fetch($request$catch);
  5.         }
  6.         if (!$this->isFreshEnough($request$entry)) {
  7.             $this->record($request'stale');
  1.                 reload the cache by fetching a fresh response and caching it (if possible).
  2.             */
  3.             $this->record($request'reload');
  4.             $response $this->fetch($request$catch);
  5.         } else {
  6.             $response $this->lookup($request$catch);
  7.         }
  8.         $this->restoreResponseBody($request$response);
  9.         if (HttpKernelInterface::MAIN_REQUEST === $type) {
  1.             && $container->getParameter('shopware.http.cache.enabled');
  2.         if ($enabled && $container->has(CacheStore::class)) {
  3.             $kernel = new static::$httpCacheClass($kernel$container->get(CacheStore::class), null, ['debug' => $this->debug]);
  4.         }
  5.         $response $kernel->handle($transformed$type$catch);
  6.         // fire event to trigger runtime events like seo url headers
  7.         $event = new BeforeSendResponseEvent($transformed$response);
  8.         $container->get('event_dispatcher')->dispatch($event);
in vendor/shopware/core/HttpKernel.php -> doHandle (line 67)
  1.     }
  2.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): HttpKernelResult
  3.     {
  4.         try {
  5.             return $this->doHandle($request$type$catch);
  6.         } catch (Exception $e) {
  7.             /** @var Params|array{url?: string} $connectionParams */
  8.             $connectionParams self::getConnection()->getParams();
  9.             $message str_replace([$connectionParams['url'] ?? null$connectionParams['password'] ?? null$connectionParams['user'] ?? null], '******'$e->getMessage());
HttpKernel->handle(object(Request), 1, true) in public/index.php (line 71)
  1.             $this->httpKernel $httpKernel;
  2.         }
  3.         public function handle(Request $requestint $type self::MAIN_REQUESTbool $catch true): Response
  4.         {
  5.             return $this->httpKernel->handle($request$type$catch)->getResponse();
  6.         }
  7.         public function terminate(Request $requestResponse $response): void
  8.         {
  9.             $this->httpKernel->terminate($request$response);
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/share/www.angelgeraete-bode.de/sw6/vendor/autoload_runtime.php') in public/index.php (line 14)
  1. use Symfony\Component\HttpKernel\HttpKernelInterface;
  2. use Symfony\Component\HttpKernel\TerminableInterface;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ '/../.env') && !file_exists(__DIR__ '/../.env.dist') && !file_exists(__DIR__ '/../.env.local.php')) {
  6.     $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/de/pq/write/".

  1.             if ($allowSchemes) {
  2.                 goto redirect_scheme;
  3.             }
  4.         }
  5.         throw new ResourceNotFoundException(sprintf('No routes found for "%s".'$pathinfo));
  6.     }
  7.     private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
  8.     {
  9.         $allow $allowSchemes = [];
  1.     public function matchRequest(Request $request): array
  2.     {
  3.         $this->request $request;
  4.         $ret $this->match($request->getPathInfo());
  5.         $this->request null;
  6.         return $ret;
  7.     }
in vendor/symfony/routing/Router.php -> matchRequest (line 237)
  1.         if (!$matcher instanceof RequestMatcherInterface) {
  2.             // fallback to the default UrlMatcherInterface
  3.             return $matcher->match($request->getPathInfo());
  4.         }
  5.         return $matcher->matchRequest($request);
  6.     }
  7.     /**
  8.      * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  9.      */
  1.             ['REQUEST_URI' => $request->attributes->get(RequestTransformer::SALES_CHANNEL_RESOLVED_URI)]
  2.         );
  3.         $localClone $request->duplicate(nullnullnullnullnull$server);
  4.         return $this->decorated->matchRequest($localClone);
  5.     }
  6.     public function setContext(RequestContext $context): void
  7.     {
  8.         $this->decorated->setContext($context);
  1.         // add attributes based on the request (routing)
  2.         try {
  3.             // matching a request is more powerful than matching a URL path + context, so try that first
  4.             if ($this->matcher instanceof RequestMatcherInterface) {
  5.                 $parameters $this->matcher->matchRequest($request);
  6.             } else {
  7.                 $parameters $this->matcher->match($request->getPathInfo());
  8.             }
  9.             $this->logger?->info('Matched route "{route}".', [
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.     }
  2.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): Response
  3.     {
  4.         if (!KernelFactory::$active) {
  5.             return parent::handle($request$type$catch);
  6.         }
  7.         if ($request->attributes->get('exception') !== null) {
  8.             return parent::handle($request$type$catch);
  9.         }
  1.     }
  2.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): Response
  3.     {
  4.         if (!KernelFactory::$active) {
  5.             return $this->getKernel()->handle($request$type$catch);
  6.         }
  7.         /**
  8.          * When we have an external reverse proxy which is ESI capable, we can't use the internal HttpCache, as it will resolve the ESI tags
  9.          */
in vendor/shopware/core/Kernel.php -> handle (line 157)
  1.     {
  2.         if (!$this->booted) {
  3.             $this->boot();
  4.         }
  5.         return $this->getHttpKernel()->handle($request$type$catch);
  6.     }
  7.     public function boot(): void
  8.     {
  9.         if ($this->booted === true) {
  1.         if (!IpUtils::checkIp('127.0.0.1'$trustedProxies)) {
  2.             Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3.         }
  4.         try {
  5.             return $kernel->handle($request$type$catch);
  6.         } finally {
  7.             // restore global state
  8.             Request::setTrustedProxies($trustedProxies$trustedHeaderSet);
  9.         }
  10.     }
  1.     protected function forward(Request $requestbool $catch false, ?Response $entry null)
  2.     {
  3.         $this->surrogate?->addSurrogateCapability($request);
  4.         // always a "master" request (as the real master request can be in cache)
  5.         $response SubRequestHandler::handle($this->kernel$requestHttpKernelInterface::MAIN_REQUEST$catch);
  6.         /*
  7.          * Support stale-if-error given on Responses or as a config option.
  8.          * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  9.          * Cache-Control directives) that
  1.         // avoid that the backend sends no content
  2.         $subRequest->headers->remove('If-Modified-Since');
  3.         $subRequest->headers->remove('If-None-Match');
  4.         $response $this->forward($subRequest$catch);
  5.         if ($response->isCacheable()) {
  6.             $this->store($request$response);
  7.         }
  1.         }
  2.         if (null === $entry) {
  3.             $this->record($request'miss');
  4.             return $this->fetch($request$catch);
  5.         }
  6.         if (!$this->isFreshEnough($request$entry)) {
  7.             $this->record($request'stale');
  1.                 reload the cache by fetching a fresh response and caching it (if possible).
  2.             */
  3.             $this->record($request'reload');
  4.             $response $this->fetch($request$catch);
  5.         } else {
  6.             $response $this->lookup($request$catch);
  7.         }
  8.         $this->restoreResponseBody($request$response);
  9.         if (HttpKernelInterface::MAIN_REQUEST === $type) {
  1.             && $container->getParameter('shopware.http.cache.enabled');
  2.         if ($enabled && $container->has(CacheStore::class)) {
  3.             $kernel = new static::$httpCacheClass($kernel$container->get(CacheStore::class), null, ['debug' => $this->debug]);
  4.         }
  5.         $response $kernel->handle($transformed$type$catch);
  6.         // fire event to trigger runtime events like seo url headers
  7.         $event = new BeforeSendResponseEvent($transformed$response);
  8.         $container->get('event_dispatcher')->dispatch($event);
in vendor/shopware/core/HttpKernel.php -> doHandle (line 67)
  1.     }
  2.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): HttpKernelResult
  3.     {
  4.         try {
  5.             return $this->doHandle($request$type$catch);
  6.         } catch (Exception $e) {
  7.             /** @var Params|array{url?: string} $connectionParams */
  8.             $connectionParams self::getConnection()->getParams();
  9.             $message str_replace([$connectionParams['url'] ?? null$connectionParams['password'] ?? null$connectionParams['user'] ?? null], '******'$e->getMessage());
HttpKernel->handle(object(Request), 1, true) in public/index.php (line 71)
  1.             $this->httpKernel $httpKernel;
  2.         }
  3.         public function handle(Request $requestint $type self::MAIN_REQUESTbool $catch true): Response
  4.         {
  5.             return $this->httpKernel->handle($request$type$catch)->getResponse();
  6.         }
  7.         public function terminate(Request $requestResponse $response): void
  8.         {
  9.             $this->httpKernel->terminate($request$response);
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/share/www.angelgeraete-bode.de/sw6/vendor/autoload_runtime.php') in public/index.php (line 14)
  1. use Symfony\Component\HttpKernel\HttpKernelInterface;
  2. use Symfony\Component\HttpKernel\TerminableInterface;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ '/../.env') && !file_exists(__DIR__ '/../.env.dist') && !file_exists(__DIR__ '/../.env.local.php')) {
  6.     $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

Logs

Level Channel Message
INFO 06:40:50 php User Deprecated: Since symfony/monolog-bridge 6.4: The "Symfony\Bridge\Monolog\Logger" class is deprecated, use HttpKernel's DebugLoggerConfigurator instead.
{
    "exception": {}
}
INFO 06:40:50 php User Deprecated: The "Monolog\Logger" class is considered final. It may change without further notice as of its next major version. You should not extend it from "Symfony\Bridge\Monolog\Logger".
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/serializer 6.4: Passing a "Doctrine\Common\Annotations\PsrCachedReader" instance as argument 1 to "Symfony\Component\Serializer\Mapping\Loader\AttributeLoader::__construct()" is deprecated, pass null or omit the parameter instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: The "Shopware\Core\Framework\Routing\CanonicalRedirectService::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Scop\PlatformRedirecter\Decorator\CanonicalRedirectServiceDecorator".
{
    "exception": {}
}
DEBUG 06:40:51 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 06:40:51 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaDeletionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaDeletionSubscriber::securePrivateFolders"
}
INFO 06:40:51 php User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement.
{
    "exception": {}
}
DEBUG 06:40:51 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 06:40:51 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaDeletionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaDeletionSubscriber::securePrivateFolders"
}
INFO 06:40:51 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\FieldSerializer\AbstractFieldSerializer" class is considered internal. It may change without further notice. You should not use it from "NetInventors\NetiNextEasyCoupon\Core\Framework\FieldSerializer\Decoration\IntFieldSerializer".
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: The "Symfony\Component\HttpKernel\HttpKernel::$dispatcher" property is considered final. You should not override it in "Shopware\Core\Framework\Adapter\Kernel\HttpKernel".
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: The "Shopware\Storefront\Framework\Routing\Router::warmUp()" method will require a new "string|null $buildDir" argument in the next major version of its interface "Symfony\Component\HttpKernel\CacheWarmer\WarmableInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Class "NetInventors\NetiNextEasyCoupon\Serializer\Normalizer\PluginConfigDenormalizer" should implement method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::getSupportedTypes(?string $format): array".
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: The "NetInventors\NetiNextEasyCoupon\Serializer\Normalizer\PluginConfigDenormalizer::supportsDenormalization()" method will require a new "array $context" argument in the next major version of its interface "Symfony\Component\Serializer\Normalizer\DenormalizerInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/serializer 6.3: "NetInventors\NetiNextEasyCoupon\Serializer\Normalizer\PluginConfigDenormalizer" should implement "DenormalizerInterface::getSupportedTypes(?string $format): array".
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: The "NetInventors\NetiNextEasyCoupon\Decorator\NEXT26807\After\DecoratedCartService" class extends "Shopware\Core\Checkout\Cart\SalesChannel\CartService" that is deprecated tag:v6.6.0 - reason:becomes-final - Should not be extended and is only intended as cache.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: The "Shopware\Core\Checkout\Cart\SalesChannel\CartService::__construct()" method is considered internal. It may change without further notice. You should not extend it from "NetInventors\NetiNextEasyCoupon\Decorator\NEXT26807\After\DecoratedCartService".
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: Passing an instance of "Doctrine\Common\Annotations\Reader" as first and the environment as second argument to "Symfony\Component\Routing\Loader\AttributeClassLoader::__construct" is deprecated. Pass the environment as first argument instead.
{
    "exception": {}
}
INFO 06:40:51 php Deprecated: Use of "parent" in callables is deprecated
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
DEBUG 06:40:51 php Warning: mkdir(): File exists
{
    "exception": {
        "severity": 2,
        "file": "/var/www/share/www.angelgeraete-bode.de/sw6/vendor/symfony/cache/Traits/FilesystemCommonTrait.php",
        "line": 132,
        "trace": [
            {
                "file": "/var/www/share/www.angelgeraete-bode.de/sw6/vendor/symfony/cache/Adapter/PhpFilesAdapter.php",
                "line": 246,
                "function": "getFile",
                "class": "Symfony\\Component\\Cache\\Adapter\\PhpFilesAdapter",
                "type": "->"
            }
        ],
        "count": 336
    }
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
DEBUG 06:40:51 php Warning: mkdir(): File exists
{
    "exception": {
        "severity": 2,
        "file": "/var/www/share/www.angelgeraete-bode.de/sw6/vendor/symfony/cache/Traits/FilesystemCommonTrait.php",
        "line": 132,
        "trace": [
            {
                "file": "/var/www/share/www.angelgeraete-bode.de/sw6/vendor/symfony/cache/Adapter/PhpFilesAdapter.php",
                "line": 246,
                "function": "getFile",
                "class": "Symfony\\Component\\Cache\\Adapter\\PhpFilesAdapter",
                "type": "->"
            }
        ],
        "count": 336
    }
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
DEBUG 06:40:51 php Warning: mkdir(): File exists
{
    "exception": {
        "severity": 2,
        "file": "/var/www/share/www.angelgeraete-bode.de/sw6/vendor/symfony/cache/Traits/FilesystemCommonTrait.php",
        "line": 132,
        "trace": [
            {
                "file": "/var/www/share/www.angelgeraete-bode.de/sw6/vendor/symfony/cache/Adapter/PhpFilesAdapter.php",
                "line": 246,
                "function": "getFile",
                "class": "Symfony\\Component\\Cache\\Adapter\\PhpFilesAdapter",
                "type": "->"
            }
        ],
        "count": 336
    }
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:51 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Maxia\MaxiaVariantsTable6\Storefront\Controller\VariantsTableController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Maxia\MaxiaVariantsTable6\Core\Content\Product\SalesChannel\Detail\CachedVariantsTableRoute" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Maxia\MaxiaListingVariants6\Controller\ProductBoxAjaxController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since shopware/core : Class "Shopware\Storefront\Framework\Cache\Annotation\HttpCache" is deprecated and will be removed in v6.6.0.0.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\AbandonedCartController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\AbandonedCartRecordsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\AbandonedCartStatusController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\AbandonedCartTheaStatusController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\AbandonedCartTimeController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\AutoConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\CheckConnectionStatusController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\DashboardController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\DisconnectController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\DoubleOptInController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\FormsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\IframeController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\InitialSyncController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
DEBUG 06:40:52 php Warning: mkdir(): File exists
{
    "exception": {
        "severity": 2,
        "file": "/var/www/share/www.angelgeraete-bode.de/sw6/vendor/symfony/cache/Traits/FilesystemCommonTrait.php",
        "line": 132,
        "trace": [
            {
                "file": "/var/www/share/www.angelgeraete-bode.de/sw6/vendor/symfony/cache/Adapter/PhpFilesAdapter.php",
                "line": 246,
                "function": "getFile",
                "class": "Symfony\\Component\\Cache\\Adapter\\PhpFilesAdapter",
                "type": "->"
            }
        ],
        "count": 336
    }
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\OrderSyncController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\RetrySyncController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\RouterController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\SingleSignOnController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\SupportController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Admin\SyncSettingsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Storefront\AsyncProcessController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Storefront\AuthController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Storefront\AutomationWebhookController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Storefront\CrFormsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Storefront\FormsWebhookController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Storefront\GroupWebhookController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Storefront\ProductSearchController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Storefront\ReceiverWebhookController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Crsw\CleverReachOfficial\Controller\Storefront\WebhookController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: Class "Scop\PlatformRedirecter\Administration\ImportExportRedirectsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: The "Shopware\Core\System\SystemConfig\Api\SystemConfigController::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Swag\PayPal\Webhook\Registration\WebhookSystemConfigController".
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 06:40:52 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
DEBUG 06:40:52 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 06:40:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 06:40:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 06:40:52 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
DEBUG 06:40:52 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
DEBUG 06:40:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 06:40:52 event Notified event "kernel.request" to listener "Crsw\CleverReachOfficial\Subscriber\Maintenance\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Maintenance\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 06:40:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 06:40:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 06:40:52 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 06:40:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
INFO 06:40:53 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\Log\LoggerFactory::Shopware\Core\Framework\Log\LoggerFactory::createRotating()" is deprecated and will be removed in createRotating.
{
    "exception": {}
}
INFO 06:40:53 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "HochwarthCheckoutCheckbox\Core\Twig\HochwarthConfigExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
NOTICE 06:40:53 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://www.angelgeraete-bode.de/de/pq/write"" at RouterListener.php line 127
{
    "exception": {}
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Crsw\CleverReachOfficial\Subscriber\Maintenance\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Maintenance\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::addHttpCacheToCoreRoutes".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::addHttpCacheToCoreRoutes"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 06:40:53 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\CustomerGroups\CustomerGroupSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\CustomerGroups\\CustomerGroupSubscriber::saveDataForDelete"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Customers\CustomerSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Customers\\CustomerSubscriber::saveDataForDelete"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\NewsletterRecipients\NewsletterRecipientSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\NewsletterRecipients\\NewsletterRecipientSubscriber::saveDataForDelete"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\SalesChannels\SalesChannelSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\SalesChannels\\SalesChannelSubscriber::saveDataForDelete"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\AutomationSubscriber::onCheckoutRegistration".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\AutomationSubscriber::onCheckoutRegistration"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\CartRecoverySubscriber::onRecover".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\CartRecoverySubscriber::onRecover"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations"
}
DEBUG 06:40:53 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 06:40:53 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 06:40:53 event Notified event "kernel.controller_arguments" to listener "ContainerMOGpsrn\RequestPayloadValueResolverGhost9d49d33::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerMOGpsrn\\RequestPayloadValueResolverGhost9d49d33::onKernelControllerArguments"
}
DEBUG 06:40:53 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://www.angelgeraete-bode.de/de/pq/write"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:127
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:47)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:44)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:50)
  at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Kernel.php:157)
  at Shopware\Core\Kernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(Kernel), object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:473)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:448)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:346)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:221)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true)
     (vendor/shopware/core/HttpKernel.php:146)
  at Shopware\Core\HttpKernel->doHandle(object(Request), 1, true)
     (vendor/shopware/core/HttpKernel.php:67)
  at Shopware\Core\HttpKernel->handle(object(Request), 1, true)
     (public/index.php:71)
  at Symfony\Component\HttpKernel\HttpKernelInterface@anonymous/var/www/share/www.angelgeraete-bode.de/sw6/public/index.php:61$0->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/share/www.angelgeraete-bode.de/sw6/vendor/autoload_runtime.php')
     (public/index.php:14)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/de/pq/write/".

  at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/de/pq/write/')
     (vendor/symfony/routing/Matcher/UrlMatcher.php:97)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
     (vendor/symfony/routing/Router.php:237)
  at Symfony\Component\Routing\Router->matchRequest(object(Request))
     (vendor/shopware/storefront/Framework/Routing/Router.php:63)
  at Shopware\Storefront\Framework\Routing\Router->matchRequest(object(Request))
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:105)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:47)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:44)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:50)
  at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Kernel.php:157)
  at Shopware\Core\Kernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(Kernel), object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:473)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:448)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:346)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:221)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true)
     (vendor/shopware/core/HttpKernel.php:146)
  at Shopware\Core\HttpKernel->doHandle(object(Request), 1, true)
     (vendor/shopware/core/HttpKernel.php:67)
  at Shopware\Core\HttpKernel->handle(object(Request), 1, true)
     (public/index.php:71)
  at Symfony\Component\HttpKernel\HttpKernelInterface@anonymous/var/www/share/www.angelgeraete-bode.de/sw6/public/index.php:61$0->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/share/www.angelgeraete-bode.de/sw6/vendor/autoload_runtime.php')
     (public/index.php:14)                
Loading…
Loading the web debug toolbar…
Attempt #